diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-23 23:15:19 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-23 23:15:19 (GMT) |
commit | c05032c4ab549c009fbff9038a45a88c23c74ca2 (patch) | |
tree | 710be44a06d2d698a813be525b437df43ad99903 /Lib | |
parent | 213f229fbd00587112a8ca865f0e5ebebf3c8eba (diff) | |
parent | 9cf20a664cf17becca3e2e6ef25df90508f3b308 (diff) | |
download | cpython-c05032c4ab549c009fbff9038a45a88c23c74ca2.zip cpython-c05032c4ab549c009fbff9038a45a88c23c74ca2.tar.gz cpython-c05032c4ab549c009fbff9038a45a88c23c74ca2.tar.bz2 |
Issues #29273: Merge test___all__ from 3.6
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test___all__.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index ae9114e..f6e82eb 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -72,17 +72,6 @@ class AllTest(unittest.TestCase): # than an AttributeError somewhere deep in CGIHTTPServer. import _socket - # rlcompleter needs special consideration; it import readline which - # initializes GNU readline which calls setlocale(LC_CTYPE, "")... :-( - import locale - locale_tuple = locale.getlocale(locale.LC_CTYPE) - try: - import rlcompleter - except ImportError: - pass - finally: - locale.setlocale(locale.LC_CTYPE, locale_tuple) - ignored = [] failed_imports = [] lib_dir = os.path.dirname(os.path.dirname(__file__)) |