summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Remove inline comment, no longer supported by configparser.Éric Araujo2011-10-041-1/+1
| | | | (Deleted rather than moved because multilib implementations vary.)
* Also fix pickletesterAntoine Pitrou2011-10-041-3/+3
|
* An embarassing litle typoAntoine Pitrou2011-10-041-1/+1
|
* When expandtabs() would be a no-op, don't create a duplicate stringAntoine Pitrou2011-10-041-0/+4
|
* Migrate test_bigmem to PEP 393-compliant size calculations (hopefully)Antoine Pitrou2011-10-041-33/+21
|
* Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-0/+8
|\ | | | | | | | | if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John OConnor.
| * Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-0/+8
| | | | | | | | | | if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John O'Connor.
* | Collect stats a bit more oftenAntoine Pitrou2011-10-041-1/+1
| |
* | Use the faulthandler module's infrastructure to write a GIL-lessAntoine Pitrou2011-10-041-43/+66
| | | | | | | | memory watchdog for timely stats collection.
* | Fix test failureAntoine Pitrou2011-10-041-2/+2
| |
* | Start fixing test_bigmem:Antoine Pitrou2011-10-047-173/+207
|\ \ | |/ | | | | | | - bigmemtest is replaced by precisionbigmemtest - add a poor man's watchdog thread to print memory consumption
| * Start fixing test_bigmem:Antoine Pitrou2011-10-046-164/+203
| | | | | | | | | | - bigmemtest is replaced by precisionbigmemtest - add a poor man's watchdog thread to print memory consumption
* | Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-042-9/+30
|\ \ | |/ | | | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
| * Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-042-9/+30
| | | | | | | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
* | Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-041-0/+12
|\ \ | |/
| * Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-041-0/+12
| |
* | Issue #13001: Fix test_socket.testRecvmsgTrunc failure on FreeBSD < 8, whichCharles-François Natali2011-10-031-0/+4
| | | | | | | | doesn't always set the MSG_TRUNC flag when a truncated datagram is received.
* | Introduce support.requires_freebsd_version decorator.Charles-François Natali2011-10-031-12/+28
| |
* | Fix ResourceWarnings in the TIPC socket tests.Antoine Pitrou2011-10-021-2/+7
|\ \ | |/
| * Fix ResourceWarnings in the TIPC socket tests.Antoine Pitrou2011-10-021-2/+7
| |
* | Issue #13084: Fix a test_signal failure: the delivery order is only defined forCharles-François Natali2011-10-021-8/+6
| | | | | | | | real-time signals.
* | merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-012-2/+11
|\ \ | |/
| * #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-012-2/+11
| | | | | | | | Patch by Dan Kenigsberg.
* | Issue #13034: When decoding some SSL certificates, the subjectAltName ↵Antoine Pitrou2011-10-012-0/+57
|\ \ | |/ | | | | extension could be unreported.
| * Issue #13034: When decoding some SSL certificates, the subjectAltName ↵Antoine Pitrou2011-10-012-0/+57
| | | | | | | | extension could be unreported.
* | Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_tVictor Stinner2011-10-011-4/+7
| | | | | | | | Rewrite unicode_subtype_new(): allocate directly the right type.
* | remove "fast-path" for (i)adding stringsBenjamin Peterson2011-10-011-0/+12
| | | | | | | | | | | | These were just an artifact of the old unicode concatenation hack and likely just penalized other kinds of adding. Also, this fixes __(i)add__ on string subclasses.
* | array module uses the new Unicode APIVictor Stinner2011-09-291-2/+6
| | | | | | | | | | * Use Py_UCS4* buffer instead of Py_UNICODE* * Use "I" or "L" format, instead of "u" format
* | Fix test_codeccallbacks for Windows: check size of wchar_t, not sys.maxunicodeVictor Stinner2011-09-291-4/+6
| |
* | Fix test_codecs for Windows: check size of wchar_t, not sys.maxunicodeVictor Stinner2011-09-291-41/+44
| |
* | Re-enable test.Martin v. Löwis2011-09-291-4/+1
| |
* | Remove now useless redefinition of chr/ord for narrow builds in ↵Ezio Melotti2011-09-291-15/+0
| | | | | | | | test_multibytecodec_support.py.
* | Move UCS4-specific tests with the "normal" tests.Ezio Melotti2011-09-291-8/+4
| |
* | #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-281-0/+1
| |
* | merge headsBenjamin Peterson2011-09-2816-39/+39
|\ \
| * | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-2816-39/+39
| | |
* | | this isn't fixed on windows yet...Benjamin Peterson2011-09-281-1/+4
|/ /
* | this test works as expected nowBenjamin Peterson2011-09-281-6/+1
| |
* | revert unintended changeBenjamin Peterson2011-09-281-1/+4
| |
* | don't check that the first character is XID_ContinueBenjamin Peterson2011-09-281-4/+1
| | | | | | | | Current, XID_Continue is a superset of XID_Start, but that may sometime change.
* | test_ctypes: Windows is no more a special caseVictor Stinner2011-09-281-6/+3
| |
* | Fix struct sizes. Drop -1, since the resulting string was actually the ↵Martin v. Löwis2011-09-281-6/+7
| | | | | | | | | | | | largest one that could be allocated.
* | Use compile() instead of eval().Martin v. Löwis2011-09-281-6/+4
| |
* | Use eval instead of codecs.lookup to trigger UTF-8 generation.Martin v. Löwis2011-09-281-6/+4
| |
* | Implement PEP 393.Martin v. Löwis2011-09-288-36/+79
| |
* | Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python.Charles-François Natali2011-09-241-3/+18
| |
* | Issue #13012: Allow 'keepends' to be passed as a keyword argument in ↵Mark Dickinson2011-09-243-6/+20
| | | | | | | | str.splitlines, bytes.splitlines and bytearray.splitlines.
* | Merge 3.2: Issue #7732: Don't open a directory as a file anymore whileVictor Stinner2011-09-231-0/+9
|\ \ | |/ | | | | | | importing a module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
| * Issue #7732: Don't open a directory as a file anymore while importing aVictor Stinner2011-09-231-0/+9
| | | | | | | | | | module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
* | Merge 3.2: Issue #12931: Add a test with Unicode URI to test_xmlrpcVictor Stinner2011-09-221-0/+4
|\ \ | |/