- 11 Jan, 2013 1 commit
-
-
R David Murray authored
-
- 10 Jan, 2013 3 commits
-
-
Benjamin Peterson authored
-
R David Murray authored
Although there is not a regression in Python2, we make the same update here to keep the code bases in sync. (The fix for issue 9750 introduced a regression in Python 3 by sorting the row objects returned by fetchall. But if a row_factory such as sqlite3.Row is used, the rows may not be sortable (in Python3), which leads to an exception. The sorting is still a nice idea, so the patch moves the sort into the sql.) Fix and test by Peter Otten.
-
Ned Deily authored
_Qdoffs when compiling with an SDK of 10.7 or later. The OS X APIs they wrap have long been deprecated and have now been removed with 10.7. These modules were already empty for 64-bit builds and have been removed in Python 3. (Original patch by Ronald Oussoren.)
-
- 08 Jan, 2013 4 commits
-
-
Serhiy Storchaka authored
Amaury Forgeot d'Arc. Added tests for partial decoding of non-BMP characters.
-
Serhiy Storchaka authored
-
Charles-François Natali authored
-
Vinay Sajip authored
-
- 06 Jan, 2013 1 commit
-
-
R David Murray authored
-
- 05 Jan, 2013 2 commits
-
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 04 Jan, 2013 3 commits
-
-
Ezio Melotti authored
-
Chris Jerdonek authored
-
Benjamin Peterson authored
-
- 03 Jan, 2013 2 commits
-
-
Victor Stinner authored
-
Giampaolo Rodola' authored
-
- 02 Jan, 2013 9 commits
-
-
Nadeem Vawda authored
Patch by Martin Packman.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch from Tom Tromey.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Eli Bendersky authored
-
Serhiy Storchaka authored
-
Benjamin Peterson authored
-
- 01 Jan, 2013 6 commits
-
-
Serhiy Storchaka authored
-
Ned Deily authored
-
Richard Oudkerk authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 31 Dec, 2012 2 commits
-
-
Ned Deily authored
-
Giampaolo Rodola' authored
-
- 30 Dec, 2012 1 commit
-
-
Serhiy Storchaka authored
-
- 29 Dec, 2012 2 commits
-
-
Andrew Svetlov authored
-
Serhiy Storchaka authored
Issue #16485: Fix file descriptor not being closed if file header patching fails on closing of aifc file.
-
- 28 Dec, 2012 4 commits
-
-
Antoine Pitrou authored
-
Serhiy Storchaka authored
-
Raymond Hettinger authored
The code isn't exactly equivalent because a classmethod would only make sense inside a chain class, and it would need "cls" as a first argument, and it would need to return an instance of "chain" rather than a generator. The updated example drops the @classmethod decorator so that it can be used standalone: list(from_iterable(['abc', 'def'])) This should be communicate what from_iterable does.
-
Serhiy Storchaka authored
-