Staging
v0.5.1
https://github.com/python/cpython
Revision 1fef0154d97bd7f01c5bc59954a278bacf1a3f0e authored by Victor Stinner on 04 July 2017, 09:36:16 UTC, committed by GitHub on 04 July 2017, 09:36:16 UTC
Sleep 1 ms instead of 0.1 ms to workaround a rounding issue on
Windows. On Windows, time.sleep(0.0001) sleeps 0 ms, so
collect_in_thread() calls gc.collect() in a loop and tests using this
thread takes too long. Sleep 1 ms so time.sleep() sleeps 15.6 ms on
Windows.
1 parent 2e5867d
Raw File
Tip revision: 1fef0154d97bd7f01c5bc59954a278bacf1a3f0e authored by Victor Stinner on 04 July 2017, 09:36:16 UTC
bpo-29796: test_weakref: Fix collect_in_thread() on Windows (#2553)
Tip revision: 1fef015
antigravity.py

import webbrowser

webbrowser.open("http://xkcd.com/353/")
back to top