summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-05-24 21:57:23 (GMT)
committerGitHub <noreply@github.com>2019-05-24 21:57:23 (GMT)
commita9f05d69ccbf3c75cdd604c25094282697789a62 (patch)
treeb26677a8437f12e011b3adb574f32aa0bbff8739 /Misc
parent561612d8456cfab5672c9b445521113b847bd6b3 (diff)
downloadcpython-a9f05d69ccbf3c75cdd604c25094282697789a62.zip
cpython-a9f05d69ccbf3c75cdd604c25094282697789a62.tar.gz
cpython-a9f05d69ccbf3c75cdd604c25094282697789a62.tar.bz2
bpo-37032: Add CodeType.replace() method (GH-13542)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-05-24-12-38-40.bpo-37032.T8rSH8.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-05-24-12-38-40.bpo-37032.T8rSH8.rst b/Misc/NEWS.d/next/Core and Builtins/2019-05-24-12-38-40.bpo-37032.T8rSH8.rst
new file mode 100644
index 0000000..7e31a84
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-05-24-12-38-40.bpo-37032.T8rSH8.rst
@@ -0,0 +1 @@
+Added new ``replace()`` method to the code type (:class:`types.CodeType`).