Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | in dict displays, evaluate the key before the value (closes #11205) | Benjamin Peterson | 2015-05-28 | 1 | -0/+2 |
| | | | | Patch partially by Steve Dougherty. | ||||
* | Issue 24298: Fix signature() to properly unwrap wrappers around bound methods | Yury Selivanov | 2015-05-28 | 1 | -0/+3 |
|\ | |||||
| * | Issue 24298: Fix signature() to properly unwrap wrappers around bound methods | Yury Selivanov | 2015-05-28 | 1 | -0/+3 |
| | | |||||
* | | Issue #24285: fix importing extensions from packages | Nick Coghlan | 2015-05-26 | 1 | -1/+5 |
| | | |||||
* | | Moved Misc/NEWS entries to correct section and fix formatting. | Serhiy Storchaka | 2015-05-26 | 1 | -8/+8 |
|\ \ | |/ | |||||
| * | Moved Misc/NEWS entries to correct section and fix formatting. | Serhiy Storchaka | 2015-05-26 | 1 | -7/+7 |
| | | |||||
* | | (Merge 3.5) Issue #23840: tokenize.open() now closes the temporary binary file | Victor Stinner | 2015-05-25 | 1 | -0/+3 |
|\ \ | |/ | | | | | on error to fix a resource warning. | ||||
| * | Issue #23840: tokenize.open() now closes the temporary binary file on error to | Victor Stinner | 2015-05-25 | 1 | -0/+3 |
| | | | | | | | | fix a resource warning. | ||||
* | | Remove UTF-8 BOMs. | Serhiy Storchaka | 2015-05-25 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Remove UTF-8 BOMs. | Serhiy Storchaka | 2015-05-25 | 1 | -1/+1 |
| | | |||||
* | | Merge. | Larry Hastings | 2015-05-24 | 1 | -0/+5 |
|\ \ | |||||
| * | | Backed out changeset: b0a0b9b59012 | Serhiy Storchaka | 2015-05-24 | 1 | -0/+3 |
| | | | |||||
| * | | Issue #24276: Fixed optimization of property descriptor getter. | Serhiy Storchaka | 2015-05-24 | 1 | -0/+2 |
| | | | |||||
* | | | Post-release fixes for 3.5.0b1. | Larry Hastings | 2015-05-24 | 1 | -0/+12 |
|/ / | |||||
* | | Merge backout of 57776eee74f2. | Larry Hastings | 2015-05-23 | 1 | -3/+0 |
|\ \ | |||||
| * | | Backed out changeset 57776eee74f2 | Larry Hastings | 2015-05-23 | 1 | -3/+0 |
| | | | |||||
* | | | Add Idle NEWS item. | Terry Jan Reedy | 2015-05-23 | 1 | -0/+6 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | Add NEWS item for Idle. | Terry Jan Reedy | 2015-05-23 | 1 | -0/+6 |
| | | |||||
* | | Issue #14373: Added C implementation of functools.lru_cache(). Based on | Serhiy Storchaka | 2015-05-23 | 1 | -0/+3 |
| | | | | | | | | patches by Matt Joiner and Alexey Kachayev. | ||||
* | | merge 3.4 (#22931) | Benjamin Peterson | 2015-05-23 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | merge 3.3 (#22931) | Benjamin Peterson | 2015-05-23 | 1 | -0/+2 |
| |\ | |||||
| | * | merge 3.2 (#22931) | Benjamin Peterson | 2015-05-23 | 1 | -0/+2 |
| | |\ | |||||
| | | * | allow square brackets in cookie values (closes #22931) | Benjamin Peterson | 2015-05-23 | 1 | -0/+5 |
| | | | | |||||
* | | | | PEP 489: Multi-phase extension module initialization | Nick Coghlan | 2015-05-23 | 2 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Known limitations of the current implementation: - documentation changes are incomplete - there's a reference leak I haven't tracked down yet The leak is most visible by running: ./python -m test -R3:3 test_importlib However, you can also see it by running: ./python -X showrefcount Importing the array or _testmultiphase modules, and then deleting them from both sys.modules and the local namespace shows significant increases in the total number of active references each cycle. By contrast, with _testcapi (which continues to use single-phase initialisation) the global refcounts stabilise after a couple of cycles. | ||||
* | | | | Issue #23086: Add start and stop arguments to the Sequence.index() mixin method. | Raymond Hettinger | 2015-05-23 | 2 | -0/+5 |
| | | | | |||||
* | | | | Issue 22189: Add missing methods to UserString | Raymond Hettinger | 2015-05-22 | 1 | -0/+4 |
| | | | | |||||
* | | | | Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dir | Gregory P. Smith | 2015-05-22 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | parameters and returns bytes in such situations (matching the os module APIs). | ||||
* | | | | Issue #23955: Add pyvenv.cfg option to suppress registry/environment lookup ↵ | Steve Dower | 2015-05-22 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | for generating sys.path. Also cleans up and secures getpathp.c | ||||
* | | | | Issue 24244: Prevents termination when an invalid format string is ↵ | Steve Dower | 2015-05-22 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | encountered on Windows. | ||||
* | | | | Preliminary typing.py, anticipating provisional acceptance of PEP 484. | Guido van Rossum | 2015-05-22 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There area bunch of TODOs here, but the biggest (not mentioned in the file) is that I'm going to take out __instancecheck__ and __subclasscheck__. However my personal schedule is such that I probably won't have time for these before Larry tags beta 1. But I will try -- this commit is mostly to make sure that typing.py doesn't completely miss the train. PS. I'm tracking issues at https://github.com/ambv/typehinting/issues. | ||||
* | | | | Issue #20035: Reimplement tkinter._fix module as a C function. | Zachary Ware | 2015-05-22 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | The new private C function makes no permanent changes to the environment and is #ifdef'd out on non-Windows platforms. | ||||
* | | | | Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). | Serhiy Storchaka | 2015-05-22 | 1 | -0/+6 |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace. | ||||
| * | | | Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). | Serhiy Storchaka | 2015-05-22 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace. | ||||
* | | | | Fix a misplaced NEWS entry. | Yury Selivanov | 2015-05-21 | 1 | -3/+3 |
| | | | | |||||
* | | | | Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__ | Yury Selivanov | 2015-05-21 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | | | | | | | | | Patch by Mike Bayer. | ||||
| * | | | Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__ | Yury Selivanov | 2015-05-21 | 1 | -0/+3 |
| | | | | |||||
* | | | | Fixed issue number for issue #22939. | Serhiy Storchaka | 2015-05-21 | 1 | -1/+1 |
|\ \ \ \ | |/ / / | |||||
| * | | | Fixed issue number for issue #22939. | Serhiy Storchaka | 2015-05-21 | 1 | -1/+1 |
| | | | | |||||
* | | | | Issue #23985: Fixed integer overflow in iterator object. Patch by | Serhiy Storchaka | 2015-05-21 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | | | | | | | | | Clement Rouault. | ||||
| * | | | Issue #23985: Fixed integer overflow in iterator object. Patch by | Serhiy Storchaka | 2015-05-21 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | Clement Rouault. | ||||
* | | | | Issue #15836: assertRaises(), assertRaisesRegex(), assertWarns() and | Serhiy Storchaka | 2015-05-21 | 2 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | assertWarnsRegex() assertments now check the type of the first argument to prevent possible user error. Based on patch by Daniel Wagner-Hall. | ||||
* | | | | Issue 24248: Deprecate inspect.Signature.from_function and .from_builtin | Yury Selivanov | 2015-05-21 | 1 | -0/+3 |
| | | | | |||||
* | | | | Issue #9858: Add missing method stubs to _io.RawIOBase. Patch by Laura ↵ | Antoine Pitrou | 2015-05-20 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | Rupprecht. | ||||
* | | | | Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable. | Yury Selivanov | 2015-05-20 | 1 | -0/+4 |
| | | | | |||||
* | | | | Issue #22955: attrgetter, itemgetter and methodcaller objects in the operator | Serhiy Storchaka | 2015-05-20 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | module now support pickling. Added readable and evaluable repr for these objects. Based on patch by Josh Rosenberg. | ||||
* | | | | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 1 | -0/+5 |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | when a directory with the chosen name already exists on Windows as well as on Unix. tempfile.mkstemp() now fails early if parent directory is not valid (not exists or is a file) on Windows. | ||||
| * | | | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | when a directory with the chosen name already exists on Windows as well as on Unix. tempfile.mkstemp() now fails early if parent directory is not valid (not exists or is a file) on Windows. | ||||
* | | | | Issue #23985: Fix a possible buffer overrun when deleting a slice from the ↵ | Antoine Pitrou | 2015-05-19 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | front of a bytearray and then appending some other bytes data. Patch by Martin Panter. | ||||
| * | | | Issue #23985: Fix a possible buffer overrun when deleting a slice from the ↵ | Antoine Pitrou | 2015-05-19 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | front of a bytearray and then appending some other bytes data. Patch by Martin Panter. | ||||
* | | | | Issue #23780: Improved error message in os.path.join() with single argument. | Serhiy Storchaka | 2015-05-19 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | Idea by R. David Murray. |