summaryrefslogtreecommitdiff
path: root/Lib/types.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-08 17:20:32 +0000
committerGuido van Rossum <guido@python.org>2007-05-08 17:20:32 +0000
commit74302dbd3cfd10aa3139f27644740ac6ca77cbd7 (patch)
tree90e3712f2dd6730c50a0fddcbf8d83d0e7e7eefd /Lib/types.py
parent317e7749656548f629cb9a1c0a01e31b518ff2ff (diff)
downloadcpython-git-74302dbd3cfd10aa3139f27644740ac6ca77cbd7.tar.gz
Get rid of 'file' built-in. Get rid of types.StringType and friends.
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 3c1c9390d7..1d90012d9e 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -22,17 +22,6 @@ try:
except NameError:
pass
-StringType = str
-
-# StringTypes is already outdated. Instead of writing "type(x) in
-# types.StringTypes", you should use "isinstance(x, basestring)". But
-# we keep around for compatibility with Python 2.2.
-try:
- UnicodeType = str
- StringTypes = (StringType, UnicodeType)
-except NameError:
- StringTypes = (StringType,)
-
BufferType = buffer
TupleType = tuple
@@ -62,7 +51,6 @@ BuiltinFunctionType = type(len)
BuiltinMethodType = type([].append) # Same as BuiltinFunctionType
ModuleType = type(sys)
-FileType = file
try:
raise TypeError