[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 721729fca4fab9fd11861844880b3f3780015ae0 by Miss Islington (bot) in branch '3.7': bpo-28795: Signal documentation: Fix misleading statement. (GH-13121) https://github.com/python/cpython/commit/721729fca4fab9fd11861844880b3f3780015ae0

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +13075 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread Julien Palard
Julien Palard added the comment: New changeset e85ef7a7eacdef2f43e6bf2e67f335100e7ef2da by Julien Palard in branch 'master': bpo-28795: Signal documentation: Fix misleading statement. (GH-13121) https://github.com/python/cpython/commit/e85ef7a7eacdef2f43e6bf2e67f335100e7ef2da --

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread Julien Palard
Julien Palard added the comment: Thanks for reporting Jan! It's finally merged \o/ -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread Julien Palard
Change by Julien Palard : -- stage: patch review -> backport needed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-06 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +13034 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28795] Misleading stating, that SIGINT handler is installed by default

2016-11-29 Thread Julien Palard
Changes by Julien Palard : Added file: http://bugs.python.org/file45696/issue28795-2.7.diff ___ Python tracker ___

[issue28795] Misleading stating, that SIGINT handler is installed by default

2016-11-29 Thread Julien Palard
Julien Palard added the comment: Proposed as patches but english is not my native language so please review carefully. -- keywords: +patch Added file: http://bugs.python.org/file45695/issue28795-tip.diff ___ Python tracker

[issue28795] Misleading stating, that SIGINT handler is installed by default

2016-11-25 Thread Jan Velecký
Jan Velecký added the comment: That's good. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28795] Misleading stating, that SIGINT handler is installed by default

2016-11-24 Thread Julien Palard
Julien Palard added the comment: Maybe something like: > Python installs a small number of signal handlers by default: SIGPIPE is > ignored (so write errors on pipes and sockets can be reported as ordinary > Python exceptions) and SIGINT (if parent process has not changed it) is > translated

[issue28795] Misleading stating, that SIGINT handler is installed by default

2016-11-24 Thread Jan Velecký
New submission from Jan Velecký: Hello, documentation (https://docs.python.org/2/library/signal.html) states, that Python by default installs SIGINT handler which cause KeyboardInterrupt. This is not true everytime according to implementation. "Python installs a small number of signal handlers