diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-02 23:09:38 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-02 23:09:38 +0000 |
commit | 50f2d681de4552fbf0a1c002be321216ed9d12a8 (patch) | |
tree | 295baaa94f5d7b0c5c4c78c7f8217415377f3eca /Lib/test/test_argparse.py | |
parent | 7ee8b200af4e9077629d2619e1029d8bf2a7b402 (diff) | |
download | cpython-50f2d681de4552fbf0a1c002be321216ed9d12a8.tar.gz |
Merged revisions 78600-78601 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78600 | benjamin.peterson | 2010-03-02 16:58:01 -0600 (Tue, 02 Mar 2010) | 1 line
remove code to avoid BaseException.message bug
........
r78601 | benjamin.peterson | 2010-03-02 17:02:02 -0600 (Tue, 02 Mar 2010) | 1 line
remove cross-version compatibility code
........
Diffstat (limited to 'Lib/test/test_argparse.py')
-rw-r--r-- | Lib/test/test_argparse.py | 30 |
1 files changed, 2 insertions, 28 deletions
diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py index 849facb3e7..9e1efa8427 100644 --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -22,29 +22,9 @@ import unittest import warnings import argparse -from test import support - -try: - from StringIO import StringIO -except ImportError: - from io import StringIO - -try: - set -except NameError: - from sets import Set as set - -try: - sorted -except NameError: - - def sorted(iterable, reverse=False): - result = list(iterable) - result.sort() - if reverse: - result.reverse() - return result +from io import StringIO +from test import support class TestCase(unittest.TestCase): @@ -4183,12 +4163,6 @@ class TestImportStar(TestCase): def test_main(): with warnings.catch_warnings(): - # silence Python 2.6 buggy warnings about Exception.message - warnings.filterwarnings( - action='ignore', - message='BaseException.message has been deprecated as of' - 'Python 2.6', - category=DeprecationWarning) # silence warnings about version argument - these are expected warnings.filterwarnings( action='ignore', |