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 gvanrossum, j1m, vstinner, yselivanov
Date 2016-06-29.19:09:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAP7+vJKdKC4KaZm0z6eiwTuN8pJHYu9nkY2iBYw8P5hb6RVLRA@mail.gmail.com>
In-reply-to <1467224887.26.0.0387344661363.issue27392@psf.upfronthosting.co.za>
Content
Rather tham monkey-patching, in general I recommend just copying some
code from the asyncio library and calling that. In this case you'd be
copying a tiny bit of code from create_connection(). You'd still be
calling an internal API, _make_ssl_transport(), but your code would
still be less likely to change when some part of the asyncio library
changes than with monkey-patching. (Of course, since you pretty much
invented monkey-patching, you may feel differently. :-)
History
Date User Action Args
2016-06-29 19:09:11gvanrossumsetrecipients: + gvanrossum, vstinner, j1m, yselivanov
2016-06-29 19:09:11gvanrossumlinkissue27392 messages
2016-06-29 19:09:10gvanrossumcreate