This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gvanrossum
Recipients eric.snow, georg.brandl, gvanrossum, neologix, pitrou, python-dev, serhiy.storchaka, vstinner
Date 2014-01-25.22:56:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390690564.05.0.915998793255.issue20311@psf.upfronthosting.co.za>
In-reply-to
Content
I don't have the energy to read all the debate here, but over on python-tulip we continue to discuss this. Victor and I have currently agreed to drop the math.ceil() calls from the event loop and instead simply consider any event scheduled within "granularity" from the current clock value to be "ready". Victor will check it in.

Regarding the buildbot failures, Victor will have to review those.  They are in the telnet tests:

======================================================================
ERROR: test_read_until (test.test_telnetlib.ReadTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/home/buildbot/koobs-freebsd10/3.x.koobs-freebsd10/build/Lib/test/test_telnetlib.py", line 179, in test_read_until
    data = telnet.read_until(b'match')
  File "/usr/home/buildbot/koobs-freebsd10/3.x.koobs-freebsd10/build/Lib/telnetlib.py", line 312, in read_until
    with _TelnetSelector() as selector:
TypeError: Can't instantiate abstract class MockSelector with abstract methods resolution

======================================================================
ERROR: test_expect (test.test_telnetlib.ExpectTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/home/buildbot/koobs-freebsd10/3.x.koobs-freebsd10/build/Lib/test/test_telnetlib.py", line 388, in test_expect
    (_,_,data) = telnet.expect([b'match'])
  File "/usr/home/buildbot/koobs-freebsd10/3.x.koobs-freebsd10/build/Lib/telnetlib.py", line 617, in expect
    with _TelnetSelector() as selector:
TypeError: Can't instantiate abstract class MockSelector with abstract methods resolution

----------------------------------------------------------------------
History
Date User Action Args
2014-01-25 22:56:04gvanrossumsetrecipients: + gvanrossum, georg.brandl, pitrou, vstinner, neologix, python-dev, eric.snow, serhiy.storchaka
2014-01-25 22:56:04gvanrossumsetmessageid: <1390690564.05.0.915998793255.issue20311@psf.upfronthosting.co.za>
2014-01-25 22:56:04gvanrossumlinkissue20311 messages
2014-01-25 22:56:03gvanrossumcreate