summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* #17076: Make copying of xattrs more permissive of missing FS supportHynek Schlawack2013-02-052-1/+18
| | | | Patch by Thomas Wouters.
* #16811: Fix folding of headers with no value in provisional policies.R David Murray2013-02-042-1/+46
|
* Issue #17089: Expat parser now correctly works with string input not only whenSerhiy Storchaka2013-02-041-36/+43
|\ | | | | | | | | an internal XML encoding is UTF-8 or US-ASCII. It now accepts bytes and strings larger than 2 GiB.
| * Issue #17089: Expat parser now correctly works with string input not only whenSerhiy Storchaka2013-02-041-36/+43
| | | | | | | | | | an internal XML encoding is UTF-8 or US-ASCII. It now accepts bytes and strings larger than 2 GiB.
| * 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
| | | | | | | | universal_newlines is true as on Windows.
* | Do not raise self.skipTest().Serhiy Storchaka2013-02-041-2/+1
|\ \ | |/ | | | | skipTest() already raises an exception.
| * Do not raise self.skipTest().Serhiy Storchaka2013-02-041-2/+1
| | | | | | | | skipTest() already raises an exception.
* | Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows.Serhiy Storchaka2013-02-041-1/+4
|\ \ | |/
| * 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
|\ \ | |/ | | | | parses nested mutating sequence.
| * Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-043-0/+65
| | | | | | | | parses nested mutating sequence.
* | fix find_library on Solaris (closes #5289)Benjamin Peterson2013-02-041-0/+29
| |
* | Way too many places create modules temporarily that never setBrett Cannon2013-02-031-6/+0
| | | | | | | | | | | | __loader__ for this test to succeed without a major changes. It also doesn't test the original issue of modules imported by Py_Initialize() having __loader__ set (the rest of the test covers that).
* | mergeBrett Cannon2013-02-031-0/+24
|\ \
| * \ Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
| |\ \ | | |/ | | | | | | | | | stream or a decoder produces data of an unexpected type (i.e. when io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec).
| | * Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
| | | | | | | | | | | | | | | stream or a decoder produces data of an unexpected type (i.e. when io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec).
* | | pyexpat/xml.parsers.expat create their errors and model modules fromBrett Cannon2013-02-031-0/+4
|/ / | | | | | | | | | | scratch. This means they do not set __loader__ by default. This is acceptable under importlib/PEP 302 definitions, so relax the test that was trying to apply this universally.
* | Refactor recently added bugfix into more testable code by using aGregory P. Smith2013-02-032-19/+48
| | | | | | | | | | method for windows file name sanitization. Splits the unittest up into several based on platform.
* | Issue #16698: merge from 3.2Ned Deily2013-02-021-0/+7
|\ \ | |/
| * Issue #16698: Skip posix test_getgroups when built with OS XNed Deily2013-02-021-0/+7
| | | | | | | | deployment target prior to 10.6.
| * Simplify code in HTTPResponse.read()Antoine Pitrou2013-02-021-4/+1
| |
* | Issue #15633: httplib.HTTPResponse is now mark closed when the server sends ↵Antoine Pitrou2013-02-022-8/+44
|\ \ | |/ | | | | less than the advertised Content-Length.
| * Issue #15633: httplib.HTTPResponse is now mark closed when the server sends ↵Antoine Pitrou2013-02-022-4/+24
| | | | | | | | less than the advertised Content-Length.
* | Back out fix for issue #13886; it introduced a new bug in interactive ↵Nadeem Vawda2013-02-021-7/+0
|\ \ | |/ | | | | readline use.
| * Back out fix for issue #13886; it introduced a new bug in interactive ↵Nadeem Vawda2013-02-021-7/+0
| | | | | | | | readline use.
* | Fix the test for issue #6972.Serhiy Storchaka2013-02-022-6/+21
|\ \ | |/ | | | | Remove trailing dots on Windows.
| * Fix the test for issue #6972.Serhiy Storchaka2013-02-022-6/+21
| | | | | | | | Remove trailing dots on Windows.
* | Fix tests for issue #11159.Serhiy Storchaka2013-02-021-0/+16
|\ \ | |/
| * 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
|\ \ | |/
| * Issue #11159: Add tests for testing SAX parser support of non-ascii file names.Serhiy Storchaka2013-02-021-0/+44
| |
* | mergeBrett Cannon2013-02-012-20/+93
|\ \
| * \ Fixes Issue #6972: The zipfile module no longer overwrites files outside ofGregory P. Smith2013-02-012-20/+93
| |\ \ | | |/ | | | | | | its destination path when extracting malicious zip files.
| | * Fixes Issue #6972: The zipfile module no longer overwrites files outside ofGregory P. Smith2013-02-012-20/+93
| | | | | | | | | | | | its destination path when extracting malicious zip files.
* | | Issue #17098: Be more stringent of setting __loader__ on early importedBrett Cannon2013-02-012-2/+11
| | | | | | | | | | | | modules. Also made test more rigorous.
* | | Add a test for fix of issue #17098Brett Cannon2013-02-011-1/+12
|/ /
* | Issue #17098: Make sure every module has __loader__ defined.Brett Cannon2013-02-011-3/+5
| | | | | | | | Thanks to Thomas Heller for the bug report.
* | Issue #17041: Fix doctesting when Python is configured with theSerhiy Storchaka2013-01-312-2/+4
|\ \ | |/ | | | | --without-doc-strings.
| * Issue #17041: Fix doctesting when Python is configured with theSerhiy Storchaka2013-01-312-2/+4
| | | | | | | | --without-doc-strings.
* | Added test to ensure localized calendar methods return strings and not bytes.Serhiy Storchaka2013-01-311-3/+13
|\ \ | |/
| * 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
|\ \ | |/ | | | | | | incomplete "End of Central Directory" record. Original patch by Guilherme Polo and Alan McIntyre.
| * Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with anSerhiy Storchaka2013-01-312-6/+33
| | | | | | | | | | incomplete "End of Central Directory" record. Original patch by Guilherme Polo and Alan McIntyre.
| * Issue #13590: OS X Xcode 4 - improve support for universal extension modulesNed Deily2013-01-319-369/+847
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In particular, fix extension module build failures when trying to use 32-bit-only installer Pythons on systems with Xcode 4 (currently OS X 10.8, 10.7, and optionally 10.6). * Backport 3.3.0 fixes to 3.2 branch (for release in 3.2.4) * Since Xcode 4 removes ppc support, extension module builds now check for ppc compiler support and by default remove ppc and ppc64 archs when they are not available. * Extension module builds now revert to using system installed headers and libs (/usr and /System/Library) if the SDK used to build the interpreter is not installed or has moved. * Try to avoid building extension modules with deprecated and problematic Apple llvm-gcc compiler. If original compiler is not available, use clang instead by default.
* | MergeMichael Foord2013-01-292-1/+47
|\ \ | |/
| * Closes issue 15505. unittest.installHandler and non-callable signal handlers.Michael Foord2013-01-292-1/+47
| |
* | Issue #17071: Signature.bind() now works when one of the keyword arguments ↵Antoine Pitrou2013-01-292-4/+14
| | | | | | | | is named ``self``.
* | Issue #12004: Fix an internal error in PyZipFile when writing an invalidSerhiy Storchaka2013-01-292-2/+26
|\ \ | |/ | | | | Python file. Patch by Ben Morgan.
| * Issue #12004: Fix an internal error in PyZipFile when writing an invalidSerhiy Storchaka2013-01-292-2/+25
| | | | | | | | Python file. Patch by Ben Morgan.