diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-16 18:39:49 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-16 18:39:49 (GMT) |
commit | ad5b1df67fcf58a66773e93feabc9cd10d0f9b34 (patch) | |
tree | db81a34dfc2e7a4746990c760a4a642f0466c009 | |
parent | 2460a43a6569fbf240c5a72d0b052565617213eb (diff) | |
download | cpython-ad5b1df67fcf58a66773e93feabc9cd10d0f9b34.zip cpython-ad5b1df67fcf58a66773e93feabc9cd10d0f9b34.tar.gz cpython-ad5b1df67fcf58a66773e93feabc9cd10d0f9b34.tar.bz2 |
Add versionadded tag to PySys_FormatStd*() functions doc
-rw-r--r-- | Doc/c-api/sys.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/c-api/sys.rst b/Doc/c-api/sys.rst index d4d2795..27ee94c 100644 --- a/Doc/c-api/sys.rst +++ b/Doc/c-api/sys.rst @@ -118,11 +118,15 @@ accessible to C code. They all work with the current interpreter thread's :cfunc:`PyUnicode_FromFormatV` and don't truncate the message to an arbitrary length. + .. versionadded:: 3.2 + .. cfunction:: void PySys_FormatStderr(const char *format, ...) As :cfunc:`PySys_FormatStdout`, but write to :data:`sys.stderr` or *stderr* instead. + .. versionadded:: 3.2 + .. _processcontrol: Process Control |