summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-05-21 17:12:38 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-05-21 17:12:38 (GMT)
commit6a2656094d1806abc5229758246865bcbaa34c5e (patch)
tree787da764ae5b179c79182e62976314c6bfb8c9d4 /Misc
parenta85bd06a82276863382b825de82aaa89760b0fa1 (diff)
downloadcpython-6a2656094d1806abc5229758246865bcbaa34c5e.zip
cpython-6a2656094d1806abc5229758246865bcbaa34c5e.tar.gz
cpython-6a2656094d1806abc5229758246865bcbaa34c5e.tar.bz2
Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows
embedders of the interpreter to set sys.argv without also modifying sys.path. This helps fix `CVE-2008-5983 <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1c4e174..237ed19 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,14 @@ Core and Builtins
- Issue #7079: Fix a possible crash when closing a file object while using
it from another thread. Patch by Daniel Stutzbach.
+C-API
+-----
+
+- Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows
+ embedders of the interpreter to set sys.argv without also modifying
+ sys.path. This helps fix `CVE-2008-5983
+ <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_.
+
Library
-------