Essentially SF patch 1061679: add missing __all__ to pickletools.py.
Harmless.
This commit is contained in:
parent
b12efd3f8a
commit
90cf212cef
|
@ -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
|
||||
|
|
|
@ -114,6 +114,7 @@ class AllTest(unittest.TestCase):
|
|||
self.check_all("os2emxpath")
|
||||
self.check_all("pdb")
|
||||
self.check_all("pickle")
|
||||
self.check_all("pickletools")
|
||||
self.check_all("pipes")
|
||||
self.check_all("popen2")
|
||||
self.check_all("poplib")
|
||||
|
|
Loading…
Reference in New Issue