summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-06-26 16:01:10 (GMT)
committerGitHub <noreply@github.com>2019-06-26 16:01:10 (GMT)
commit69150669f224a1fc47de483557736e725ac5b2a1 (patch)
tree8d66c97b35d9287a5b0ec5f448d9b5b71238f1d3 /Misc
parent7a177c08ab8981645828d3b4d9083cdd9018d197 (diff)
downloadcpython-69150669f224a1fc47de483557736e725ac5b2a1.zip
cpython-69150669f224a1fc47de483557736e725ac5b2a1.tar.gz
cpython-69150669f224a1fc47de483557736e725ac5b2a1.tar.bz2
bpo-37414: Remove sys.callstats() (GH-14398)
Remove the undocumented sys.callstats() function. Since Python 3.7, it was deprecated and always returned None. It required a special build option CALL_PROFILE which was already removed in Python 3.7.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-06-26-17-27-26.bpo-37414.o6Lnbc.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-06-26-17-27-26.bpo-37414.o6Lnbc.rst b/Misc/NEWS.d/next/Core and Builtins/2019-06-26-17-27-26.bpo-37414.o6Lnbc.rst
new file mode 100644
index 0000000..a3ff57b
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-06-26-17-27-26.bpo-37414.o6Lnbc.rst
@@ -0,0 +1,3 @@
+The undocumented ``sys.callstats()`` function has been removed. Since Python
+3.7, it was deprecated and always returned ``None``. It required a special
+build option ``CALL_PROFILE`` which was already removed in Python 3.7.