@@ -32,7 +32,7 @@ NULL``.
3232
3333If the platform doesn't have :c:func:`vsnprintf` and the buffer size needed to
3434avoid truncation exceeds *size* by more than 512 bytes, Python aborts with a
35- * Py_FatalError* .
35+ :c:func:` Py_FatalError` .
3636
3737The return value (*rv *) for these functions should be interpreted as follows:
3838
@@ -95,21 +95,21 @@ The following functions provide locale-independent string to number conversions.
9595 must be 0 and is ignored. The ``'r' `` format code specifies the
9696 standard :func: `repr ` format.
9797
98- *flags * can be zero or more of the values * Py_DTSF_SIGN * ,
99- * Py_DTSF_ADD_DOT_0 * , or * Py_DTSF_ALT * , or-ed together:
98+ *flags * can be zero or more of the values `` Py_DTSF_SIGN `` ,
99+ `` Py_DTSF_ADD_DOT_0 `` , or `` Py_DTSF_ALT `` , or-ed together:
100100
101- * * Py_DTSF_SIGN * means to always precede the returned string with a sign
101+ * `` Py_DTSF_SIGN `` means to always precede the returned string with a sign
102102 character, even if *val * is non-negative.
103103
104- * * Py_DTSF_ADD_DOT_0 * means to ensure that the returned string will not look
104+ * `` Py_DTSF_ADD_DOT_0 `` means to ensure that the returned string will not look
105105 like an integer.
106106
107- * * Py_DTSF_ALT * means to apply "alternate" formatting rules. See the
107+ * `` Py_DTSF_ALT `` means to apply "alternate" formatting rules. See the
108108 documentation for the :c:func: `PyOS_snprintf ` ``'#' `` specifier for
109109 details.
110110
111- If *ptype * is non-NULL, then the value it points to will be set to one of
112- * Py_DTST_FINITE *, * Py_DTST_INFINITE * , or * Py_DTST_NAN * , signifying that
111+ If *ptype * is non-`` NULL `` , then the value it points to will be set to one of
112+ `` Py_DTST_FINITE ``, `` Py_DTST_INFINITE `` , or `` Py_DTST_NAN `` , signifying that
113113 *val * is a finite number, an infinite number, or not a number, respectively.
114114
115115 The return value is a pointer to *buffer * with the converted string or
0 commit comments