@@ -1541,7 +1541,7 @@ changes, or look through the Subversion logs for all the details.
1541
1541
buffer API, which fixed a test suite failure (fix by Antoine Pitrou;
1542
1542
:issue: `7133 `) and automatically set
1543
1543
OpenSSL's :c:macro: `!SSL_MODE_AUTO_RETRY `, which will prevent an error
1544
- code being returned from :meth: `recv ` operations that trigger an SSL
1544
+ code being returned from :meth: `! recv ` operations that trigger an SSL
1545
1545
renegotiation (fix by Antoine Pitrou; :issue: `8222 `).
1546
1546
1547
1547
The :func: `~ssl.SSLContext.wrap_socket ` constructor function now takes a
@@ -2031,7 +2031,7 @@ version 1.3. Some of the new features are:
2031
2031
* ElementTree's code for converting trees to a string has been
2032
2032
significantly reworked, making it roughly twice as fast in many
2033
2033
cases. The :meth: `ElementTree.write() <xml.etree.ElementTree.ElementTree.write> `
2034
- and :meth: `Element.write ` methods now have a *method * parameter that can be
2034
+ and :meth: `! Element.write ` methods now have a *method * parameter that can be
2035
2035
"xml" (the default), "html", or "text". HTML mode will output empty
2036
2036
elements as ``<empty></empty> `` instead of ``<empty/> ``, and text
2037
2037
mode will skip over elements and only output the text chunks. If
@@ -2044,7 +2044,7 @@ version 1.3. Some of the new features are:
2044
2044
Namespace handling has also been improved. All ``xmlns:<whatever> ``
2045
2045
declarations are now output on the root element, not scattered throughout
2046
2046
the resulting XML. You can set the default namespace for a tree
2047
- by setting the :attr: `default_namespace ` attribute and can
2047
+ by setting the :attr: `! default_namespace ` attribute and can
2048
2048
register new prefixes with :meth: `~xml.etree.ElementTree.register_namespace `. In XML mode,
2049
2049
you can use the true/false *xml_declaration * parameter to suppress the
2050
2050
XML declaration.
@@ -2181,14 +2181,14 @@ Changes to Python's build process and to the C API include:
2181
2181
discussed in :issue: `5753 `, and fixed by Antoine Pitrou.
2182
2182
2183
2183
* New macros: the Python header files now define the following macros:
2184
- :c:macro: `Py_ISALNUM `,
2185
- :c:macro: `Py_ISALPHA `,
2186
- :c:macro: `Py_ISDIGIT `,
2187
- :c:macro: `Py_ISLOWER `,
2188
- :c:macro: `Py_ISSPACE `,
2189
- :c:macro: `Py_ISUPPER `,
2190
- :c:macro: `Py_ISXDIGIT `,
2191
- :c:macro: `Py_TOLOWER `, and :c:macro: `Py_TOUPPER `.
2184
+ :c:macro: `! Py_ISALNUM `,
2185
+ :c:macro: `! Py_ISALPHA `,
2186
+ :c:macro: `! Py_ISDIGIT `,
2187
+ :c:macro: `! Py_ISLOWER `,
2188
+ :c:macro: `! Py_ISSPACE `,
2189
+ :c:macro: `! Py_ISUPPER `,
2190
+ :c:macro: `! Py_ISXDIGIT `,
2191
+ :c:macro: `! Py_TOLOWER `, and :c:macro: `! Py_TOUPPER `.
2192
2192
All of these functions are analogous to the C
2193
2193
standard macros for classifying characters, but ignore the current
2194
2194
locale setting, because in
@@ -2234,7 +2234,7 @@ Changes to Python's build process and to the C API include:
2234
2234
2235
2235
* When using the :c:type: `PyMemberDef ` structure to define attributes
2236
2236
of a type, Python will no longer let you try to delete or set a
2237
- :c:macro: `T_STRING_INPLACE ` attribute.
2237
+ :c:macro: `! T_STRING_INPLACE ` attribute.
2238
2238
2239
2239
.. rev 79644
2240
2240
@@ -2259,12 +2259,12 @@ Changes to Python's build process and to the C API include:
2259
2259
:issue: `6491 `.)
2260
2260
2261
2261
* The :program: `configure ` script now checks for floating-point rounding bugs
2262
- on certain 32-bit Intel chips and defines a :c:macro: `X87_DOUBLE_ROUNDING `
2262
+ on certain 32-bit Intel chips and defines a :c:macro: `! X87_DOUBLE_ROUNDING `
2263
2263
preprocessor definition. No code currently uses this definition,
2264
2264
but it's available if anyone wishes to use it.
2265
2265
(Added by Mark Dickinson; :issue: `2937 `.)
2266
2266
2267
- :program: `configure ` also now sets a :envvar: `LDCXXSHARED ` Makefile
2267
+ :program: `configure ` also now sets a :envvar: `! LDCXXSHARED ` Makefile
2268
2268
variable for supporting C++ linking. (Contributed by Arfrever
2269
2269
Frehtes Taifersar Arahesis; :issue: `1222585 `.)
2270
2270
0 commit comments