#22751: fix test___all__ warning about modified environment in the tests. Patch by Michael Cetrulo.
This commit is contained in:
parent
21a2350a83
commit
009352aefd
|
@ -75,13 +75,14 @@ class AllTest(unittest.TestCase):
|
|||
|
||||
# rlcompleter needs special consideration; it imports readline which
|
||||
# initializes GNU readline which calls setlocale(LC_CTYPE, "")... :-(
|
||||
import locale
|
||||
locale_tuple = locale.getlocale(locale.LC_CTYPE)
|
||||
try:
|
||||
import rlcompleter
|
||||
import locale
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
locale.setlocale(locale.LC_CTYPE, 'C')
|
||||
finally:
|
||||
locale.setlocale(locale.LC_CTYPE, locale_tuple)
|
||||
|
||||
ignored = []
|
||||
failed_imports = []
|
||||
|
|
Loading…
Reference in New Issue