summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Issue #11461: Fix the incremental UTF-16 decoder. Original patch bySerhiy Storchaka2013-01-081-8/+40
|\
| * Issue #11461: Fix the incremental UTF-16 decoder. Original patch bySerhiy Storchaka2013-01-081-8/+40
| |\
| | * Issue #11461: Fix the incremental UTF-16 decoder. Original patch bySerhiy Storchaka2013-01-081-8/+40
* | | Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-1/+4
|\ \ \ | |/ /
| * | Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-1/+4
| |\ \ | | |/
| | * Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-1/+4
| | * issue 10527: fix missing importGiampaolo Rodola'2013-01-031-0/+1
* | | Issue #16854: Fix regrtest.usage() regression introduced in 6e2e5adc0400.Chris Jerdonek2013-01-082-26/+34
* | | Issue #15972: Fix error messages when os functions expecting a file name orSerhiy Storchaka2013-01-071-0/+24
|\ \ \ | |/ /
| * | Issue #15972: Fix error messages when os functions expecting a file name orSerhiy Storchaka2013-01-071-0/+24
* | | Issue #8109: The ssl module now has support for server-side SNI, thanks to a ...Antoine Pitrou2013-01-057-37/+557
* | | The get() and iter() are now able to accept keyword arguments.Eli Bendersky2013-01-051-0/+10
|\ \ \ | |/ /
| * | The get() and iter() are now able to accept keyword arguments.Eli Bendersky2013-01-051-0/+10
| * | (Merge 3.2) Issue #16218, #16414, #16444: Backport FS_NONASCII,Victor Stinner2013-01-033-15/+18
| |\ \ | | |/
| | * Issue #16218, #16414, #16444: Backport FS_NONASCII, TESTFN_UNDECODABLE,Victor Stinner2013-01-035-7/+122
* | | Issue #16860: In tempfile, use O_CLOEXEC when available to set theCharles-François Natali2013-01-041-0/+2
* | | #16009: JSON error messages now provide more information. Patch by Serhiy St...Ezio Melotti2013-01-033-9/+86
* | | Issue #16828: Fix error incorrectly raised by bz2.compress(b'') and bz2.BZ2Co...Nadeem Vawda2013-01-021-0/+15
|\ \ \ | |/ /
| * | Issue #16828: Fix error incorrectly raised by bz2.compress('').Nadeem Vawda2013-01-021-0/+15
| |\ \ | | |/
| | * Issue #16828: Fix error incorrectly raised by bz2.compress('').Nadeem Vawda2013-01-021-0/+15
* | | Issue #16833: In http.client.HTTPConnection, do not concatenate the request h...Antoine Pitrou2013-01-022-2/+37
* | | #16748: merge with 3.3.Ezio Melotti2013-01-021-27/+8
|\ \ \ | |/ /
| * | #16748: test_heapq now works with unittest test discovery.Ezio Melotti2013-01-021-27/+8
* | | Merge headsSerhiy Storchaka2013-01-022-1/+46
|\ \ \ | |/ /
| * | Merge headsSerhiy Storchaka2013-01-022-1/+46
| |\ \ | | |/
| | * Merge headsSerhiy Storchaka2013-01-022-1/+46
| | |\
| | | * Issue #16541: tk_setPalette() now works with keyword arguments.Serhiy Storchaka2013-01-012-1/+46
| | * | configparser: preserve section order when using `__setitem__` (issue #16820)Łukasz Langa2013-01-012-1/+28
* | | | (Merge 3.3) Issue #9644: Add a test on os.statvfs() for the PEP 383Victor Stinner2013-01-011-0/+9
|\ \ \ \ | |/ / /
| * | | Issue #9644: Add a test on os.statvfs() for the PEP 383Victor Stinner2013-01-011-0/+9
| |\ \ \ | | |/ /
| | * | Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encodingVictor Stinner2013-01-011-0/+9
| | |/
* | | Merged section order preservation fix when using `__setitem__` (issue #16820)Łukasz Langa2013-01-012-2/+6
|\ \ \ | |/ /
| * | configparser: preserve section order when using `__setitem__` (issue #16820)Łukasz Langa2013-01-012-2/+6
* | | Issue #16819: IDLE method completion now correctly works for bytes literals.Serhiy Storchaka2013-01-011-0/+5
|\ \ \ | |/ /
| * | Issue #16819: IDLE method completion now correctly works for bytes literals.Serhiy Storchaka2013-01-011-0/+5
| |\ \ | | |/
| | * Issue #16819: IDLE method completion now correctly works for bytes literals.Serhiy Storchaka2013-01-011-0/+5
* | | Issue #16787: Increase asyncore and asynchat default output buffers size, toCharles-François Natali2013-01-012-3/+3
* | | Fix overlooked licence text.Richard Oudkerk2013-01-013-58/+2
* | | Fix issue 10527: make multiprocessing use poll() instead of select() if avail...Giampaolo Rodola'2012-12-312-2/+25
|\ \ \ | |/ /
| * | Fix issue 10527: make multiprocessing use poll() instead of select() if avail...Giampaolo Rodola'2012-12-312-2/+25
| |\ \ | | |/
| | * Fix issue 10527: make multiprocessing use poll() instead of select() if avail...Giampaolo Rodola'2012-12-312-0/+22
* | | Merged `parser['DEFAULT'].__setitem__` fix (issue #16820) from 3.3.Łukasz Langa2012-12-312-1/+32
|\ \ \ | |/ /
| * | Fixes `__setitem__` on parser['DEFAULT'] reported in issue #16820.Łukasz Langa2012-12-312-1/+32
* | | Issue #16824: Fix a failure guard in the never reached in the normal test exe...Serhiy Storchaka2012-12-311-1/+1
|\ \ \ | |/ /
| * | Issue #16824: Fix a failure guard in the never reached in the normal test exe...Serhiy Storchaka2012-12-311-1/+1
* | | Merged `parser.clean()` fix (issue #16820) from 3.2 through 3.3.Łukasz Langa2012-12-312-0/+40
|\ \ \ | |/ /
| * | Merged `parser.clean()` fix (issue #16820) from 3.2.Łukasz Langa2012-12-312-0/+40
| |\ \ | | |/
| | * Fixes `parser.clean()` reported in issue #16820.Łukasz Langa2012-12-312-0/+40
* | | Merged fix for #15803 from 3.2 through 3.3Łukasz Langa2012-12-311-4/+3
|\ \ \ | |/ /
| * | Merged fix for #15803 from 3.2Łukasz Langa2012-12-311-4/+3
| |\ \ | | |/