On Tue, Jan 19, 2016 at 3:11 AM, Charles T. Smith <cts.private.ya...@gmail.com> wrote: > $ python > Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) > [GCC 4.4.3] on linux2 > Type "help", "copyright", "credits" or "license" for more information. >>>> type(0) is int > True > ... > (PDB)type(0) is int > False > (PDB)type(1) is int > False
Possibility #1: 'int' has been rebound. Possibility #2: 'type' has been rebound. I'd check them in that order. ChrisA -- https://mail.python.org/mailman/listinfo/python-list