summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-04 22:34:09 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-04 22:34:09 (GMT)
commit1b933ed50aef2c31e003a001cef8647244ebfa0e (patch)
tree1d434753b2e2fd9e1454f4bd614c73a90bab903f /Misc
parent1d6a16bf3838bfb89efdd5e338b247324d962010 (diff)
downloadcpython-1b933ed50aef2c31e003a001cef8647244ebfa0e.zip
cpython-1b933ed50aef2c31e003a001cef8647244ebfa0e.tar.gz
cpython-1b933ed50aef2c31e003a001cef8647244ebfa0e.tar.bz2
#3773: Check for errors around the use of PyTokenizer_FindEncoding().
reviewed by Brett Cannon.
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 0e51c80..889cead 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.0 release candidate 1
Core and Builtins
-----------------
+- Issue 3774: Added a few more checks in PyTokenizer_FindEncoding to handle
+ error conditions.
+
- Issue 3594: Fix Parser/tokenizer.c:fp_setreadl() to open the file being
tokenized by either a file path or file pointer for the benefit of
PyTokenizer_FindEncoding().