summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-02-19 15:53:17 (GMT)
committerGuido van Rossum <guido@python.org>2003-02-19 15:53:17 (GMT)
commit6297a7a9fbf7675bf23a9b5aa822ed5aaec19647 (patch)
tree39464e145aa29a7b507fb3b9f080841e3f8f00e0 /Misc
parent162e38c6a312aa3e9c353419301087a4620c513c (diff)
downloadcpython-6297a7a9fbf7675bf23a9b5aa822ed5aaec19647.zip
cpython-6297a7a9fbf7675bf23a9b5aa822ed5aaec19647.tar.gz
cpython-6297a7a9fbf7675bf23a9b5aa822ed5aaec19647.tar.bz2
- PyEval_GetFrame() is now declared to return a PyFrameObject *
instead of a plain PyObject *. (SF patch #686601 by Ben Laurie.)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7198541..2b12d6c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -326,6 +326,9 @@ Build
C API
-----
+- PyEval_GetFrame() is now declared to return a PyFrameObject *
+ instead of a plain PyObject *. (SF patch #686601.)
+
- PyNumber_Check() now checks that the object has a nb_int or nb_float
slot, rather than simply checking whether it has a non-NULL
tp_as_number pointer.