Kaydet (Commit) 90cf212c authored tarafından Tim Peters's avatar Tim Peters

Essentially SF patch 1061679: add missing __all__ to pickletools.py.

Harmless.
üst b12efd3f
...@@ -10,6 +10,10 @@ dis(pickle, out=None, memo=None, indentlevel=4) ...@@ -10,6 +10,10 @@ dis(pickle, out=None, memo=None, indentlevel=4)
Print a symbolic disassembly of a pickle. Print a symbolic disassembly of a pickle.
''' '''
__all__ = ['dis',
'genops',
]
# Other ideas: # Other ideas:
# #
# - A pickle verifier: read a pickle and check it exhaustively for # - A pickle verifier: read a pickle and check it exhaustively for
......
...@@ -114,6 +114,7 @@ class AllTest(unittest.TestCase): ...@@ -114,6 +114,7 @@ class AllTest(unittest.TestCase):
self.check_all("os2emxpath") self.check_all("os2emxpath")
self.check_all("pdb") self.check_all("pdb")
self.check_all("pickle") self.check_all("pickle")
self.check_all("pickletools")
self.check_all("pipes") self.check_all("pipes")
self.check_all("popen2") self.check_all("popen2")
self.check_all("poplib") self.check_all("poplib")
......
...@@ -26,6 +26,8 @@ Library ...@@ -26,6 +26,8 @@ Library
attempt is made to execute the remaining handlers. The last exception attempt is made to execute the remaining handlers. The last exception
raised is re-raised. raised is re-raised.
- Patch 1061679: Added `__all__` to pickletools.py.
Build Build
----- -----
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment