Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Restore the data block size to 62. | Raymond Hettinger | 2013-07-28 | 1 | -1/+1 |
| | | | | | | | | | | | | The former block size traded away good fit within cache lines in order to gain faster division in deque_item(). However, compilers are getting smarter and can now replace the slow division operation with a fast integer multiply and right shift. Accordingly, it makes sense to go back to a size that lets blocks neatly fill entire cache-lines. GCC-4.8 and CLANG 4.0 both compute "x // 62" with something roughly equivalent to "x * 9520900167075897609 >> 69". | ||||
* | Merge with 3.3 | Terry Jan Reedy | 2013-07-28 | 1 | -5/+17 |
|\ | |||||
| * | Issue #18441: Make test.support.requires('gui') skip when it should. | Terry Jan Reedy | 2013-07-28 | 1 | -5/+17 |
| | | |||||
* | | merge 3.3 (#18565) | Benjamin Peterson | 2013-07-27 | 1 | -1/+40 |
|\ \ | |/ | |||||
| * | add a test for issue #17669 (closes #18565) | Benjamin Peterson | 2013-07-27 | 1 | -1/+40 |
| | | | | | | | | Patch from Phil Connell. | ||||
* | | Close #18545: now only executes member_type if no _value_ is assigned in ↵ | Ethan Furman | 2013-07-25 | 2 | -4/+20 |
| | | | | | | | | __new__. | ||||
* | | #17818: aifc.getparams now returns a namedtuple. | R David Murray | 2013-07-25 | 3 | -7/+44 |
| | | | | | | | | Patch by Claudiu Popa. | ||||
* | | Fix typo on MutableSequence docstring. | Guido van Rossum | 2013-07-25 | 1 | -1/+1 |
| | | |||||
* | | #18503: small cleanups in test_email. | R David Murray | 2013-07-25 | 1 | -2/+2 |
|\ \ | |/ | | | | | Patch by Vajrasky Kok. | ||||
| * | #18503: small cleanups in test_email. | R David Murray | 2013-07-25 | 1 | -2/+2 |
| | | | | | | | | Patch by Vajrasky Kok. | ||||
* | | #14853: merge with 3.3. | Ezio Melotti | 2013-07-25 | 1 | -10/+0 |
|\ \ | |/ | |||||
| * | #14853: remove test that was making too many assumptions about stdin. Patch ↵ | Ezio Melotti | 2013-07-25 | 1 | -10/+0 |
| | | | | | | | | by Elena Oat. | ||||
* | | Add in a comment that was removed in 240adc564539 (requested by Victor Stinner) | Brian Curtin | 2013-07-23 | 1 | -0/+1 |
| | | |||||
* | | Merge | Brian Curtin | 2013-07-22 | 1 | -843/+561 |
|\ \ | |||||
| * \ | Issue #17944: test_zipfile now discoverable and uses subclassing to | Serhiy Storchaka | 2013-07-22 | 1 | -843/+561 |
| |\ \ | | |/ | | | | | | | | | | generate tests for different compression types. Fixed a bug with skipping some tests due to use of exhausted iterators. | ||||
| | * | Issue #17944: test_zipfile now discoverable and uses subclassing to | Serhiy Storchaka | 2013-07-22 | 1 | -849/+562 |
| | | | | | | | | | | | | | | | generate tests for different compression types. Fixed a bug with skipping some tests due to use of exhausted iterators. | ||||
* | | | Fix #18530. Remove extra stat call from posixpath.ismount | Brian Curtin | 2013-07-22 | 1 | -8/+14 |
|/ / | |||||
* | | Issue #17532: merge from 3.3 | Ned Deily | 2013-07-20 | 1 | -1/+5 |
|\ \ | |/ | |||||
| * | Issue #17532: Prevent exception when changing key sets if Options menu is empty. | Ned Deily | 2013-07-20 | 1 | -1/+5 |
| | | |||||
* | | test_ssl: use a bytestring here | Antoine Pitrou | 2013-07-20 | 1 | -1/+1 |
| | | |||||
* | | Issue #9177: Calling read() or write() now raises ValueError, not ↵ | Antoine Pitrou | 2013-07-20 | 2 | -0/+19 |
| | | | | | | | | | | | | AttributeError, on a closed SSL socket. Patch by Senko Rasic. | ||||
* | | Change _names to _names_ since the latter is reserved for Enum use. | Ethan Furman | 2013-07-20 | 2 | -41/+42 |
| | | | | | | | | | | Before this change only the methods were _single_underscored_; now the attributes are as well. | ||||
* | | Close #18508 -- fix _value2member_map to always have the member's value | Ethan Furman | 2013-07-20 | 2 | -11/+31 |
| | | |||||
* | | Merge. | Richard Oudkerk | 2013-07-19 | 1 | -4/+7 |
|\ \ | |/ | |||||
| * | Prevent dangling threads/process warning for test_multiprocessing. | Richard Oudkerk | 2013-07-19 | 1 | -4/+7 |
| | | |||||
* | | Closes #18479: Changed venv Activate.ps1 to make deactivate a function, and ↵ | Vinay Sajip | 2013-07-19 | 2 | -34/+30 |
| | | | | | | | | removed Deactivate.ps1. | ||||
* | | closes issue18042 -- a `unique` decorator is added to enum.py | Ethan Furman | 2013-07-19 | 2 | -2/+49 |
| | | | | | | | | | | The docs also clarify the 'Interesting Example' duplicate-free enum is for demonstration purposes. | ||||
* | | Issue #18266: test_largefile now works with unittest test discovery and | Serhiy Storchaka | 2013-07-17 | 1 | -63/+51 |
|\ \ | |/ | | | | | supports running only selected tests. Patch by Zachary Ware. | ||||
| * | Issue #18266: test_largefile now works with unittest test discovery and | Serhiy Storchaka | 2013-07-17 | 1 | -63/+51 |
| | | | | | | | | supports running only selected tests. Patch by Zachary Ware. | ||||
* | | Issue #17767: test_locale now works with unittest test discovery. | Serhiy Storchaka | 2013-07-17 | 1 | -58/+36 |
|\ \ | |/ | | | | | Original patch by Zachary Ware. | ||||
| * | Issue #17767: test_locale now works with unittest test discovery. | Serhiy Storchaka | 2013-07-17 | 1 | -58/+36 |
| | | | | | | | | Original patch by Zachary Ware. | ||||
* | | Merge: Closes #18475: add unittest.main() to test_email/test_inversions. | R David Murray | 2013-07-16 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Closes #18475: add unittest.main() to test_email/test_inversions. | R David Murray | 2013-07-16 | 1 | -0/+4 |
| | | | | | | | | Patch by Vajrasky Kok. | ||||
* | | Issue #17778: Fix test discovery for test_multiprocessing. (Patch by | Richard Oudkerk | 2013-07-16 | 1 | -28/+3 |
|\ \ | |/ | | | | | Zachary Ware.) | ||||
| * | Issue #17778: Fix test discovery for test_multiprocessing. (Patch by | Richard Oudkerk | 2013-07-16 | 1 | -122/+104 |
| | | | | | | | | Zachary Ware.) | ||||
* | | Also remove a (broken) leaker test for the code removed in issue #18393. | Ronald Oussoren | 2013-07-16 | 1 | -14/+0 |
| | | |||||
* | | test_io: check_interrupted_write() now cancels the alarm if ZeroDivisionError | Victor Stinner | 2013-07-15 | 1 | -3/+6 |
| | | | | | | | | | | | | exception was not raised. Before the process was killed by SIGALRM in another random test (1 second later) | ||||
* | | Issue #18393: Remove use of deprecated API on OSX | Ronald Oussoren | 2013-07-15 | 1 | -63/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | The "Gestalt" function on OSX is deprecated (starting with OSX 10.8), remove its usage from the stdlib. The patch removes a number of private functions and a private module, but does not change the public API. The removed code was effectively dead, the platform module has used other code to fetch the OSX version for years and could only use on the Gestalt-based code as a fallback. That fallback can only trigger on broken OSX installs (that is, someone has removed parts of the system install) | ||||
* | | Merge: Closes #18464: fix typo in test name. | R David Murray | 2013-07-15 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Closes #18464: fix typo in test name. | R David Murray | 2013-07-15 | 1 | -1/+1 |
| | | |||||
* | | Close issue 17482: don't overwrite __wrapped__ | Nick Coghlan | 2013-07-15 | 2 | -4/+14 |
| | | |||||
* | | merge | Raymond Hettinger | 2013-07-14 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #18432: Fix unintended API change in the sched module | Raymond Hettinger | 2013-07-14 | 2 | -2/+2 |
| | | |||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-07-13 | 1 | -1/+4 |
|\ \ | |/ | |||||
| * | Issue #18365: convert buildbot errors to skips. | Terry Jan Reedy | 2013-07-13 | 1 | -1/+4 |
| | | |||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-07-13 | 3 | -8/+88 |
|\ \ | |/ | |||||
| * | Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch by | Terry Jan Reedy | 2013-07-13 | 3 | -8/+88 |
| | | | | | | | | | | Phil Webster. With that available, modify RstripExtension.py to stop deleting null slices, which caused a file to be marked as changed when it was not. | ||||
* | | Merge: #18437: fix comment typo. | R David Murray | 2013-07-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #18437: fix comment typo. | R David Murray | 2013-07-13 | 1 | -1/+1 |
| | | |||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-07-13 | 2 | -8/+7 |
|\ \ | |/ |