diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-31 11:59:43 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-31 11:59:43 (GMT) |
commit | 49d0f4e4282cbb397232c0a80799f661d2f9456f (patch) | |
tree | f4b6f8fb730f62eb45bb897cc478e53fca5747c6 /Lib/test/test_asyncio | |
parent | 323748e1d1f5f3239476745d0eb83db3a1d9e224 (diff) | |
download | cpython-49d0f4e4282cbb397232c0a80799f661d2f9456f.zip cpython-49d0f4e4282cbb397232c0a80799f661d2f9456f.tar.gz cpython-49d0f4e4282cbb397232c0a80799f661d2f9456f.tar.bz2 |
Issue #20452: Remove debug code, no more needed
Diffstat (limited to 'Lib/test/test_asyncio')
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index f0781ab..24808cb 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -28,15 +28,6 @@ from asyncio import events from asyncio import selector_events from asyncio import test_utils -# FIXME: remove these info, used for debug purpose (issue #20452) -print("time.monotonic() info: %r" % (time.get_clock_info('monotonic'),)) -try: - SC_CLK_TCK = os.sysconf('SC_CLK_TCK') - print("os.sysconf('SC_CLK_TCK') = %s" % SC_CLK_TCK) -except Exception: - pass -# FIXME: remove these info, used for debug purpose (issue #20452) - def data_file(filename): if hasattr(support, 'TEST_HOME_DIR'): @@ -1186,10 +1177,7 @@ class EventLoopTestsMixin: self.loop.run_until_complete(wait()) calls.append(self.loop._run_once_counter) - self.assertEqual(calls, [1, 3, 5, 6], - # FIXME: remove these info, used for debug purpose (issue #20452) - (self.loop._granularity, - self.loop._selector.resolution)) + self.assertEqual(calls, [1, 3, 5, 6]) class SubprocessTestsMixin: |