diff -r 46567fda0b29 Lib/test/support/__init__.py --- a/Lib/test/support/__init__.py Sat Jul 09 11:05:42 2016 +0200 +++ b/Lib/test/support/__init__.py Sat Jul 09 13:41:20 2016 +0200 @@ -92,7 +92,7 @@ "anticipate_failure", "load_package_tests", "detect_api_mismatch", "check__all__", # sys - "is_jython", "check_impl_detail", + "is_jython", "is_android", "check_impl_detail", # network "HOST", "IPV6_ENABLED", "find_unused_port", "bind_port", "open_urlresource", # processes @@ -734,6 +734,8 @@ is_jython = sys.platform.startswith('java') +is_android = bool(sysconfig.get_config_var('ANDROID_API_LEVEL')) + # Filename used for testing if os.name == 'java': # Jython disallows @ in module names