[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27579] Add a tutorial for AsyncIO in the documentation

2016-07-20 Thread Ludovic Gasc

Changes by Ludovic Gasc :


--
nosy: +Ludovic.Gasc

___
Python tracker 
<http://bugs.python.org/issue27579>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tkinter, I'll add that in 
the documentation via git and Github.

Thanks for your help.

Have a nice day.

--

___
Python tracker 
<http://bugs.python.org/issue27579>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.

--
components: asyncio
files: add_signal_handler_no_coroutines.patch
keywords: patch
messages: 230984
nosy: Ludovic.Gasc, gvanrossum, haypo, yselivanov
priority: normal
severity: normal
status: open
title: Avoid to use coroutine with add_signal_handler()
versions: Python 3.4, Python 3.5
Added file: 
http://bugs.python.org/file37170/add_signal_handler_no_coroutines.patch

___
Python tracker 
<http://bugs.python.org/issue22841>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 missing, like pip, if you don't install some packages.

I've made a pull request in Pythonz with the list of packages you need to avoid 
that: https://github.com/saghul/pythonz#before-installing-pythons-via-pythonz

But, for me, this packages list should be in official Python documentation 
directly.

I've tested this packages list on Debian (Squeeze, Wheezy, Jessie, Sid), Ubuntu 
(12.04, 14.04) and CentOS 6.

Thanks for the merge.

Regards.

--
assignee: docs@python
components: Documentation
files: build_dep_python.patch
keywords: patch
messages: 231245
nosy: Ludovic.Gasc, docs@python
priority: normal
severity: normal
status: open
title: [patch] Linux packages you need to compile Python with all dependencies
type: enhancement
versions: Python 3.4, Python 3.5, Python 3.6
Added file: http://bugs.python.org/file37208/build_dep_python.patch

___
Python tracker 
<http://bugs.python.org/issue22882>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 this.

Moreover, the names of packages are pretty stable across Linux versions, I 
don't think we will have a lot of exceptions.

--

___
Python tracker 
<http://bugs.python.org/issue22882>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 the case one day.

--

___
Python tracker 
<http://bugs.python.org/issue22882>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 
<http://bugs.python.org/issue23794>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 
CPython if it's missing. I can continue to use asyncio.iscoroutine() function 
to detect coroutines.
Or it should be better to change something in AsyncIO libs and/or end-user 
source code ?

With the potential async/await inclusion in Python 3.5, it should be good to 
know if something else is necessary to help for the Cython support.

--
nosy: +Ludovic.Gasc

___
Python tracker 
<http://bugs.python.org/issue24018>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com