diff options
author | Barry Warsaw <barry@python.org> | 2001-08-22 19:24:42 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-08-22 19:24:42 (GMT) |
commit | 60f018846d7b97eec71675c3a1c9e7a058232c73 (patch) | |
tree | 0d064457b57af01ca24f65db0ca1e42f68ec75eb /Lib/test/test_os.py | |
parent | 0f10f84028c9744b6b1f709ff6217c5c9b07ab89 (diff) | |
download | cpython-60f018846d7b97eec71675c3a1c9e7a058232c73.zip cpython-60f018846d7b97eec71675c3a1c9e7a058232c73.tar.gz cpython-60f018846d7b97eec71675c3a1c9e7a058232c73.tar.bz2 |
Merge changes from r22a2-branch back into trunk. Also, change patch
level to 2.2a2+
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 0ea9f78..9cddb5f 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -6,6 +6,9 @@ import os import unittest import warnings +warnings.filterwarnings("ignore", "tempnam", RuntimeWarning, __name__) +warnings.filterwarnings("ignore", "tmpnam", RuntimeWarning, __name__) + from test_support import TESTFN, run_unittest |