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/regex_syntax.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Lib/regex_syntax.py') diff --git a/Lib/regex_syntax.py b/Lib/regex_syntax.py index 421ffd9b9f3..b0a0dbf20c4 100644 --- a/Lib/regex_syntax.py +++ b/Lib/regex_syntax.py @@ -51,9 +51,3 @@ RE_SYNTAX_GREP = (RE_BK_PLUS_QM | RE_NEWLINE_OR) RE_SYNTAX_EMACS = 0 # (Python's obsolete "regexp" module used a syntax similar to awk.) - -__all__ = locals().keys() -for _i in range(len(__all__)-1,-1,-1): - if __all__[_i][0] == "_": - del __all__[_i] -del _i -- cgit v1.2.3