Thanks to visit codestin.com Credit goes to github.com
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.
typing.ByteString
1 parent d50c37d commit 5b8cd5aCopy full SHA for 5b8cd5a
1 file changed
Lib/typing.py
@@ -3586,3 +3586,12 @@ def __getattr__(attr):
3586
)
3587
return ByteString
3588
raise AttributeError(f"module 'typing' has no attribute {attr!r}")
3589
+
3590
3591
+def _remove_cached_ByteString_from_globals():
3592
+ try:
3593
+ del globals()["ByteString"]
3594
+ except KeyError:
3595
+ pass
3596
3597
+_cleanups.append(_remove_cached_ByteString_from_globals)
0 commit comments