Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue ↵ | Antoine Pitrou | 2012-12-16 | 1 | -1/+8 | |
| | | | | | | | | | | | | #13876) - probably not Python-related. | |||||
* | | | Null merge | Antoine Pitrou | 2012-12-16 | 0 | -0/+0 | |
|\ \ \ | |/ / | ||||||
| * | | Fix ResourceWarnings in test_pty | Antoine Pitrou | 2012-12-16 | 1 | -3/+5 | |
| | | | ||||||
* | | | Issue #16696: fix comparison between bytes and string. Also, improve glob tests. | Antoine Pitrou | 2012-12-16 | 2 | -6/+29 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #16696: fix comparison between bytes and string. Also, improve glob tests. | Antoine Pitrou | 2012-12-16 | 2 | -6/+29 | |
| | | | ||||||
* | | | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵ | Antoine Pitrou | 2012-12-16 | 3 | -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 Pitrou | 2012-12-16 | 3 | -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 "."-entries | Hynek Schlawack | 2012-12-16 | 3 | -2/+11 | |
|\ \ \ | |/ / | | | | | | | Patch by Sebastian Kreft. | |||||
| * | | #16664: Add regression tests for glob's behaviour concerning "."-entries | Hynek Schlawack | 2012-12-16 | 3 | -1/+10 | |
| | | | | | | | | | | | | Patch by Sebastian Kreft. | |||||
* | | | Issue #15783: Except for the number methods, the C version of decimal now | Stefan Krah | 2012-12-15 | 8 | -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 Svetlov | 2012-12-15 | 2 | -5/+5 | |
| | | | ||||||
* | | | merge 3.2 | Benjamin Peterson | 2012-12-15 | 1 | -2/+0 | |
|\ \ \ | |/ / | ||||||
| * | | remove dead code | Benjamin Peterson | 2012-12-15 | 1 | -2/+0 | |
| | | | ||||||
* | | | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵ | Antoine Pitrou | 2012-12-15 | 4 | -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 Pitrou | 2012-12-15 | 4 | -1/+23 | |
| | | | | | | | | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein. | |||||
* | | | #16683: merge with 3.2. | Ezio Melotti | 2012-12-14 | 1 | -6/+6 | |
|\ \ \ | |/ / | ||||||
| * | | #16683: restore alphabetical order in audioop docs. Patch by Serhiy Storchaka. | Ezio Melotti | 2012-12-14 | 1 | -6/+6 | |
| | | | ||||||
* | | | #16681: merge with 3.2. | Ezio Melotti | 2012-12-14 | 2 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | #16681: use "bidirectional class" instead of "bidirectional category" in the ↵ | Ezio Melotti | 2012-12-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | docstring too. | |||||
| * | | #16681: use "bidirectional class" instead of "bidirectional category". | Ezio Melotti | 2012-12-14 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #16661: Fix the os.getgrouplist() test by not assuming that it | Ross Lagerwall | 2012-12-13 | 2 | -10/+6 | |
| | | | | | | | | | | | | gives the same output as "id -G". | |||||
* | | | Cross compiling needs host and build settings. configure no longer | Christian Heimes | 2012-12-12 | 3 | -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 Heimes | 2012-12-12 | 1 | -2/+2 | |
| | | | ||||||
* | | | Fix cross compiling issue in setup.py, ensure that lib_dirs and inc_dirs are | Christian Heimes | 2012-12-12 | 2 | -0/+6 | |
| | | | | | | | | | | | | defined in cross compiling mode, too. | |||||
* | | | Code style fixup: No need for double ((parenthesis)) and use {} on an if else. | Gregory P. Smith | 2012-12-11 | 1 | -4/+5 | |
|\ \ \ | |/ / | ||||||
| * | | Code style fixup: No need for double ((parenthesis)) and use {} on an if else. | Gregory P. Smith | 2012-12-11 | 1 | -4/+5 | |
| | | | ||||||
* | | | null merge, no change needed in 3.3. | Gregory P. Smith | 2012-12-11 | 0 | -0/+0 | |
|\ \ \ | |/ / | ||||||
| * | | Keep y a Py_hash_t instead of Py_uhash_t as it is compared with == -1 and the | Gregory P. Smith | 2012-12-11 | 1 | -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 hash | Gregory P. Smith | 2012-12-11 | 4 | -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 hash | Gregory P. Smith | 2012-12-11 | 5 | -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. Smith | 2012-12-11 | 1 | -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. Smith | 2012-12-11 | 1 | -2/+2 | |
| | | | | | | | | | | | | Found by Clang trunk's Undefined-Behavior Sanitizer. [more to come] | |||||
* | | | #15872: Some more Windows related tuning to shutil.rmtree tests | Hynek Schlawack | 2012-12-10 | 1 | -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 tests | Hynek Schlawack | 2012-12-10 | 1 | -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 case | Hynek Schlawack | 2012-12-10 | 1 | -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 case | Hynek Schlawack | 2012-12-10 | 1 | -1/+1 | |
| | | | | | | | | | | | | The Windows buildbots seem to be unable to agree whether they need them or not. | |||||
* | | | #15872: More shutil test fixes for Windows | Hynek Schlawack | 2012-12-10 | 1 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | #15872: More shutil test fixes for Windows | Hynek Schlawack | 2012-12-10 | 1 | -2/+2 | |
| | | | ||||||
* | | | #15872: Fix shutil.rmtree error tests for Windows | Hynek Schlawack | 2012-12-10 | 1 | -1/+5 | |
|\ \ \ | |/ / | ||||||
| * | | #15872: Fix shutil.rmtree error tests for Windows | Hynek Schlawack | 2012-12-10 | 1 | -1/+5 | |
| | | | ||||||
* | | | #15872: Fix 3.3 regression introduced by the new fd-based shutil.rmtree | Hynek Schlawack | 2012-12-10 | 3 | -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.rmtree | Hynek Schlawack | 2012-12-10 | 2 | -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 Jerdonek | 2012-12-10 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #16629: Fix IDLE idlelib.CallTips test. Patch by Roger Serwy. | Chris Jerdonek | 2012-12-10 | 1 | -1/+1 | |
| | | | | | | | | | | | | This commit updates a test broken by the change made for issue #14783. | |||||
* | | | Issue #16582: use int exit code in tkinter._exit | Andrew Svetlov | 2012-12-09 | 1 | -1/+5 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #16582: use int exit code in tkinter._exit | Andrew Svetlov | 2012-12-09 | 1 | -1/+5 | |
| | | | ||||||
* | | | merge from 3.2 - reason attribute for urllib.error.HTTPError | Senthil Kumaran | 2012-12-09 | 1 | -0/+4 | |
|\ \ \ | |/ / | ||||||
| * | | Fix issue13211 - Document the reason attribute for urllib.error.HTTPError | Senthil Kumaran | 2012-12-09 | 1 | -0/+4 | |
| | | | ||||||
* | | | merge 3.2 | Benjamin Peterson | 2012-12-09 | 0 | -0/+0 | |
|\ \ \ | |/ / | ||||||
| * | | merge 3.1 | Benjamin Peterson | 2012-12-09 | 0 | -0/+0 | |
| |\ \ | | |/ |