diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-06-01 15:22:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-06-01 15:22:42 (GMT) |
commit | e440e47e91a93ae57870da8753f9c141c4a37885 (patch) | |
tree | b51a0c792d63b9357dccbd781000d2c4ea8274b0 /Misc | |
parent | 09e2cb0ba70aeb52bf6562120103573d7f65cbd6 (diff) | |
download | cpython-e440e47e91a93ae57870da8753f9c141c4a37885.zip cpython-e440e47e91a93ae57870da8753f9c141c4a37885.tar.gz cpython-e440e47e91a93ae57870da8753f9c141c4a37885.tar.bz2 |
Patch #957398: Add public API for Generator Object/Type.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -497,6 +497,9 @@ Build C API ----- +- New public functions PyEval_EvaluateFrame and PyGen_New to expose + generator objects. + - New public functions Py_IncRef() and Py_DecRef(), exposing the functionality of the Py_XINCREF() and Py_XDECREF macros. Useful for runtime dynamic embedding of Python. See patch #938302, by Bob |