summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue ↵Antoine Pitrou2012-12-161-1/+8
| | | | | | | | | | | | #13876) - probably not Python-related.
* | | Null mergeAntoine Pitrou2012-12-160-0/+0
|\ \ \ | |/ /
| * | Fix ResourceWarnings in test_ptyAntoine Pitrou2012-12-161-3/+5
| | |
* | | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-162-6/+29
|\ \ \ | |/ /
| * | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-162-6/+29
| | |
* | | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-163-1/+21
|\ \ \ | |/ / | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
| * | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-163-1/+21
| | | | | | | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
* | | #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-163-2/+11
|\ \ \ | |/ / | | | | | | Patch by Sebastian Kreft.
| * | #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-163-1/+10
| | | | | | | | | | | | Patch by Sebastian Kreft.
* | | Issue #15783: Except for the number methods, the C version of decimal nowStefan Krah2012-12-158-233/+625
| | | | | | | | | | | | | | | supports all None default values present in decimal.py. These values were largely undocumented.
* | | Use OSError instead of os.error in the docs.Andrew Svetlov2012-12-152-5/+5
| | |
* | | merge 3.2Benjamin Peterson2012-12-151-2/+0
|\ \ \ | |/ /
| * | remove dead codeBenjamin Peterson2012-12-151-2/+0
| | |
* | | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-154-2/+42
|\ \ \ | |/ / | | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
| * | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-154-1/+23
| | | | | | | | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
* | | #16683: merge with 3.2.Ezio Melotti2012-12-141-6/+6
|\ \ \ | |/ /
| * | #16683: restore alphabetical order in audioop docs. Patch by Serhiy Storchaka.Ezio Melotti2012-12-141-6/+6
| | |
* | | #16681: merge with 3.2.Ezio Melotti2012-12-142-2/+2
|\ \ \ | |/ /
| * | #16681: use "bidirectional class" instead of "bidirectional category" in the ↵Ezio Melotti2012-12-141-1/+1
| | | | | | | | | | | | docstring too.
| * | #16681: use "bidirectional class" instead of "bidirectional category".Ezio Melotti2012-12-141-1/+1
| | |
* | | Issue #16661: Fix the os.getgrouplist() test by not assuming that itRoss Lagerwall2012-12-132-10/+6
| | | | | | | | | | | | gives the same output as "id -G".
* | | Cross compiling needs host and build settings. configure no longerChristian Heimes2012-12-123-0/+7
| | | | | | | | | | | | creates a broken PYTHON_FOR_BUILD variable when --build is missing.
* | | Just to be sure, initialize with a copy of the compiler's lib and inc dirs.Christian Heimes2012-12-121-2/+2
| | |
* | | Fix cross compiling issue in setup.py, ensure that lib_dirs and inc_dirs areChristian Heimes2012-12-122-0/+6
| | | | | | | | | | | | defined in cross compiling mode, too.
* | | Code style fixup: No need for double ((parenthesis)) and use {} on an if else.Gregory P. Smith2012-12-111-4/+5
|\ \ \ | |/ /
| * | Code style fixup: No need for double ((parenthesis)) and use {} on an if else.Gregory P. Smith2012-12-111-4/+5
| | |
* | | null merge, no change needed in 3.3.Gregory P. Smith2012-12-110-0/+0
|\ \ \ | |/ /
| * | Keep y a Py_hash_t instead of Py_uhash_t as it is compared with == -1 and theGregory P. Smith2012-12-111-1/+2
| | | | | | | | | | | | | | | | | | | | | compiler logic will do the right thing with just x as a Py_uhash_t. This matches what was already done in the 3.3 version. cleanup only - no functionality or hash values change.
* | | Fix the internals of our hash functions to used unsigned values during hashGregory P. Smith2012-12-114-12/+12
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | computation as the overflow behavior of signed integers is undefined. NOTE: This change is smaller compared to 3.2 as much of this cleanup had already been done. I added the comment that my change in 3.2 added so that the code would match up. Otherwise this just adds or synchronizes appropriate UL designations on some constants to be pedantic. In practice we require compiling everything with -fwrapv which forces overflow to be defined as twos compliment but this keeps the code cleaner for checkers or in the case where someone has compiled it without -fwrapv or their compiler's equivalent. Found by Clang trunk's Undefined Behavior Sanitizer (UBSan). Cleanup only - no functionality or hash values change.
| * | Fix the internals of our hash functions to used unsigned values during hashGregory P. Smith2012-12-115-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | computation as the overflow behavior of signed integers is undefined. In practice we require compiling everything with -fwrapv which forces overflow to be defined as twos compliment but this keeps the code cleaner for checkers or in the case where someone has compiled it without -fwrapv or their compiler's equivalent. Found by Clang trunk's Undefined Behavior Sanitizer (UBSan). Cleanup only - no functionality or hash values change.
* | | 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2
|\ \ \ | |/ / | | | | | | Found by Clang trunk's Undefined-Behavior Sanitizer. [more to come]
| * | 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2
| | | | | | | | | | | | Found by Clang trunk's Undefined-Behavior Sanitizer. [more to come]
* | | #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-7/+7
|\ \ \ | |/ / | | | | | | | | | | | | Turns out, the snakebite bots behave also their peculiarities. I'm really not proud of this stream of commits. :(
| * | #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-8/+7
| | | | | | | | | | | | | | | | | | Turns out, the snakebite bots behave also their peculiarities. I'm really not proud of this stream of commits. :(
* | | #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-1/+1
|\ \ \ | |/ / | | | | | | The Windows buildbots seem to be unable to agree whether they need them or not.
| * | #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-1/+1
| | | | | | | | | | | | The Windows buildbots seem to be unable to agree whether they need them or not.
* | | #15872: More shutil test fixes for WindowsHynek Schlawack2012-12-101-2/+2
|\ \ \ | |/ /
| * | #15872: More shutil test fixes for WindowsHynek Schlawack2012-12-101-2/+2
| | |
* | | #15872: Fix shutil.rmtree error tests for WindowsHynek Schlawack2012-12-101-1/+5
|\ \ \ | |/ /
| * | #15872: Fix shutil.rmtree error tests for WindowsHynek Schlawack2012-12-101-1/+5
| | |
* | | #15872: Fix 3.3 regression introduced by the new fd-based shutil.rmtreeHynek Schlawack2012-12-103-10/+62
|\ \ \ | |/ / | | | | | | | | | | | | It caused rmtree to not ignore certain errors when ignore_errors was set. Patch by Alessandro Moura and Serhiy Storchaka.
| * | #15872: Add tests for a 3.3 regression in the new fd-based shutil.rmtreeHynek Schlawack2012-12-102-0/+50
| | | | | | | | | | | | | | | It cause shutil.rmtree not ignore all errors. Also add a test ensuring that rmtree fails when being called on a symlink. Patch by Serhiy Storchaka.
* | | Issue #16629: Merge IDLE test fix from 3.2.Chris Jerdonek2012-12-101-1/+1
|\ \ \ | |/ /
| * | Issue #16629: Fix IDLE idlelib.CallTips test. Patch by Roger Serwy.Chris Jerdonek2012-12-101-1/+1
| | | | | | | | | | | | This commit updates a test broken by the change made for issue #14783.
* | | Issue #16582: use int exit code in tkinter._exitAndrew Svetlov2012-12-091-1/+5
|\ \ \ | |/ /
| * | Issue #16582: use int exit code in tkinter._exitAndrew Svetlov2012-12-091-1/+5
| | |
* | | merge from 3.2 - reason attribute for urllib.error.HTTPErrorSenthil Kumaran2012-12-091-0/+4
|\ \ \ | |/ /
| * | Fix issue13211 - Document the reason attribute for urllib.error.HTTPErrorSenthil Kumaran2012-12-091-0/+4
| | |
* | | merge 3.2Benjamin Peterson2012-12-090-0/+0
|\ \ \ | |/ /
| * | merge 3.1Benjamin Peterson2012-12-090-0/+0
| |\ \ | | |/