summaryrefslogtreecommitdiffstats
path: root/Lib/pickletools.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-07-28 16:39:41 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-07-28 16:39:41 (GMT)
commit02ea12b29196ae002e26061eb0afb96db0cf889b (patch)
tree6ada8bb7e3777cb573814322d1eab627fd1899a2 /Lib/pickletools.py
parent3f8ab965f722b3bda679c9271fb8907e2bbcdc64 (diff)
downloadcpython-02ea12b29196ae002e26061eb0afb96db0cf889b.zip
cpython-02ea12b29196ae002e26061eb0afb96db0cf889b.tar.gz
cpython-02ea12b29196ae002e26061eb0afb96db0cf889b.tar.bz2
Syntax cleanup.
Diffstat (limited to 'Lib/pickletools.py')
-rw-r--r--Lib/pickletools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pickletools.py b/Lib/pickletools.py
index e067d7e..89a8e58 100644
--- a/Lib/pickletools.py
+++ b/Lib/pickletools.py
@@ -733,7 +733,7 @@ pylong = StackObject(
pyinteger_or_bool = StackObject(
name='int_or_bool',
- obtype=(int, int, bool),
+ obtype=(int, bool),
doc="A Python integer object (short or long), or "
"a Python bool.")