summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-06 13:27:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-06 13:27:40 (GMT)
commit45d9c91d4b0d61faaa85ea834e59c86815c00709 (patch)
tree0872dc07e701e1fb4c64d8b66545762f789e3acf /Misc
parent15a66cf1348cfd9471bb3080799f203f8ddddf96 (diff)
downloadcpython-45d9c91d4b0d61faaa85ea834e59c86815c00709.zip
cpython-45d9c91d4b0d61faaa85ea834e59c86815c00709.tar.gz
cpython-45d9c91d4b0d61faaa85ea834e59c86815c00709.tar.bz2
Issue #3163: The struct module gets new format characters 'n' and 'N'
supporting C integer types `ssize_t` and `size_t`, respectively.
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 ef0edc3..9564891 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -294,6 +294,9 @@ Core and Builtins
Library
-------
+- Issue #3163: The struct module gets new format characters 'n' and 'N'
+ supporting C integer types ``ssize_t`` and ``size_t``, respectively.
+
- Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
Reported and diagnosed by Thomas Kluyver.