diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-12 18:54:29 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-12 18:54:29 +0100 |
commit | aa6c1d240fc4dd883b4c5a1564182e8fa90de496 (patch) | |
tree | 417976ca1ed9205f4dd9fc19768dfd93afff632a /Lib/pickletools.py | |
parent | Issue #13577: various kinds of descriptors now have a __qualname__ attribute. (diff) | |
download | cpython-aa6c1d240fc4dd883b4c5a1564182e8fa90de496.tar.gz cpython-aa6c1d240fc4dd883b4c5a1564182e8fa90de496.tar.bz2 cpython-aa6c1d240fc4dd883b4c5a1564182e8fa90de496.zip |
Issue #13575: there is only one class type.
Diffstat (limited to 'Lib/pickletools.py')
-rw-r--r-- | Lib/pickletools.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/pickletools.py b/Lib/pickletools.py index 515d3759313..90864165e65 100644 --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1639,6 +1639,8 @@ opcodes = [ is pushed on the stack. NOTE: checks for __safe_for_unpickling__ went away in Python 2.3. + NOTE: the distinction between old-style and new-style classes does + not make sense in Python 3. """), I(name='OBJ', |