You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2017. It is now read-only.
diff -r 2a742cf69c8d asyncio/test_support.py
--- a/asyncio/test_support.py Sun May 22 09:02:27 2016 +0200
+++ b/asyncio/test_support.py Sun May 22 10:11:48 2016 +0200
@@ -102,6 +102,9 @@
is_jython = sys.platform.startswith('java')
+is_android = (hasattr(platform, 'android_ver') and
+ bool(platform.android_ver()[0]))
+
def gc_collect():
"""Force as many objects as possible to be collected.