[issue35081] Move internal headers to Include/internal/

2018-10-31 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9587 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35081] Move internal headers to Include/internal/

2018-10-31 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9588 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35059] Convert Py_INCREF() and PyObject_INIT() to inlined functions

2018-10-31 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9589 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35105] Document that CPython accepts "invalid" identifiers

2018-10-31 Thread orlnub123
orlnub123 added the comment: The customizing attribute access section of the data model might be a suitable place. -- ___ Python tracker ___ _

[issue35130] add same file name to zipfile , result two files and same md5

2018-10-31 Thread MasterZ
New submission from MasterZ : step 1.I have one file named "1",then add this file to zipfile A.zip step 2.then I have another file named "1" too but different content, and add this file to zipfile A.zip result:in the A.zip exist 2 files both named "1" and both of their md5 is the name with ste

[issue28015] configure --with-lto builds fail when CC=clang on Linux, requires gold linker

2018-10-31 Thread Benjamin Peterson
Benjamin Peterson added the comment: Probably that's fine, but can #31625 be easily worked around by, e.g., using make AR=llvm-ar RANLIB=llvm-ranlib? -- nosy: +benjamin.peterson ___ Python tracker _

[issue24303] OSError 17 due to _multiprocessing/semaphore.c assuming a one-to-one Pid -> process mapping.

2018-10-31 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +9590 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue24303] OSError 17 due to _multiprocessing/semaphore.c assuming a one-to-one Pid -> process mapping.

2018-10-31 Thread Benjamin Peterson
Benjamin Peterson added the comment: The retry logic is implemented at a different layer in Python 3: https://github.com/python/cpython/blob/a1c249c40517917d2e0971d55aea8d14a44b2cc8/Lib/multiprocessing/synchronize.py#L115-L117 -- ___ Python tracker

[issue35128] warning.warn messages with spacing issues

2018-10-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I think double space after a period is not a bug. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue35128] warning.warn messages with spacing issues

2018-10-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- stage: resolved -> patch review status: closed -> open ___ Python tracker ___ ___ Python-bugs-list m

[issue35128] warning.warn messages with spacing issues

2018-10-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +Library (Lib) type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue24303] OSError 17 due to _multiprocessing/semaphore.c assuming a one-to-one Pid -> process mapping.

2018-10-31 Thread Mike Frysinger
Mike Frysinger added the comment: that's highlighting the SemLock._make_name func which doesn't have retry logic in it. did you mean to highlight SemLock.__init__ which has a retry loop that looks similar to the C code ? https://github.com/python/cpython/blob/a1c249c40517917d2e0971d55aea8d14

[issue24303] OSError 17 due to _multiprocessing/semaphore.c assuming a one-to-one Pid -> process mapping.

2018-10-31 Thread Benjamin Peterson
Benjamin Peterson added the comment: Yes On Wed, Oct 31, 2018, at 22:40, Mike Frysinger wrote: > > Mike Frysinger added the comment: > > that's highlighting the SemLock._make_name func which doesn't > have retry> logic in it. did you mean to highlight SemLock.__init__ which > has a > retry

[issue35130] add same file name to zipfile , result two files and same md5

2018-10-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is expected behavior. When you have two entries with the same name, you can access by name only one of them. -- nosy: +serhiy.storchaka resolution: -> not a bug stage: -> resolved status: open -> closed __

<    1   2