mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Essentially SF patch 1061679: add missing __all__ to pickletools.py.
Harmless.
This commit is contained in:
parent
b12efd3f8a
commit
90cf212cef
3 changed files with 7 additions and 0 deletions
|
|
@ -10,6 +10,10 @@ dis(pickle, out=None, memo=None, indentlevel=4)
|
|||
Print a symbolic disassembly of a pickle.
|
||||
'''
|
||||
|
||||
__all__ = ['dis',
|
||||
'genops',
|
||||
]
|
||||
|
||||
# Other ideas:
|
||||
#
|
||||
# - A pickle verifier: read a pickle and check it exhaustively for
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue