summaryrefslogtreecommitdiff
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-5/+5
* make too many nested blocks be a SyntaxError instead of a SystemError (closes...Benjamin Peterson2016-07-141-1/+1
* Issue #27301: Fixed incorrect return codes for errors in compile.c.Serhiy Storchaka2016-06-151-16/+20
* Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-121-1/+1
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* code_richcompare() now uses the constants typesVictor Stinner2016-01-221-48/+10
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-132/+530
|\
| * compute stack effect of BUILD_MAP correctly (closes #25060)Benjamin Peterson2015-09-101-1/+1
| * Fix refleak.Stefan Krah2015-07-271-1/+3
| * Issue #24687: Plug refleak on SyntaxError in function parameters annotations.Yury Selivanov2015-07-231-14/+13
| * Issue #24619: More tests; fix nits in compiler.cYury Selivanov2015-07-221-3/+2
| * Issue #24528: Improve error message for awaits in comprehensionsYury Selivanov2015-06-301-1/+4
| * Issue #24400: Introduce a distinct type for 'async def' coroutines.Yury Selivanov2015-06-221-6/+4
| * Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-111-2/+2
| |\
| * | remove STORE_MAP, since it's unusedBenjamin Peterson2015-05-281-2/+0
| * | in dict displays, evaluate the key before the value (closes #11205)Benjamin Peterson2015-05-281-2/+2
| * | PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-15/+273
| * | Merge 3.4Benjamin Peterson2015-05-071-5/+4
| |\ \
| * | | PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-89/+230
| * | | remove the concept of an unoptimized function scope from the compiler, since ...Benjamin Peterson2015-04-271-5/+2
| * | | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-111-5/+9
| |\ \ \
| | * \ \ merge 3.4 (#23048)Benjamin Peterson2014-12-131-3/+2
| | |\ \ \
| | * | | | Issue #22869: Split pythonrun into two modulesNick Coghlan2014-11-201-2/+0
| | * | | | Issue #22453: Removed non-documented macro PyObject_REPR().Serhiy Storchaka2014-11-181-10/+10
| | * | | | Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an i...Antoine Pitrou2014-09-181-3/+3
| | * | | | Issue #21523: Fix over-pessimistic computation of the stack effect of some op...Antoine Pitrou2014-05-231-2/+6
| | |\ \ \ \
| | * | | | | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-0/+6
* | | | | | | Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-111-2/+2
| |_|_|_|/ |/| | | |
* | | | | shorten capsule name macro; it doesn't need to be so longBenjamin Peterson2015-05-071-4/+4
|/ / / /
* | | | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-111-2/+2
| |_|/ |/| |
* | | pop the loop block even for infinite while loops (closes #23048)Benjamin Peterson2014-12-131-3/+2
* | | Issue #22453: Warn against the use of leaking macro PyObject_REPR().Serhiy Storchaka2014-11-191-10/+10
| |/ |/|
* | Issue #21523: Fix over-pessimistic computation of the stack effect of some op...Antoine Pitrou2014-05-231-2/+6
|/
* Issue #20625: Fix compilation issueVictor Stinner2014-02-181-1/+2
* Mangle __parameters in __annotations__ dict properly. Issue #20625.Yury Selivanov2014-02-181-1/+7
* upcast int to size_t to silence two autological-constant-out-of-range-compare...Christian Heimes2013-12-041-1/+1
* Issue #19722: Added opcode.stack_effect(), which accuratelyLarry Hastings2013-11-231-8/+12
* Issue #9566, #19617: Fix more compiler warnings in compile.c on Windows 64-bitVictor Stinner2013-11-191-10/+13
* Issue #9566, #19617: New try to fix compilation on WindowsVictor Stinner2013-11-191-1/+1
* Issue #9566, #19617: Fix compilation on WindowsVictor Stinner2013-11-191-2/+2
* Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fixVictor Stinner2013-11-191-48/+68
* Issue #19437: Fix compiler_class(), handle compiler_lookup_arg() failureVictor Stinner2013-11-051-0/+4
* cleanup the construction of __qualname__ (closes #19301 again)Benjamin Peterson2013-10-201-70/+82
* Close #19313: remove no longer needed Py_XINCREFNick Coghlan2013-10-201-1/+0
* removal u_qualname, since compiler_scope_qualname is only ever called onceBenjamin Peterson2013-10-191-8/+0
* strengthen condition and add assertionBenjamin Peterson2013-10-191-1/+2
* give explicitly global functions and classes a global __qualname__ (closes #1...Benjamin Peterson2013-10-191-17/+37
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
|\