[issue38712] add signal.pidfd_send_signal

2019-11-05 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +16579 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17070 ___ Python tracker __

[issue38713] expose P_PIDFD

2019-11-05 Thread Benjamin Peterson
New submission from Benjamin Peterson : On Linux 5.4, P_PIDFD allows using waitid with a pidfd. -- components: Library (Lib) messages: 356092 nosy: benjamin.peterson, njs priority: normal severity: normal status: open title: expose P_PIDFD versions: Python 3.9 _

[issue38713] expose P_PIDFD

2019-11-05 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +16580 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17071 ___ Python tracker __

[issue38712] add signal.pidfd_send_signal

2019-11-05 Thread Nathaniel Smith
Nathaniel Smith added the comment: I guess a bikeshed question is whether it should be `os.pidfd_send_signal` (like `os.kill`) or `signal.pidfd_send_signal` (like `signal.pthread_kill`). I don't actually care either way myself :-) -- ___ Python tr

[issue38714] setup command alias erroneous for names with hyphens

2019-11-05 Thread Arno-Can Uestuensoez
Change by Arno-Can Uestuensoez : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue38714] setup command alias erroneous for names with hyphens

2019-11-05 Thread Arno-Can Uestuensoez
New submission from Arno-Can Uestuensoez : Even though this involves 'setuptools', I write this issue here because of the tight coupling of 'distutils' and 'setuptools' e.g. by the passed 'self' parameter. The aliases as represented by the command 'setup.py alias' are internally treated by '

[issue38714] setup command alias erroneous for names with hyphens

2019-11-05 Thread Arno-Can Uestuensoez
Arno-Can Uestuensoez added the comment: Current related issues are: issue 38714 issue 38711 issue 38709 -- ___ Python tracker ___

[issue38711] setup parameter 'distclass' ignored for configuration files

2019-11-05 Thread Arno-Can Uestuensoez
Arno-Can Uestuensoez added the comment: Current related issues are: issue 38714 issue 38711 issue 38709 -- ___ Python tracker ___

[issue38709] distutils - setuptools - alias command removes comments from setup.cfg

2019-11-05 Thread Arno-Can Uestuensoez
Arno-Can Uestuensoez added the comment: Current related issues are: issue 38714 issue 38711 issue 38709 -- ___ Python tracker ___

[issue38713] expose P_PIDFD

2019-11-05 Thread miss-islington
miss-islington added the comment: New changeset 5c0c325453a175350e3c18ebb10cc10c37f9595c by Miss Islington (bot) (Benjamin Peterson) in branch 'master': closes bpo-38713: Expose P_PIDFD in os if it's defined. (GH-17071) https://github.com/python/cpython/commit/5c0c325453a175350e3c18ebb10cc10c

[issue38684] hashlib: build fails when blake2 is disabled in OpenSSL

2019-11-05 Thread miss-islington
miss-islington added the comment: New changeset 7c20888e71304ecbf4bd3d595f364b7c691d30a0 by Miss Islington (bot) in branch '3.8': bpo-38684: haslib: fix build when Blake2 not enabled in OpenSSL (GH-17043) https://github.com/python/cpython/commit/7c20888e71304ecbf4bd3d595f364b7c691d30a0

[issue38684] hashlib: build fails when blake2 is disabled in OpenSSL

2019-11-05 Thread Christian Heimes
Christian Heimes added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> compile error ___ Python tracker ___

[issue38712] add signal.pidfd_send_signal

2019-11-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: Yes, I thought about that a bit. I choose signal because: 1. signal already has some specialized functions that send signals pthread_kill and raise_signal. 2. If we every do want to implement the third parameter of pidfd_send_signal, the signal module alr

[issue38715] Regression in compileall ddir parameter when recursing

2019-11-05 Thread hetman
New submission from hetman : There appears to have been a regression introduced in the compileall library back with Python 3.5 as a result of commit f1a8df0ac98 . The issues appears when compiling a hierarchy of directories with the 'ddir' parameter specified (either in the compile_dir() func

[issue38705] venv creation on macOS Catalina is failing

2019-11-05 Thread Ned Deily
Change by Ned Deily : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bu

<    1   2