]> granicus.if.org Git - python/commit
builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead
authorTim Peters <tim.peters@gmail.com>
Tue, 4 Sep 2001 01:20:04 +0000 (01:20 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 4 Sep 2001 01:20:04 +0000 (01:20 +0000)
commit37a309db7086381da6ae176cec8817cdd75de872
tree739ce41938274ff80e891d5589a7ebe29cc2d6cb
parenta8aefe535c879c8b0f5201961648a89c8e3d7887
builtin_dir():  Treat classic classes like types.  Use PyDict_Keys instead
of PyMapping_Keys because we know we have a real dict.  Tolerate that
objects may have an attr named "__dict__" that's not a dict (Py_None
popped up during testing).

test_descr.py, test_dir():  Test the new classic-class behavior; beef up
the new-style class test similarly.

test_pyclbr.py, checkModule():  dir(C) is no longer a synonym for
C.__dict__.keys() when C is a classic class (looks like the same thing
that burned distutils! -- should it be *made* a synoym again?  Then it
would be inconsistent with new-style class behavior.).
Lib/test/test_descr.py
Lib/test/test_pyclbr.py
Python/bltinmodule.c