summaryrefslogtreecommitdiffstats
path: root/Lib/pickle.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2011-12-12 17:54:29 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2011-12-12 17:54:29 (GMT)
commitaa6c1d240fc4dd883b4c5a1564182e8fa90de496 (patch)
tree417976ca1ed9205f4dd9fc19768dfd93afff632a /Lib/pickle.py
parent9d57481f043cb9b94bfc45c1ee041415d915cf8a (diff)
downloadcpython-aa6c1d240fc4dd883b4c5a1564182e8fa90de496.zip
cpython-aa6c1d240fc4dd883b4c5a1564182e8fa90de496.tar.gz
cpython-aa6c1d240fc4dd883b4c5a1564182e8fa90de496.tar.bz2
Issue #13575: there is only one class type.
Diffstat (limited to 'Lib/pickle.py')
-rw-r--r--Lib/pickle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py
index a911ca0..ca36274 100644
--- a/Lib/pickle.py
+++ b/Lib/pickle.py
@@ -375,7 +375,7 @@ class _Pickler:
# allowing protocol 0 and 1 to work normally. For this to
# work, the function returned by __reduce__ should be
# called __newobj__, and its first argument should be a
- # new-style class. The implementation for __newobj__
+ # class. The implementation for __newobj__
# should be as follows, although pickle has no way to
# verify this:
#