[Python-checkins] closes bpo-43254: Fix *snprintf() man page refs. (GH-24563)

benjaminp webhook-mailer at python.org
Thu Feb 18 20:53:53 EST 2021


https://github.com/python/cpython/commit/e92d67dfbb4790df37aa6a0961fb6dc7e8d2fbbf
commit: e92d67dfbb4790df37aa6a0961fb6dc7e8d2fbbf
branch: master
author: Erlend Egeberg Aasland <erlend.aasland at innova.no>
committer: benjaminp <benjamin at python.org>
date: 2021-02-18T19:53:33-06:00
summary:

closes bpo-43254: Fix *snprintf() man page refs. (GH-24563)

files:
M Doc/c-api/conversion.rst

diff --git a/Doc/c-api/conversion.rst b/Doc/c-api/conversion.rst
index efbaa52e2dc46..e47072f04747a 100644
--- a/Doc/c-api/conversion.rst
+++ b/Doc/c-api/conversion.rst
@@ -11,14 +11,14 @@ Functions for number conversion and formatted string output.
 .. c:function:: int PyOS_snprintf(char *str, size_t size,  const char *format, ...)
 
    Output not more than *size* bytes to *str* according to the format string
-   *format* and the extra arguments. See the Unix man page :manpage:`snprintf(2)`.
+   *format* and the extra arguments. See the Unix man page :manpage:`snprintf(3)`.
 
 
 .. c:function:: int PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va)
 
    Output not more than *size* bytes to *str* according to the format string
    *format* and the variable argument list *va*. Unix man page
-   :manpage:`vsnprintf(2)`.
+   :manpage:`vsnprintf(3)`.
 
 :c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C library
 functions :c:func:`snprintf` and :c:func:`vsnprintf`. Their purpose is to



More information about the Python-checkins mailing list