summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-03-09 19:21:28 (GMT)
committerThomas Heller <theller@ctypes.org>2007-03-09 19:21:28 (GMT)
commitc2f7725c863e350626d5c27ef56191b7f4104487 (patch)
tree2afe24e414f4121675b14b3cdbdcb83119428262 /Misc
parentb7b2b4eecfb3437f9da065251f1a35bf9c43db20 (diff)
downloadcpython-c2f7725c863e350626d5c27ef56191b7f4104487.zip
cpython-c2f7725c863e350626d5c27ef56191b7f4104487.tar.gz
cpython-c2f7725c863e350626d5c27ef56191b7f4104487.tar.bz2
Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0)
returned string up to the first NUL character.
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 d3bb47d..89304b0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -152,6 +152,9 @@ Core and builtins
Library
-------
+- Bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0)
+ returned string up to the first NUL character.
+
- Patch #957003: Implement smtplib.LMTP.
- Patch #1481079: add support for HTTP_REFERER to CGIHTTPServer.