From 78349072f7c8f2d3da6f552665f9f381930c3c42 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Sun, 18 Feb 2001 03:30:53 +0000 Subject: removed __all__ from several modules --- Lib/string.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Lib/string.py') diff --git a/Lib/string.py b/Lib/string.py index 45fe977409..913d980bae 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 -- cgit v1.2.1