Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Issue #19722: Added opcode.stack_effect(), which accurately | Larry Hastings | 2013-11-23 | |
| | | | | computes the stack effect of bytecode instructions. | |||
* | Issue #9566, #19617: Fix more compiler warnings in compile.c on Windows 64-bit | Victor Stinner | 2013-11-19 | |
| | ||||
* | Issue #9566, #19617: New try to fix compilation on Windows | Victor Stinner | 2013-11-19 | |
| | | | | | Some compilers (ex: Visual Studio) decode -2147483648 as a unsigned integer instead of an signed integer. | |||
* | Issue #9566, #19617: Fix compilation on Windows | Victor Stinner | 2013-11-19 | |
| | | | | INT32_MIN and INT32_MAX constants are unknown on Windows. | |||
* | Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fix | Victor Stinner | 2013-11-19 | |
| | | | | | | | compiler warnings on Windows 64-bit. Use Py_SAFE_DOWNCAST() where the final downcast is needed. The bytecode doesn't support integer parameters larger than 32-bit yet. | |||
* | Issue #19437: Fix compiler_class(), handle compiler_lookup_arg() failure | Victor Stinner | 2013-11-05 | |
| | ||||
* | cleanup the construction of __qualname__ (closes #19301 again) | Benjamin Peterson | 2013-10-20 | |
| | ||||
* | Close #19313: remove no longer needed Py_XINCREF | Nick Coghlan | 2013-10-20 | |
| | | | | Eliminates a refleak introduced in commit b4a325275fb0 | |||
* | removal u_qualname, since compiler_scope_qualname is only ever called once | Benjamin Peterson | 2013-10-19 | |
| | ||||
* | strengthen condition and add assertion | Benjamin Peterson | 2013-10-19 | |
| | ||||
* | give explicitly global functions and classes a global __qualname__ (closes ↵ | Benjamin Peterson | 2013-10-19 | |
| | | | | #19301) | |||
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | |
|\ | | | | | | | error messages and comments. | |||
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | |
| | | | | | | | | error messages and comments. | |||
* | | Close #11619: The parser and the import machinery do not encode Unicode | Victor Stinner | 2013-08-26 | |
| | | | | | | | | filenames anymore on Windows. | |||
* | | Issue #18408: Fix compiler_import() to handle PyUnicode_Substring() failure ↵ | Victor Stinner | 2013-07-11 | |
| | | | | | | | | properly | |||
* | | fix compilation on Windows | Victor Stinner | 2013-05-16 | |
| | | ||||
* | | rather than passing locals to the class body, just execute the class body in ↵ | Benjamin Peterson | 2013-05-16 | |
| | | | | | | | | the proper environment | |||
* | | hide the __class__ closure from the class body (#12370) | Benjamin Peterson | 2013-05-15 | |
| | | ||||
* | | check local class namespace before reaching for cells (closes #17853) | Benjamin Peterson | 2013-04-30 | |
| | | ||||
* | | Merge indentation fix from 3.3. | Ezio Melotti | 2013-04-19 | |
|\| | ||||
| * | Fix indentation. | Ezio Melotti | 2013-04-19 | |
| | | ||||
* | | Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). | Antoine Pitrou | 2013-04-06 | |
|\| | ||||
| * | Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). | Antoine Pitrou | 2013-04-06 | |
| | | ||||
* | | unify some ast.argument's attrs; change Attribute column offset (closes #16795) | Benjamin Peterson | 2013-03-18 | |
| | | | | | | | | Patch from Sven Brauch. | |||
* | | evaluate lambda keyword-only defaults after positional defaults (#16967 again) | Benjamin Peterson | 2013-02-10 | |
| | | ||||
* | | evaluate positional defaults before keyword-only defaults (closes #16967) | Benjamin Peterson | 2013-02-10 | |
| | | ||||
* | | assert than we never try to deal with True, False, or None as a name | Benjamin Peterson | 2012-12-06 | |
| | | ||||
* | | create NameConstant AST class for None, True, and False literals (closes #16619) | Benjamin Peterson | 2012-12-06 | |
|/ | ||||
* | Issue #16546: make ast.YieldFrom argument mandatory. | Mark Dickinson | 2012-11-25 | |
| | ||||
* | Issue #5765: Apply a hard recursion limit in the compiler | Nick Coghlan | 2012-11-04 | |
| | | | | | | | Previously, excessive nesting in expressions would blow the stack and segfault the interpreter. Now, a hard limit based on the configured recursion limit and a hardcoded scaling factor is applied. | |||
* | remove unused variable | Benjamin Peterson | 2012-07-18 | |
| | ||||
* | Issue #15368: fixing variable typo. | Meador Inge | 2012-07-18 | |
|\ | ||||
| * | Issue #15368: fixing variable typo. | Meador Inge | 2012-07-18 | |
| | | ||||
* | | Issue #15368: make bytecode generation deterministic. | Meador Inge | 2012-07-18 | |
|\| | ||||
| * | Issue #15368: make bytecode generation deterministic. | Meador Inge | 2012-07-18 | |
| | | ||||
* | | Close #14857: fix regression in references to PEP 3135 implicit __class__ ↵ | Nick Coghlan | 2012-05-27 | |
| | | | | | | | | closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue | |||
* | | Check newly created consistency using _PyUnicode_CheckConsistency(str, 1) | Victor Stinner | 2012-04-27 | |
| | | | | | | | | | | | | * In debug mode, fill the string data with invalid characters * Simplify also reference counting in PyCodec_BackslashReplaceErrors() and PyCodec_XMLCharRefReplaceError() | |||
* | | merge 3.2 (#14607) | Benjamin Peterson | 2012-04-17 | |
|\| | ||||
| * | mangle keyword-only argname when loading defaults (closes #14607) | Benjamin Peterson | 2012-04-17 | |
| | | ||||
* | | perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) | Benjamin Peterson | 2012-03-15 | |
| | | | | | | | | | | | | | | 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. | |||
* | | make YieldFrom its own distinct from Yield (closes #13780) | Benjamin Peterson | 2012-01-14 | |
| | | ||||
* | | Implement PEP 380 - 'yield from' (closes #11682) | Nick Coghlan | 2012-01-13 | |
| | | ||||
* | | PEP 3155 / issue #13448: Qualified name for classes and functions. | Antoine Pitrou | 2011-11-25 | |
| | | ||||
* | | Check for PyUnicode_CopyCharacters() failure | Victor Stinner | 2011-09-28 | |
| | | ||||
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | |
| | | ||||
* | | use a invalid name for the __class__ closure for super() (closes #12370) | Benjamin Peterson | 2011-06-19 | |
| | | | | | | | | | | This prevents the assignment of __class__ in the class body from breaking super. (Although a determined person could do locals()["@__class__"] = 4) | |||
* | | unify TryExcept and TryFinally (closes #12199) | Benjamin Peterson | 2011-05-29 | |
| | | ||||
* | | merge 3.2 | Benjamin Peterson | 2011-05-27 | |
|\| | ||||
| * | merge 3.1 | Benjamin Peterson | 2011-05-27 | |
| |\ | ||||
| | * | fix spacing | Benjamin Peterson | 2011-05-27 | |
| | | |