diff options
author | Walter Dörwald <walter@livinglogic.de> | 2007-04-03 16:16:24 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2007-04-03 16:16:24 (GMT) |
commit | 8bd65000d78cd75a00c073ab9147e3d53ba02a2d (patch) | |
tree | 24c6c63f80aa94ca345a6a3af3fb90b0a2ab2573 | |
parent | d815d357b28a019faa515a56fd927b15cdb580cf (diff) | |
download | cpython-8bd65000d78cd75a00c073ab9147e3d53ba02a2d.zip cpython-8bd65000d78cd75a00c073ab9147e3d53ba02a2d.tar.gz cpython-8bd65000d78cd75a00c073ab9147e3d53ba02a2d.tar.bz2 |
Document that CatchWarningTests is reused by test_structmembers.py.
-rw-r--r-- | Lib/test/test_warnings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py index 0ad83ed..671ed02 100644 --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -21,6 +21,8 @@ def showwarning(message, category, filename, lineno, file=None): msg.lineno = lineno class CatchWarningTest(unittest.TestCase): + # base class used for catching warnings issued by the + # warning framework (this is reused by test_structmembers.py) def setUp(self): global msg |