| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -305,7 +305,7 @@ the minimal value for the corresponding signed integer type of the same size. | |||
| 305 | 305 | ``D`` (:class:`complex`) [Py_complex] | |
| 306 | 306 | Convert a Python complex number to a C :c:type:`Py_complex` structure. | |
| 307 | 307 | ||
| 308 | - .. deprecated:: next | ||
| 308 | + .. deprecated:: 3.15 | ||
| 309 | 309 | ||
| 310 | 310 | For unsigned integer formats ``B``, ``H``, ``I``, ``k`` and ``K``, | |
| 311 | 311 | :exc:`DeprecationWarning` is emitted when the value is larger than | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -236,7 +236,7 @@ PyBytesWriter | |||
| 236 | 236 | The :c:type:`PyBytesWriter` API can be used to create a Python :class:`bytes` | |
| 237 | 237 | object. | |
| 238 | 238 | ||
| 239 | - .. versionadded:: next | ||
| 239 | + .. versionadded:: 3.15 | ||
| 240 | 240 | ||
| 241 | 241 | .. c:type:: PyBytesWriter | |
| 242 | 242 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,7 +16,7 @@ Complex Number Objects | |||
| 16 | 16 | ||
| 17 | 17 | The complex number value, using the C :c:type:`Py_complex` representation. | |
| 18 | 18 | ||
| 19 | - .. deprecated-removed:: next 3.20 | ||
| 19 | + .. deprecated-removed:: 3.15 3.20 | ||
| 20 | 20 | Use :c:func:`PyComplex_AsCComplex` and | |
| 21 | 21 | :c:func:`PyComplex_FromCComplex` to convert a | |
| 22 | 22 | Python complex number to/from the C :c:type:`Py_complex` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -201,7 +201,7 @@ Object Protocol | |||
| 201 | 201 | This case can arise from forgetting ``NULL`` checks and would delete the | |
| 202 | 202 | attribute. | |
| 203 | 203 | ||
| 204 | - .. versionchanged:: next | ||
| 204 | + .. versionchanged:: 3.15 | ||
| 205 | 205 | Must not be called with NULL value if an exception is set. | |
| 206 | 206 | ||
| 207 | 207 | ||
@@ -226,7 +226,7 @@ Object Protocol | |||
| 226 | 226 | For more details, see :c:func:`PyUnicode_InternFromString`, which may be | |
| 227 | 227 | used internally to create a key object. | |
| 228 | 228 | ||
| 229 | - .. versionchanged:: next | ||
| 229 | + .. versionchanged:: 3.15 | ||
| 230 | 230 | Must not be called with NULL value if an exception is set. | |
| 231 | 231 | ||
| 232 | 232 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -202,7 +202,7 @@ third-party distributors. | |||
| 202 | 202 | ABI Checking | |
| 203 | 203 | ============ | |
| 204 | 204 | ||
| 205 | - .. versionadded:: next | ||
| 205 | + .. versionadded:: 3.15 | ||
| 206 | 206 | ||
| 207 | 207 | Python includes a rudimentary check for ABI compatibility. | |
| 208 | 208 | ||
@@ -249,7 +249,7 @@ The full API is described below for advanced use cases. | |||
| 249 | 249 | may lead to crashes. | |
| 250 | 250 | In particular, it is not safe to examine the raised exception. | |
| 251 | 251 | ||
| 252 | - .. versionadded:: next | ||
| 252 | + .. versionadded:: 3.15 | ||
| 253 | 253 | ||
| 254 | 254 | .. c:macro:: PyABIInfo_VAR(NAME) | |
| 255 | 255 | ||
@@ -266,7 +266,7 @@ The full API is described below for advanced use cases. | |||
| 266 | 266 | PyABIInfo_DEFAULT_ABI_VERSION | |
| 267 | 267 | } | |
| 268 | 268 | ||
| 269 | - .. versionadded:: next | ||
| 269 | + .. versionadded:: 3.15 | ||
| 270 | 270 | ||
| 271 | 271 | .. c:type:: PyABIInfo | |
| 272 | 272 | ||
@@ -352,7 +352,7 @@ The full API is described below for advanced use cases. | |||
| 352 | 352 | values of macros such as :c:macro:`Py_LIMITED_API`, | |
| 353 | 353 | :c:macro:`PY_VERSION_HEX` and :c:macro:`Py_GIL_DISABLED`. | |
| 354 | 354 | ||
| 355 | - .. versionadded:: next | ||
| 355 | + .. versionadded:: 3.15 | ||
| 356 | 356 | ||
| 357 | 357 | ||
| 358 | 358 | .. _limited-api-list: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -268,7 +268,7 @@ accessible to C code. They all work with the current interpreter thread's | |||
| 268 | 268 | If the non-existing object should not be treated as a failure, you can use | |
| 269 | 269 | :c:func:`PySys_GetOptionalAttr` instead. | |
| 270 | 270 | ||
| 271 | - .. versionadded:: next | ||
| 271 | + .. versionadded:: 3.15 | ||
| 272 | 272 | ||
| 273 | 273 | .. c:function:: PyObject *PySys_GetAttrString(const char *name) | |
| 274 | 274 | ||
@@ -279,7 +279,7 @@ accessible to C code. They all work with the current interpreter thread's | |||
| 279 | 279 | If the non-existing object should not be treated as a failure, you can use | |
| 280 | 280 | :c:func:`PySys_GetOptionalAttrString` instead. | |
| 281 | 281 | ||
| 282 | - .. versionadded:: next | ||
| 282 | + .. versionadded:: 3.15 | ||
| 283 | 283 | ||
| 284 | 284 | .. c:function:: int PySys_GetOptionalAttr(PyObject *name, PyObject **result) | |
| 285 | 285 | ||
@@ -293,15 +293,15 @@ accessible to C code. They all work with the current interpreter thread's | |||
| 293 | 293 | * Set an exception, set *\*result* to ``NULL``, and return ``-1``, | |
| 294 | 294 | if an error occurred. | |
| 295 | 295 | ||
| 296 | - .. versionadded:: next | ||
| 296 | + .. versionadded:: 3.15 | ||
| 297 | 297 | ||
| 298 | 298 | .. c:function:: int PySys_GetOptionalAttrString(const char *name, PyObject **result) | |
| 299 | 299 | ||
| 300 | 300 | This is the same as :c:func:`PySys_GetOptionalAttr`, but *name* is | |
| 301 | 301 | specified as a :c:expr:`const char*` UTF-8 encoded bytes string, | |
| 302 | 302 | rather than a :c:expr:`PyObject*`. | |
| 303 | 303 | ||
| 304 | - .. versionadded:: next | ||
| 304 | + .. versionadded:: 3.15 | ||
| 305 | 305 | ||
| 306 | 306 | .. c:function:: PyObject *PySys_GetObject(const char *name) | |
| 307 | 307 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -47,7 +47,7 @@ Tuple Objects | |||
| 47 | 47 | On success, return a new reference. | |
| 48 | 48 | On error, set an exception and return ``NULL``. | |
| 49 | 49 | ||
| 50 | - .. versionadded:: next | ||
| 50 | + .. versionadded:: 3.15 | ||
| 51 | 51 | ||
| 52 | 52 | ||
| 53 | 53 | .. c:function:: PyObject* PyTuple_Pack(Py_ssize_t n, ...) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -127,7 +127,7 @@ This module defines the following constants and functions: | |||
| 127 | 127 | .. versionchanged:: 3.13 | |
| 128 | 128 | Added support for GNU/kFreeBSD. | |
| 129 | 129 | ||
| 130 | - .. versionchanged:: next | ||
| 130 | + .. versionchanged:: 3.15 | ||
| 131 | 131 | Added support for Solaris. | |
| 132 | 132 | ||
| 133 | 133 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2507,7 +2507,7 @@ and classes for traversing abstract syntax trees: | |||
| 2507 | 2507 | .. versionchanged:: 3.13 | |
| 2508 | 2508 | Added the *show_empty* option. | |
| 2509 | 2509 | ||
| 2510 | - .. versionchanged:: next | ||
| 2510 | + .. versionchanged:: 3.15 | ||
| 2511 | 2511 | Omit optional ``Load()`` values by default. | |
| 2512 | 2512 | ||
| 2513 | 2513 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -533,7 +533,7 @@ The :mod:`calendar` module exports the following data attributes: | |||
| 533 | 533 | in the standalone form if the locale provides one. Else it is equivalent | |
| 534 | 534 | to :data:`month_name`. | |
| 535 | 535 | ||
| 536 | - .. versionadded:: next | ||
| 536 | + .. versionadded:: 3.15 | ||
| 537 | 537 | ||
| 538 | 538 | ||
| 539 | 539 | .. data:: standalone_month_abbr | |
@@ -542,7 +542,7 @@ The :mod:`calendar` module exports the following data attributes: | |||
| 542 | 542 | locale in the standalone form if the locale provides one. Else it is | |
| 543 | 543 | equivalent to :data:`month_abbr`. | |
| 544 | 544 | ||
| 545 | - .. versionadded:: next | ||
| 545 | + .. versionadded:: 3.15 | ||
| 546 | 546 | ||
| 547 | 547 | ||
| 548 | 548 | .. data:: JANUARY | |
| Back | FazBrowse Home | New Git URL |
0 commit comments