summaryrefslogtreecommitdiffstats
path: root/Lib/copy_reg.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-10-16 18:12:55 (GMT)
committerGuido van Rossum <guido@python.org>2007-10-16 18:12:55 (GMT)
commit3172c5d263eeffff1e89d03d79be3ccc1d60fbde (patch)
treea35e103b36b684c4682ded57236199d6a0ecee4b /Lib/copy_reg.py
parent60d241f135f10312f5a638846659d7e471f6cac9 (diff)
downloadcpython-3172c5d263eeffff1e89d03d79be3ccc1d60fbde.zip
cpython-3172c5d263eeffff1e89d03d79be3ccc1d60fbde.tar.gz
cpython-3172c5d263eeffff1e89d03d79be3ccc1d60fbde.tar.bz2
Patch# 1258 by Christian Heimes: kill basestring.
I like this because it makes the code shorter! :-)
Diffstat (limited to 'Lib/copy_reg.py')
-rw-r--r--Lib/copy_reg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/copy_reg.py b/Lib/copy_reg.py
index d693209..81a1e7f 100644
--- a/Lib/copy_reg.py
+++ b/Lib/copy_reg.py
@@ -114,7 +114,7 @@ def _slotnames(cls):
if "__slots__" in c.__dict__:
slots = c.__dict__['__slots__']
# if class has a single slot, it can be given as a string
- if isinstance(slots, basestring):
+ if isinstance(slots, str):
slots = (slots,)
for name in slots:
# special descriptors