Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords. | Larry Hastings | 2012-03-20 | 1 | -1/+73 |
| | | | | | | They're optional-only for now (unlike in pure Python) but that's all I needed. The syntax can easily be relaxed if we want to support required keyword-only arguments for extension types in the future. | ||||
* | Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. | Giampaolo Rodola' | 2012-03-20 | 1 | -0/+1 |
| | |||||
* | all OSErrors should indicate there are no extended attributes (closes #14358) | Benjamin Peterson | 2012-03-19 | 1 | -3/+1 |
| | |||||
* | Fix whitespace | Raymond Hettinger | 2012-03-17 | 1 | -1/+1 |
| | |||||
* | Low overhead path for maxsize==0 | Raymond Hettinger | 2012-03-17 | 1 | -2/+13 |
| | |||||
* | Merge #14333: fix test_queue so it can be run via standard unittest test ↵ | R David Murray | 2012-03-17 | 1 | -4/+4 |
|\ | | | | | | | discovery. | ||||
| * | #14333: fix test_queue so it can be run via standard unittest test discovery. | R David Murray | 2012-03-17 | 1 | -4/+4 |
| | | |||||
* | | #14344: fixed the repr of email.policy objects. | R David Murray | 2012-03-17 | 1 | -1/+1 |
| | | |||||
* | | Section-off the source for better readability. | Raymond Hettinger | 2012-03-17 | 1 | -0/+23 |
| | | |||||
* | | Minor beautification. | Raymond Hettinger | 2012-03-17 | 1 | -1/+1 |
| | | |||||
* | | make extra arguments to object.__init__/__new__ to errors in most cases ↵ | Benjamin Peterson | 2012-03-17 | 1 | -0/+20 |
| | | | | | | | | (finishes #1683368) | ||||
* | | Merge #11686: add missing entries to email __all__ lists. | R David Murray | 2012-03-17 | 4 | -10/+8 |
|\ \ | |/ | | | | | Original patch by Steffen Daode Nurpmeso | ||||
| * | #11686: add missing entries to email __all__ lists. | R David Murray | 2012-03-17 | 5 | -11/+9 |
| | | | | | | | | Original patch by Steffen Daode Nurpmeso | ||||
* | | #12788: fix error in test_policy when run under refleak detection | R David Murray | 2012-03-17 | 1 | -1/+3 |
| | | |||||
* | | Root variable is not changed. | Raymond Hettinger | 2012-03-17 | 1 | -1/+1 |
| | | |||||
* | | Fix whitespace | Raymond Hettinger | 2012-03-17 | 1 | -1/+1 |
| | | |||||
* | | Unique sentinel value for cache.get() | Raymond Hettinger | 2012-03-17 | 1 | -2/+2 |
| | | |||||
* | | Refactor calculation of the cache key. Minor code cleanups. | Raymond Hettinger | 2012-03-16 | 1 | -25/+21 |
| | | |||||
* | | Merge | Antoine Pitrou | 2012-03-16 | 1 | -1/+3 |
|\ \ | |||||
| * \ | merge heads | Benjamin Peterson | 2012-03-16 | 1 | -2/+1 |
| |\ \ | |||||
| * | | | clear the root with the cache | Benjamin Peterson | 2012-03-16 | 1 | -1/+3 |
| | | | | |||||
* | | | | Issue #14335: multiprocessing's custom Pickler subclass now inherits from ↵ | Antoine Pitrou | 2012-03-16 | 1 | -9/+9 |
| |/ / |/| | | | | | | | | | | | | | | the C-accelerated implementation. Patch by sbt. | ||||
* | | | Minor code cleanup. | Raymond Hettinger | 2012-03-16 | 1 | -2/+1 |
|/ / | |||||
* | | Eliminate duplicate link lookup. Minor cleanup. | Raymond Hettinger | 2012-03-16 | 1 | -2/+2 |
| | | |||||
* | | merge 3.2 (#14334) | Benjamin Peterson | 2012-03-16 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | check to make sure the attribute is a string (#14334) | Benjamin Peterson | 2012-03-16 | 1 | -0/+3 |
| | | |||||
* | | fix trailing whitespace | Eli Bendersky | 2012-03-16 | 1 | -1/+1 |
| | | |||||
* | | Add a test that makes sure TreeBuilder can be passed element_factory in the | Eli Bendersky | 2012-03-16 | 1 | -0/+5 |
| | | | | | | | | | | constructor. Marked as expectedFailure since it currently fails for the C implementation. | ||||
* | | merge | Raymond Hettinger | 2012-03-16 | 2 | -1/+9 |
|\ \ | |||||
| * \ | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem | Senthil Kumaran | 2012-03-16 | 2 | -1/+9 |
| |\ \ | | |/ | |||||
| | * | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem | Senthil Kumaran | 2012-03-16 | 2 | -1/+9 |
| | | | |||||
* | | | Improve the memory utilization (and speed) of functools.lru_cache(). | Raymond Hettinger | 2012-03-16 | 1 | -21/+32 |
|/ / | |||||
* | | Issue #14207: the ParseError exception raised by _elementtree was made | Eli Bendersky | 2012-03-16 | 1 | -20/+22 |
| | | | | | | | | | | | | | | | | | | | | consistent to the one raised by the Python module (the 'code' attribute was added). In addition, the exception is now documented. Added a test to check that ParseError has the required attributes, and threw away the equivalent doctest which is no longer required. | ||||
* | | Closes Issue #14246: _elementtree parser will now handle io.StringIO | Eli Bendersky | 2012-03-16 | 1 | -0/+14 |
| | | |||||
* | | Explain the use of charset parameter with Content-Type header: issue11082 | Senthil Kumaran | 2012-03-16 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Explain the use of charset parameter with Content-Type header. Issue11082 | Senthil Kumaran | 2012-03-16 | 1 | -2/+3 |
| | | |||||
* | | perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) | Benjamin Peterson | 2012-03-15 | 2 | -2/+23 |
| | | | | | | | | | | | | | | This allows generators that are using yield from to be seen by debuggers. It also kills the f_yieldfrom field on frame objects. Patch mostly from Mark Shannon with a few tweaks by me. | ||||
* | | port from 3.2 - Fix the urllib closing issue which hangs on particular ftp ↵ | Senthil Kumaran | 2012-03-15 | 1 | -1/+1 |
|\ \ | |/ | | | | | urls/ftp servers. closes issue11199 | ||||
| * | closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. | Senthil Kumaran | 2012-03-15 | 1 | -1/+1 |
| | | |||||
* | | (sched) when run() is invoked with blocking=False return the deadline of the ↵ | Giampaolo Rodola' | 2012-03-15 | 1 | -2/+3 |
| | | | | | | | | next scheduled call in the scheduler; this use case was suggested in http://bugs.python.org/issue1641#msg149453 | ||||
* | | Fixes #14314: Improved SMTP timeout handling. | Vinay Sajip | 2012-03-15 | 2 | -3/+7 |
| | | |||||
* | | Issue #14222: Use the new time.steady() function instead of time.time() for | Victor Stinner | 2012-03-15 | 2 | -2/+2 |
| | | | | | | | | | | timeout in queue and threading modules to not be affected of system time update. | ||||
* | | Issue #10278: Add an optional strict argument to time.steady(), False by default | Victor Stinner | 2012-03-15 | 1 | -0/+10 |
| | | |||||
* | | Issue #10278: Drop time.monotonic() function, rename time.wallclock() to ↵ | Victor Stinner | 2012-03-14 | 1 | -22/+3 |
| | | | | | | | | | | | | | | | | | | time.steady() * On Mac OS X, time.steady() now uses mach_absolute_time(), a monotonic clock * Optimistic change: bet that CLOCK_MONOTONIC and CLOCK_REALTIME are available when clock_gettime() is available * Rewrite time.steady() documentation | ||||
* | | remove get_prefix and set_prefix (#13248) | Benjamin Peterson | 2012-03-14 | 2 | -37/+0 |
| | | |||||
* | | Removed XXX from unittest.mock docstring and switch to a nicer ↵ | Michael Foord | 2012-03-14 | 1 | -24/+19 |
| | | | | | | | | try...except...finally | ||||
* | | Remove more Python 2 compatibility cruft from unittest.mock | Michael Foord | 2012-03-14 | 2 | -25/+6 |
| | | |||||
* | | merge heads | Senthil Kumaran | 2012-03-14 | 3 | -0/+38 |
|\ \ | |||||
| * \ | Megre from tip | Andrew Svetlov | 2012-03-14 | 4 | -17/+52 |
| |\ \ | |||||
| * \ \ | Merge from tip | Andrew Svetlov | 2012-03-14 | 15 | -2/+6725 |
| |\ \ \ |