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 yselivanov
Recipients giampaolo.rodola, gvanrossum, methane, vstinner, yselivanov
Date 2016-07-11.14:32:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468247571.22.0.172297049101.issue26081@psf.upfronthosting.co.za>
In-reply-to
Content
> Before working on it, could someone give me idea to run whole test_asyncio
with and without C version Future easily?

asyncio uses loop.create_future() to create sockets.  I'd suggest you to create two base test classes: one that monkeypatches loop.create_future to return pure python Future in its setUp method; an another, that makes create_future to return a C version of the Future.

The derive some unittests from those base classes (which will effectively double the number of tests).

> And, which is master repository of asyncio? github? or hg.python.org?
If github, can I send separated pull request changing test_asyncio after
this patch is merged?

The master repo for asyncio is github, but since the C version won't be a part of asyncio (it will be checked in only in CPython source tree), I think it's fine to continue the work here, on bugs.python.org.
History
Date User Action Args
2016-07-11 14:32:51yselivanovsetrecipients: + yselivanov, gvanrossum, vstinner, giampaolo.rodola, methane
2016-07-11 14:32:51yselivanovsetmessageid: <1468247571.22.0.172297049101.issue26081@psf.upfronthosting.co.za>
2016-07-11 14:32:51yselivanovlinkissue26081 messages
2016-07-11 14:32:51yselivanovcreate