[Python-Dev] PEP 550 v3

2017-08-18 Thread Yury Selivanov
Hi, This is a third iteration of the PEP. There was some really good feedback on python-ideas and the discussion thread became hard to follow again, so I decided to update the PEP only three days after I published the previous version. Summary of the changes can be found in the "Version

Re: [Python-Dev] __signature__ for PySide ready

2017-08-18 Thread Jelle Zijlstra
2017-08-18 18:20 GMT+02:00 Yury Selivanov : > Hi Christian, > > On Fri, Aug 18, 2017 at 4:41 AM, Christian Tismer > wrote: > > Hi friends, > > > > in the last months, I have developed signature support for > > PySide. The module creates the same

Re: [Python-Dev] socketserver ForkingMixin waiting for child processes

2017-08-18 Thread Victor Stinner
2017-08-12 0:34 GMT+02:00 Ryan Smith-Roberts : > Since ThreadingMixIn also leaks threads, > server_close() could grow a timeout flag (following the socket module > timeout convention) and maybe a terminate boolean. ThreadingMixIn could then > also be fixed. I'm not sure how useful

[Python-Dev] Buildbot report, August 2017

2017-08-18 Thread Victor Stinner
Hi, Here is a quick report of what changed recently on buildbots. == pythoninfo == I added a new "python3 -m test.pythoninfo" command which is now run on Travis CI, AppVeyor and buildbots. https://bugs.python.org/issue30871 This command dumps various informations to help debugging test

Re: [Python-Dev] __signature__ for PySide ready

2017-08-18 Thread Brett Cannon
On Fri, 18 Aug 2017 at 02:05 Christian Tismer wrote: > Hi friends, > > in the last months, I have developed signature support for > PySide. The module creates the same signatures as are known > for plain Python functions. > > As a non-trivial addition, the module also

Re: [Python-Dev] __signature__ for PySide ready

2017-08-18 Thread Yury Selivanov
Hi Christian, On Fri, Aug 18, 2017 at 4:41 AM, Christian Tismer wrote: > Hi friends, > > in the last months, I have developed signature support for > PySide. The module creates the same signatures as are known > for plain Python functions. > > As a non-trivial addition, the

[Python-Dev] Summary of Python tracker Issues

2017-08-18 Thread Python tracker
ACTIVITY SUMMARY (2017-08-11 - 2017-08-18) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open6133 (+17) closed 36852 (+32) total 42985 (+49) Open issues

[Python-Dev] Could someone review GH-2974 which add missing PyObject_GC_UnTrack()?

2017-08-18 Thread INADA Naoki
Hi. I created PR which fixes potential crash. Serhiy Storchaka approved it already, but he wants one other review from core dev. And I updated document after his review too. So I want more one reviewer for the PR. Someone help me? https://github.com/python/cpython/pull/2974

[Python-Dev] __signature__ for PySide ready

2017-08-18 Thread Christian Tismer
Hi friends, in the last months, I have developed signature support for PySide. The module creates the same signatures as are known for plain Python functions. As a non-trivial addition, the module also handles multiple signatures as a list. I consider this extension to PySide as quite essential