cpython: c5d7e46926ac (original) (raw)

Mercurial > cpython

changeset 105523:c5d7e46926ac

Issue #26939: Merge 3.6. [#26939]

Xavier de Gaye xdegaye@users.sourceforge.net
date Thu, 08 Dec 2016 11:09:54 +0100
parents 1afc3f4f5502(current diff)fd1718badb67(diff)
children e401c5a95758
files Lib/test/support/__init__.py Misc/NEWS
diffstat 3 files changed, 20 insertions(+), 1 deletions(-)[+] [-] Lib/test/support/__init__.py 16 Lib/test/test_functools.py 2 Misc/NEWS 3

line wrap: on

line diff

--- a/Lib/test/support/init.py +++ b/Lib/test/support/init.py @@ -93,6 +93,7 @@ except ImportError: "check__all__", "requires_android_level", "requires_multiprocessing_queue", # sys "is_jython", "is_android", "check_impl_detail", "unix_shell",

@@ -2552,3 +2553,18 @@ def missing_compiler_executable(cmd_name continue if spawn.find_executable(cmd[0]) is None: return cmd[0] + + +_is_android_emulator = None +def setswitchinterval(interval):

--- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -1322,7 +1322,7 @@ class TestLRU: f.cache_clear() orig_si = sys.getswitchinterval()

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -579,6 +579,9 @@ Tests