summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-08-16 17:11:18 +0000
committerAndrew M. Kuchling <amk@amk.ca>2006-08-16 17:11:18 +0000
commitc13324e31361fec7984c52c0711221976a8377b8 (patch)
tree075996655ddcf0759998f989c09a5a054a380c84
parentdc075b9ddd19ec5930d39f4958f8f80a2d14c8ae (diff)
downloadcpython-git-c13324e31361fec7984c52c0711221976a8377b8.tar.gz
Grammar fix
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 77785a5771..b3a3e7df49 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -69,10 +69,10 @@ Library
the code (introduced in 2.5b3) has been reverted. It will continue
to be maintained manually as static string literal.
-- If a the Python part of a ctypes callback function returns None,
+- If the Python part of a ctypes callback function returns None,
and this cannot be converted to the required C type, an exception is
printed with PyErr_WriteUnraisable. Before this change, the C
- callback did return arbitrary values to the calling code.
+ callback returned arbitrary values to the calling code.
- The __repr__ method of a NULL ctypes.py_object() no longer raises
an exception.