commit | 287bef46b711845fbe9cdbe8011d71aa022f929f | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Dec 10 05:56:49 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Dec 10 05:56:49 2009 +0000 |
tree | 2b20768c55d5bf8e920ae18f0fa35994d2f9fdd8 | |
parent | 1dbfbab1d240b4a6c2c893b552772a0c6c81f2f9 [diff] [blame] |
Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)
diff --git a/Misc/NEWS b/Misc/NEWS index 0b16414..622ec92 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -33,6 +33,8 @@ Library ------- +- Fix variations of extending deques: d.extend(d) d.extendleft(d) d+=d + - Issue #1923: Fixed the removal of meaningful spaces when PKG-INFO is generated in Distutils. Patch by Stephen Emslie.