]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Change warnings to avoid importing re module during startup.
authorJeremy Hylton <jeremy@alum.mit.edu>
Fri, 11 Jul 2003 15:37:59 +0000 (15:37 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Fri, 11 Jul 2003 15:37:59 +0000 (15:37 +0000)
commit8501466c7f0843e68ee6fb91e3d8221d5eb1a019
tree97403c9fde25171a8e37a3a9a4a44bd3eabe3836
parent1e5fc55c4dcddcd97951d54c04b321c0a284affa
Change warnings to avoid importing re module during startup.

Add API function simplefilter() that does not create or install
regular expressions to match message or module.  Extend the filters
data structure to store None as an alternative to re.compile("").

Move the _test() function to test_warnings and add some code to try
and avoid disturbing the global state of the warnings module.
Lib/test/output/test_warnings [new file with mode: 0644]
Lib/test/test_warnings.py [new file with mode: 0644]
Lib/warnings.py