summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2023-08-16 12:27:32 (GMT)
committerGitHub <noreply@github.com>2023-08-16 12:27:32 (GMT)
commit9864f9a7c7046d6a0174c8142ddfbb5f07de5925 (patch)
treeb20f25049e21a6c63215cc6dc9dc23f4c6caa201 /Misc
parent2598a1a835e5bdf0532c08d867cf54f94aeb85a0 (diff)
downloadcpython-9864f9a7c7046d6a0174c8142ddfbb5f07de5925.zip
cpython-9864f9a7c7046d6a0174c8142ddfbb5f07de5925.tar.gz
cpython-9864f9a7c7046d6a0174c8142ddfbb5f07de5925.tar.bz2
[3.12] gh-86457: Fix signature for code.replace() (GH-23199) (#107744)
* [3.12] gh-86457: Fix signature for code.replace() (GH-23199) Also add support of @text_signature in Argument Clinic.. (cherry picked from commit 0e6e32fb84b2f7cb668e0b9927637587081e38cd) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> * Update 2023-08-07-16-30-48.gh-issue-95065.-im4R5.rst
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tools-Demos/2023-08-07-16-30-48.gh-issue-95065.-im4R5.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2023-08-07-16-30-48.gh-issue-95065.-im4R5.rst b/Misc/NEWS.d/next/Tools-Demos/2023-08-07-16-30-48.gh-issue-95065.-im4R5.rst
new file mode 100644
index 0000000..4768e67
--- /dev/null
+++ b/Misc/NEWS.d/next/Tools-Demos/2023-08-07-16-30-48.gh-issue-95065.-im4R5.rst
@@ -0,0 +1,2 @@
+Argument Clinic now supports overriding automatically generated signature by
+using directive ``@text_signature``.