summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Add sanity assertions in some import lock code (issue #15599).Antoine Pitrou2012-12-182-0/+3
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1842-64/+64
|\
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1836-54/+54
* | Issue #16711: Fix required method names for collections.IteratorAndrew Svetlov2012-12-181-1/+1
|\ \ | |/
| * Issue #16711: Fix required method names for collections.IteratorAndrew Svetlov2012-12-181-1/+1
* | Issue 16646 (ftplib): deliberately use intermediate variable after catching e...Giampaolo Rodola'2012-12-171-1/+2
|\ \ | |/
| * Issue 16646 (ftplib): deliberately use intermediate variable after catching e...Giampaolo Rodola'2012-12-171-1/+2
* | Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-2/+2
|\ \ | |/
| * Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-2/+2
* | Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (pa...Giampaolo Rodola'2012-12-172-3/+10
|\ \ | |/
| * Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (pa...Giampaolo Rodola'2012-12-172-3/+10
* | Update example: Counter.subtract returns None, not selfAndrew Svetlov2012-12-171-0/+1
|\ \ | |/
| * Update example: Counter.subtract returns None, not selfAndrew Svetlov2012-12-171-0/+1
* | Fix typoAndrew Svetlov2012-12-171-1/+1
|\ \ | |/
| * Fix typoAndrew Svetlov2012-12-171-1/+1
* | Merge 3.2Brian Curtin2012-12-172-305/+30
|\ \ | |/
| * Fix #14901. Update the Windows FAQ.Brian Curtin2012-12-172-305/+30
* | Issue #15783: Support None default values in the Context() constructor.Stefan Krah2012-12-162-30/+54
* | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue #1387...Antoine Pitrou2012-12-161-1/+8
* | Null mergeAntoine Pitrou2012-12-160-0/+0
|\ \ | |/
| * Fix ResourceWarnings in test_ptyAntoine Pitrou2012-12-161-3/+5
* | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-162-6/+29
|\ \ | |/
| * Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-162-6/+29
* | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the patte...Antoine Pitrou2012-12-163-1/+21
|\ \ | |/
| * Issue #16626: Fix infinite recursion in glob.glob() on Windows when the patte...Antoine Pitrou2012-12-163-1/+21
* | #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-163-2/+11
|\ \ | |/
| * #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-163-1/+10
* | Issue #15783: Except for the number methods, the C version of decimal nowStefan Krah2012-12-158-233/+625
* | Use OSError instead of os.error in the docs.Andrew Svetlov2012-12-152-5/+5
* | merge 3.2Benjamin Peterson2012-12-151-2/+0
|\ \ | |/
| * remove dead codeBenjamin Peterson2012-12-151-2/+0
* | Issue #16298: In HTTPResponse.read(), close the socket when there is no Conte...Antoine Pitrou2012-12-154-2/+42
|\ \ | |/
| * Issue #16298: In HTTPResponse.read(), close the socket when there is no Conte...Antoine Pitrou2012-12-154-1/+23
* | #16683: merge with 3.2.Ezio Melotti2012-12-141-6/+6
|\ \ | |/
| * #16683: restore alphabetical order in audioop docs. Patch by Serhiy Storchaka.Ezio Melotti2012-12-141-6/+6
* | #16681: merge with 3.2.Ezio Melotti2012-12-142-2/+2
|\ \ | |/
| * #16681: use "bidirectional class" instead of "bidirectional category" in the ...Ezio Melotti2012-12-141-1/+1
| * #16681: use "bidirectional class" instead of "bidirectional category".Ezio Melotti2012-12-141-1/+1
* | Issue #16661: Fix the os.getgrouplist() test by not assuming that itRoss Lagerwall2012-12-132-10/+6
* | Cross compiling needs host and build settings. configure no longerChristian Heimes2012-12-123-0/+7
* | Just to be sure, initialize with a copy of the compiler's lib and inc dirs.Christian Heimes2012-12-121-2/+2
* | Fix cross compiling issue in setup.py, ensure that lib_dirs and inc_dirs areChristian Heimes2012-12-122-0/+6
* | Code style fixup: No need for double ((parenthesis)) and use {} on an if else.Gregory P. Smith2012-12-111-4/+5
|\ \ | |/
| * Code style fixup: No need for double ((parenthesis)) and use {} on an if else.Gregory P. Smith2012-12-111-4/+5
* | null merge, no change needed in 3.3.Gregory P. Smith2012-12-110-0/+0
|\ \ | |/
| * Keep y a Py_hash_t instead of Py_uhash_t as it is compared with == -1 and theGregory P. Smith2012-12-111-1/+2
* | Fix the internals of our hash functions to used unsigned values during hashGregory P. Smith2012-12-114-12/+12
|\ \ | |/
| * Fix the internals of our hash functions to used unsigned values during hashGregory P. Smith2012-12-115-14/+14
* | 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2
|\ \ | |/
| * 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2