summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2023-12-04 09:09:06 (GMT)
committerGitHub <noreply@github.com>2023-12-04 09:09:06 (GMT)
commitdee7beeb4f9d28fec945c8c495027cc22a512328 (patch)
treec41df7d57757f57cdd2f74a0fbd10925315508f4 /Doc/whatsnew
parent0e732d0997cff08855d98c17af4dd5527f10e419 (diff)
downloadcpython-dee7beeb4f9d28fec945c8c495027cc22a512328.zip
cpython-dee7beeb4f9d28fec945c8c495027cc22a512328.tar.gz
cpython-dee7beeb4f9d28fec945c8c495027cc22a512328.tar.bz2
bpo-34392: Add sys. _is_interned() (GH-8755)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.13.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index 372e4a4..676305c 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -297,6 +297,13 @@ sqlite3
object is not :meth:`closed <sqlite3.Connection.close>` explicitly.
(Contributed by Erlend E. Aasland in :gh:`105539`.)
+sys
+---
+
+* Add the :func:`sys._is_interned` function to test if the string was interned.
+ This function is not guaranteed to exist in all implementations of Python.
+ (Contributed by Serhiy Storchaka in :gh:`78573`.)
+
tkinter
-------