diff options
author | Guido van Rossum <guido@python.org> | 2007-05-08 17:20:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-05-08 17:20:32 (GMT) |
commit | 74302dbd3cfd10aa3139f27644740ac6ca77cbd7 (patch) | |
tree | 90e3712f2dd6730c50a0fddcbf8d83d0e7e7eefd /Python | |
parent | 317e7749656548f629cb9a1c0a01e31b518ff2ff (diff) | |
download | cpython-74302dbd3cfd10aa3139f27644740ac6ca77cbd7.zip cpython-74302dbd3cfd10aa3139f27644740ac6ca77cbd7.tar.gz cpython-74302dbd3cfd10aa3139f27644740ac6ca77cbd7.tar.bz2 |
Get rid of 'file' built-in. Get rid of types.StringType and friends.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 46fbf77..264470b 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2040,7 +2040,6 @@ _PyBuiltin_Init(void) #endif SETBUILTIN("dict", &PyDict_Type); SETBUILTIN("enumerate", &PyEnum_Type); - SETBUILTIN("file", &PyFile_Type); SETBUILTIN("float", &PyFloat_Type); SETBUILTIN("frozenset", &PyFrozenSet_Type); SETBUILTIN("property", &PyProperty_Type); |