diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-26 17:48:02 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-26 17:48:02 -0400 |
commit | 7c1534141d3a159a32db9742e1d201d5c7a9ba81 (patch) | |
tree | 79b51cbe7fd2eb90850d6673515862c0834453ca /Lib/idlelib/__init__.py | |
parent | b554faddf5d721d1d0039c57aae920f3156a5eb2 (diff) | |
download | cpython-git-7c1534141d3a159a32db9742e1d201d5c7a9ba81.tar.gz |
Issue 27372: Stop test_idle from changing locale, so test passes.
In 3.6, the warning is now called an error, making it harder to ignore.
Diffstat (limited to 'Lib/idlelib/__init__.py')
-rw-r--r-- | Lib/idlelib/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/__init__.py b/Lib/idlelib/__init__.py index fef21bee14..791ddeab79 100644 --- a/Lib/idlelib/__init__.py +++ b/Lib/idlelib/__init__.py @@ -7,3 +7,4 @@ Use the files named idle.* to start Idle. The other files are private implementations. Their details are subject to change. See PEP 434 for more. Import them at your own risk. """ +testing = False # Set True by test.test_idle. |