commit | 8703be94b197ca7fdec8270705bbfefae232ee5b | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Fri Jul 08 02:14:55 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Fri Jul 08 02:14:55 2011 +0200 |
tree | b51607de7b34b218918f3329d8c55f7f5a40a648 | |
parent | ba8b3a2ca7a43684cf67b174a4b245b8ba596a5c [diff] |
Issue #12423: Fix os.abort() documentation The Python signal handler for SIGABRT is not called on os.abort() (only if the signal is raised manually or sent by another process). Patch by Kamil Kisiel.