[issue23794] http package should support HTTP/2

2019-02-28 Thread Ludovic Gasc
Change by Ludovic Gasc : -- nosy: -Ludovic.Gasc ___ Python tracker <https://bugs.python.org/issue23794> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27579] Add a tutorial for AsyncIO in the documentation

2016-07-25 Thread Ludovic Gasc
Ludovic Gasc added the comment: Hi Terry, > I don't yet know how to work with git and github. I don't yet know how to work with tkinter and TK. I propose to combine our respective knowledge to improve the documentation together. If you give an all in one python file example with tkin

[issue27579] Add a tutorial for AsyncIO in the documentation

2016-07-20 Thread Ludovic Gasc
Changes by Ludovic Gasc <gml...@gmail.com>: -- nosy: +Ludovic.Gasc ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27579> ___ _

[issue24018] add a Generator ABC

2015-04-26 Thread Ludovic Gasc
Ludovic Gasc added the comment: Sorry guys to be basic for you, but if I take my AsyncIO end-user hat, I'm not sure to understand the potential end-user source code impacts to use Cython with Python 3.5 and AsyncIO. In concrete terms, it's only a low-level change, Cython will monkeypatch

[issue23794] http package should support HTTP/2

2015-04-13 Thread Ludovic Gasc
Ludovic Gasc added the comment: @demian.brecht: I don't know when, but certainly that we will add in aiohttp HTTP/2 support. If your implementation is enough modular, we could use some stuff like we did with urllib and HTTP/1 support. -- nosy: +Ludovic.Gasc

[issue22882] [patch] Linux packages you need to compile Python with all dependencies

2014-11-16 Thread Ludovic Gasc
New submission from Ludovic Gasc: Hi, To install easily Python 3.4.2 on Linux, I use Pythonz: http://saghul.github.io/pythonz/ I've discovered that, depends on the packages already installed on Linux, I don't have the same Python each time after compilation on servers. Some features could

[issue22882] [patch] Linux packages you need to compile Python with all dependencies

2014-11-16 Thread Ludovic Gasc
Ludovic Gasc added the comment: I'm not agree with you: I've lost a lot of time to find all packages I need for that, I've merged information from several blog posts. I imagine that I'm not alone with this problem. If you move this information in devguide, most persons don't find

[issue22882] [patch] Linux packages you need to compile Python with all dependencies

2014-11-16 Thread Ludovic Gasc
Ludovic Gasc added the comment: $ sudo apt-get build-dep python3 Good to know, I will test for my next deployment. The only problem with that, if you use a old Debian with a Python3 that need less dependencies that actual version. But you can add a line for that in documentation if we have

[issue22841] Avoid to use coroutine with add_signal_handler()

2014-11-10 Thread Ludovic Gasc
New submission from Ludovic Gasc: Hi, Victor Stinner suggested me during PyCON-FR to send you this: It's a pico-patch to forbid a coroutine as parameter of add_signal_handler(). I've added a test for that, the patch is based on the latest commit in Tulip. Thanks for your feedback. Regards