summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #14063: fix test_importlib failure under OS X case-insensitive filesystemsAntoine Pitrou2012-02-201-11/+15
| | | | (regression)
* put docstrings on functionsBenjamin Peterson2012-02-201-2/+2
|
* Merged upstream changes.Vinay Sajip2012-02-201-0/+2
|\
| * Fix use of assertRaises following c760bd844222 (spotted by Alex Gaynor).Antoine Pitrou2012-02-201-0/+2
| |
* | Merged upstream changes.Vinay Sajip2012-02-2010-83/+147
|\ \ | |/
| * Issue #14040: Remove rarely used file name suffixes for C extensions (under ↵Antoine Pitrou2012-02-207-10/+17
| | | | | | | | | | | | POSIX mainly). This will improve import performance a bit (especially under importlib).
| * Issue #13641: Decoding functions in the base64 module now accept ASCII-only ↵Antoine Pitrou2012-02-204-73/+130
| | | | | | | | | | | | unicode strings. Patch by Catalin Iacob.
* | Merged documentation update from 3.2.Vinay Sajip2012-02-201-6/+8
|\ \ | |/ |/|
| * logging: clarified documentation for Handler.handleError.Vinay Sajip2012-02-201-6/+8
| |
* | merge headsBenjamin Peterson2012-02-201-3/+4
|\ \
| * | _relax_case -> _make_relax_caseAntoine Pitrou2012-02-201-3/+4
| | |
* | | write versionaddedBenjamin Peterson2012-02-201-0/+4
|/ /
* | check for NULL to fix segfaultBenjamin Peterson2012-02-201-1/+1
| |
* | use new generic __dict__ descriptor implementationsBenjamin Peterson2012-02-204-141/+6
| |
* | add generic implementation of a __dict__ descriptor for C typesBenjamin Peterson2012-02-206-19/+64
| |
* | MergeAntoine Pitrou2012-02-201-15/+16
|\ \
| * \ Merge 3.2Éric Araujo2012-02-201-15/+16
| |\ \ | | |/
| | * Add missing “::” markup.Éric Araujo2012-02-201-15/+16
| | | | | | | | | | | | Also wrap two looong lines.
* | | Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new ↵Antoine Pitrou2012-02-207-50/+90
|/ / | | | | | | | | | | importlib.invalidate_caches() function. importlib is now often faster than imp.find_module() at finding modules.
* | Fix a failing importlib test under Windows.Brett Cannon2012-02-201-1/+2
| | | | | | | | Closes issue #14054.
* | fix test now that staticmethod and classmethod are biggerBenjamin Peterson2012-02-201-2/+2
| |
* | Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay.Antoine Pitrou2012-02-192-1/+7
| |
* | Create _attr/_attrNS lazily.Martin v. Löwis2012-02-192-9/+34
| |
* | Use __slots__ throughout instead of __dict__, to reduce the memory usage.Martin v. Löwis2012-02-192-141/+114
| |
* | Issue #13605: merge with 3.2Sandro Tosi2012-02-191-1/+1
|\ \ | |/
| * Issue #13605: use print() in argparse nargs exampleSandro Tosi2012-02-191-1/+1
| |
* | initialize __dict__ if neededBenjamin Peterson2012-02-192-6/+14
| |
* | merge with 3.2Sandro Tosi2012-02-191-3/+3
|\ \ | |/
| * don't split 'Hye-Shik Chang' name; thanks to Sergey from docs@Sandro Tosi2012-02-191-3/+3
| |
* | merge with 3.2Sandro Tosi2012-02-191-1/+1
|\ \ | |/
| * Indent 'File' in memoryview example, so it is correctly highlightedSandro Tosi2012-02-191-1/+1
| |
* | use defaultsBenjamin Peterson2012-02-191-3/+3
| |
* | merge 3.2Benjamin Peterson2012-02-191-3/+1
|\ \ | |/
| * use Py_CLEARBenjamin Peterson2012-02-191-3/+1
| |
* | allow arbitrary attributes on classmethod and staticmethod (closes #14051)Benjamin Peterson2012-02-193-3/+43
| |
* | MERGE: Test for issue #13500Jesus Cea2012-02-190-0/+0
|\ \ | |/
| * Test for issue #13500Jesus Cea2012-02-191-0/+29
| |
* | Test for issue #13500Jesus Cea2012-02-191-0/+29
| |
* | merge with 3.2Sandro Tosi2012-02-181-1/+1
|\ \ | |/
| * fix error in memoryview example; thanks to kan lianlian from docs@Sandro Tosi2012-02-181-1/+1
| |
* | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-183-7/+15
|\ \ | |/ | | | | upon malformed POST request.
| * Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-183-7/+15
| |\ | | | | | | | | | upon malformed POST request.
| | * Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-182-1/+7
| | | | | | | | | | | | upon malformed POST request.
* | | Merge with 3.2 closes 14023Terry Jan Reedy2012-02-181-5/+5
|\ \ \ | |/ /
| * | Issue 14023 Revert edit to 2.7 version. (I suspect edit is from when we thoughtTerry Jan Reedy2012-02-181-5/+5
| | | | | | | | | | | | to to makes bytes mutable, before deciding to add bytearrays.)
* | | #14020: merge with 3.2.Ezio Melotti2012-02-181-67/+205
|\ \ \ | |/ /
| * | #14020: improve HTMLParser documentation.Ezio Melotti2012-02-181-67/+205
| | |
* | | Merge branch '3.2'Petri Lehtinen2012-02-172-0/+3
|\ \ \ | |/ / | | | | | | Closes #11689.
| * | Fix a variable scoping error in an sqlite3 testPetri Lehtinen2012-02-172-0/+3
| | | | | | | | | | | | Closes #11689.
* | | Try to really fix compilation failures of the _ssl module under very old ↵Antoine Pitrou2012-02-172-1/+11
| | | | | | | | | | | | OpenSSLs.