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 flox
Recipients flox, ned.deily, ronaldoussoren
Date 2012-07-07.22:06:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341698800.73.0.00496691720624.issue15285@psf.upfronthosting.co.za>
In-reply-to
Content
This was this test which was failing:


    def testConnectTimeout(self):
        # Choose a private address that is unlikely to exist to prevent
        # failures due to the connect succeeding before the timeout.
        # Use a dotted IP address to avoid including the DNS lookup time
        # with the connect time.  This avoids failing the assertion that
        # the timeout occurred fast enough.
        addr = ('10.0.0.0', 12345)
        with support.transient_internet(addr[0]):
            self._sock_operation(1, 0.001, 'connect', addr)


I suspect a conflicting configuration of the EuroPython network ;)
Let's close it.
History
Date User Action Args
2012-07-07 22:06:40floxsetrecipients: + flox, ronaldoussoren, ned.deily
2012-07-07 22:06:40floxsetmessageid: <1341698800.73.0.00496691720624.issue15285@psf.upfronthosting.co.za>
2012-07-07 22:06:40floxlinkissue15285 messages
2012-07-07 22:06:40floxcreate