summaryrefslogtreecommitdiffstats
path: root/Lib/string.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/string.py')
-rw-r--r--Lib/string.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/string.py b/Lib/string.py
index 45fe977..913d980 100644
--- a/Lib/string.py
+++ b/Lib/string.py
@@ -379,9 +379,3 @@ try:
letters = lowercase + uppercase
except ImportError:
pass # Use the original versions
-
-__all__ = locals().keys()
-for _i in range(len(__all__)-1,-1,-1):
- if __all__[_i][0] == "_":
- del __all__[_i]
-del _i