summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).Serhiy Storchaka2013-02-182-2/+22
* Fix issue #13169: Reimport MAXREPEAT into sre_constants.py.Serhiy Storchaka2013-02-181-0/+2
* Issue #9669: Protect re against infinite loops on zero-width matching inSerhiy Storchaka2013-02-161-0/+9
* Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-164-7/+41
* Issue #16743: Fix mmap overflow check on 32 bit WindowsRichard Oudkerk2013-02-131-0/+7
* Issue #5308: Raise ValueError when marshalling too large object (a sequenceSerhiy Storchaka2013-02-131-7/+54
* Fix for issue #16800: Use buffered write to handle EINTR.Serhiy Storchaka2013-02-121-2/+2
* Issue #16800: tempfile.gettempdir() no longer left temporary files whenSerhiy Storchaka2013-02-122-7/+52
* Issue #4591: Uid and gid values larger than 2**31 are supported now.Serhiy Storchaka2013-02-122-6/+32
* #17171: fix email.encoders.encode_7or8bit when applied to binary data.R David Murray2013-02-112-2/+21
* #17064: fix sporadic permission errors in test_mailbox on windows.R David Murray2013-02-111-8/+8
* Correction to issue 17052 fixMichael Foord2013-02-112-2/+2
* Issue 17502: unittest discovery should use self.testLoaderMichael Foord2013-02-112-1/+18
* Issue #17141: random.vonmisesvariate() no more hangs for large kappas.Serhiy Storchaka2013-02-102-10/+38
* Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxErrorSerhiy Storchaka2013-02-101-0/+36
* Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*ma...Mark Dickinson2013-02-102-2/+16
* Fix a test for SpooledTemporaryFile (added in issue #10355).Serhiy Storchaka2013-02-101-1/+1
* Issue #1470548: XMLGenerator now works with binary output streams.Serhiy Storchaka2013-02-102-92/+190
* Issue #6975: os.path.realpath() now correctly resolves multiple nested symlin...Serhiy Storchaka2013-02-102-41/+104
* #16564: Fix regression in use of encoders.encode_noop with binary data.R David Murray2013-02-093-0/+25
* Issue #10355: SpooledTemporaryFile properties now work for unrolled files.Serhiy Storchaka2013-02-092-10/+59
* Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation.Serhiy Storchaka2013-02-091-2/+2
* Issue #16686: Fixed a lot of bugs in audioop module.Serhiy Storchaka2013-02-091-127/+272
* Fix accidental non-breakable spaces (U+00A0).Serhiy Storchaka2013-02-081-1/+1
* Issue #17073: Fix some integer overflows in sqlite3 module.Serhiy Storchaka2013-02-072-12/+67
* Issue #17118: Add new tests for testing Python-Tcl interaction.Serhiy Storchaka2013-02-071-0/+20
* Issue #17114: IDLE now uses non-strict config parser.Serhiy Storchaka2013-02-071-1/+1
* Fix test_from_dll* in test_returnfuncptrs.py.Serhiy Storchaka2013-02-071-5/+4
* #17142: fix apparent copy and paste error in test_all.R David Murray2013-02-061-1/+1
* Issue #16723: httplib.HTTPResponse no longer marked closed when the connectionSerhiy Storchaka2013-02-062-15/+37
* #16948: Fix quopri encoding of non-latin1 character sets.R David Murray2013-02-052-0/+34
* Issue #17089: Expat parser now correctly works with string input not only whenSerhiy Storchaka2013-02-041-36/+43
* Fix test_tools hangs on Windows. Patch by Jeremy Kloth.Serhiy Storchaka2013-02-041-1/+1
* Issue #16903: Popen.communicate() on Unix now accepts strings whenSerhiy Storchaka2013-02-042-2/+33
* Do not raise self.skipTest().Serhiy Storchaka2013-02-041-2/+1
* Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows.Serhiy Storchaka2013-02-041-1/+4
* Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-043-0/+65
* Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
* Issue #16698: Skip posix test_getgroups when built with OS XNed Deily2013-02-021-0/+7
* Simplify code in HTTPResponse.read()Antoine Pitrou2013-02-021-4/+1
* Issue #15633: httplib.HTTPResponse is now mark closed when the server sends l...Antoine Pitrou2013-02-022-4/+24
* Back out fix for issue #13886; it introduced a new bug in interactive readlin...Nadeem Vawda2013-02-021-7/+0
* Fix the test for issue #6972.Serhiy Storchaka2013-02-022-6/+21
* Fix tests for issue #11159.Serhiy Storchaka2013-02-021-0/+16
* Issue #11159: Add tests for testing SAX parser support of non-ascii file names.Serhiy Storchaka2013-02-021-0/+44
* Fixes Issue #6972: The zipfile module no longer overwrites files outside ofGregory P. Smith2013-02-012-20/+93
* Issue #17041: Fix doctesting when Python is configured with theSerhiy Storchaka2013-01-312-2/+4
* Added test to ensure localized calendar methods return strings and not bytes.Serhiy Storchaka2013-01-311-3/+13
* Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with anSerhiy Storchaka2013-01-312-6/+33
* Issue #13590: OS X Xcode 4 - improve support for universal extension modulesNed Deily2013-01-319-369/+847