[Python-checkins] cpython (3.3): Issue #16241: document -X faulthandler command line option.

andrew.svetlov python-checkins at python.org
Tue Oct 23 15:20:23 CEST 2012


http://hg.python.org/cpython/rev/957a6c00d3af
changeset:   79911:957a6c00d3af
branch:      3.3
parent:      79909:02e5f7d1ab29
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Tue Oct 23 16:19:26 2012 +0300
summary:
  Issue #16241: document -X faulthandler command line option.

Patch by Marek Šuppa.

files:
  Doc/using/cmdline.rst |  3 ++-
  Misc/ACKS             |  1 +
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -358,7 +358,8 @@
 .. cmdoption:: -X
 
    Reserved for various implementation-specific options.  CPython currently
-   defines none of them, but allows to pass arbitrary values and retrieve
+   defines just one, you can use ``-X faulthander`` to enable
+   :data:`faulthandler`. It also allows to pass arbitrary values and retrieve
    them through the :data:`sys._xoptions` dictionary.
 
    .. versionchanged:: 3.2
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1133,6 +1133,7 @@
 Nathan Sullivan
 Mark Summerfield
 Reuben Sumner
+Marek Šuppa
 Hisao Suzuki
 Kalle Svensson
 Andrew Svetlov

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list