diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-04-10 03:06:53 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-04-10 03:06:53 (GMT) |
commit | 5680d0c5e3a9d42b6c21f4a31a7dbfe72c9e5170 (patch) | |
tree | 136c5f661370582c3c9aaa8baac59228dfd9de28 /Doc/whatsnew | |
parent | 3de92bf155a1fff6e48b32c5d5f0071f6669ebf0 (diff) | |
download | cpython-5680d0c5e3a9d42b6c21f4a31a7dbfe72c9e5170.zip cpython-5680d0c5e3a9d42b6c21f4a31a7dbfe72c9e5170.tar.gz cpython-5680d0c5e3a9d42b6c21f4a31a7dbfe72c9e5170.tar.bz2 |
Merged revisions 62246-62259 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r62246 | georg.brandl | 2008-04-09 19:57:38 +0200 (Mi, 09 Apr 2008) | 2 lines
#2585: initialize code attribute of HTTPError.
........
r62247 | georg.brandl | 2008-04-09 19:58:56 +0200 (Mi, 09 Apr 2008) | 2 lines
Add :issue: directive for easy linking to bugs.python.org.
........
r62249 | gregory.p.smith | 2008-04-09 20:18:43 +0200 (Mi, 09 Apr 2008) | 2 lines
Add a note about the zlib.decompressobj().flush() fix.
........
r62255 | martin.v.loewis | 2008-04-09 20:56:20 +0200 (Mi, 09 Apr 2008) | 2 lines
Package wininst*.exe from distutils/command.
........
r62259 | andrew.kuchling | 2008-04-10 00:28:43 +0200 (Do, 10 Apr 2008) | 1 line
Try out the new issue role. Thanks, Georg!
........
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 29a2693..8cbe49f 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -1217,7 +1217,7 @@ Here are all of the changes that Python 2.6 makes to the core Python language. >>> f(**ud) ['a', 'b'] - .. Patch 1686487 + (Contributed by Alexander Belopolsky; :issue:`1686487`.) * Tuples now have an :meth:`index` method matching the list type's :meth:`index` method:: |