summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-08-22 20:10:27 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-08-22 20:10:27 (GMT)
commit1cc69636effca5c74c49044b2c120aeaffacada9 (patch)
tree80b55012b16b49fe34ab4ab2187a021042c28b36 /Misc
parenta27a62e74caece828fd34c6247dae8870f52d194 (diff)
downloadcpython-1cc69636effca5c74c49044b2c120aeaffacada9.zip
cpython-1cc69636effca5c74c49044b2c120aeaffacada9.tar.gz
cpython-1cc69636effca5c74c49044b2c120aeaffacada9.tar.bz2
Fixed two format strings in the _collections module. For example
Modules/_collectionsmodule.c:674: warning: format '%i' expects type 'int', but argument 2 has type 'Py_ssize_t' Reviewed by Benjamin Peterson
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e5b37a9..07fc1f3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,8 @@ Library
- Silenced a trivial compiler warning in the sqlite module.
+- Fixed two format strings in the _collections module.
+
What's New in Python 2.6 beta 3?
================================