We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__all__
1 parent 6ce7785 commit 2b7bfd9Copy full SHA for 2b7bfd9
Lib/pickle.py
@@ -187,10 +187,7 @@ def __init__(self, value):
187
NEXT_BUFFER = b'\x97' # push next out-of-band buffer
188
READONLY_BUFFER = b'\x98' # make top of stack readonly
189
190
-__all__.extend([
191
- x for x in dir()
192
- if x.isupper() and x.isidentifier() and not x.startswith('_')
193
-])
+__all__.extend(x for x in dir() if x.isupper() and not x.startswith('_'))
194
195
class _Framer:
196
0 commit comments