diff options
author | Inada Naoki <songofacandy@gmail.com> | 2021-02-22 13:11:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 13:11:48 (GMT) |
commit | 91a639a094978882caef91915c932fbb2fc347de (patch) | |
tree | 29ee9246d022b40a529c881e8deb0d6503b4d993 /Misc | |
parent | 5a4aa4c03e27ca5007b86c9c1ee62c77ad08a120 (diff) | |
download | cpython-91a639a094978882caef91915c932fbb2fc347de.zip cpython-91a639a094978882caef91915c932fbb2fc347de.tar.gz cpython-91a639a094978882caef91915c932fbb2fc347de.tar.bz2 |
bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927)
Emit DeprecationWarning when PyArg_Parse*() is called with 'u', 'Z' format.
See PEP 623.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-02-22-19-00-00.bpo-36346.uAoni0.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-02-22-19-00-00.bpo-36346.uAoni0.rst b/Misc/NEWS.d/next/Core and Builtins/2021-02-22-19-00-00.bpo-36346.uAoni0.rst new file mode 100644 index 0000000..3b3e727 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-02-22-19-00-00.bpo-36346.uAoni0.rst @@ -0,0 +1,2 @@ +``PyArg_Parse*()`` functions now emits ``DeprecationWarning`` when ``u`` or +``Z`` format is used. See :pep:`623` for detail. |