1. 694de3b Issue #27301: Fixed incorrect return codes for errors in compile.c. by Serhiy Storchaka · 8 years ago
  2. 3c317e7 Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling by Serhiy Storchaka · 8 years ago
  3. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  4. 3cdd5fb code_richcompare() now uses the constants types by Victor Stinner · 8 years ago
  5. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  6. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  7. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  8. b685515 compute stack effect of BUILD_MAP correctly (closes #25060) by Benjamin Peterson · 9 years ago
  9. c0cbed1 Fix refleak. by Stefan Krah · 9 years ago
  10. f315c1c Issue #24687: Plug refleak on SyntaxError in function parameters annotations. by Yury Selivanov · 9 years ago
  11. b7666a3 Issue #24619: More tests; fix nits in compiler.c by Yury Selivanov · 9 years ago
  12. 9dec035 Issue #24528: Improve error message for awaits in comprehensions by Yury Selivanov · 9 years ago
  13. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  14. 553e156 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  15. d741a88 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  16. 264be6f remove STORE_MAP, since it's unused by Benjamin Peterson · 9 years ago
  17. ee85339 in dict displays, evaluate the key before the value (closes #11205) by Benjamin Peterson · 9 years ago
  18. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  19. 95283fb Merge 3.4 by Benjamin Peterson · 9 years ago
  20. 9e77f72 shorten capsule name macro; it doesn't need to be so long by Benjamin Peterson · 9 years ago
  21. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  22. 1dfd247 remove the concept of an unoptimized function scope from the compiler, since it can't happen anymore by Benjamin Peterson · 9 years ago
  23. 9142773 Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. by Serhiy Storchaka · 9 years ago
  24. c775ad6 Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. by Serhiy Storchaka · 9 years ago
  25. 7ced53c merge 3.4 (#23048) by Benjamin Peterson · 10 years ago
  26. 3cda0ed pop the loop block even for infinite while loops (closes #23048) by Benjamin Peterson · 10 years ago
  27. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
  28. df4518c Issue #22453: Removed non-documented macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  29. 81f68a7 Issue #22453: Warn against the use of leaking macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  30. e7811fc Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an if-block if there is no else-clause. by Antoine Pitrou · 10 years ago
  31. 5c8008e Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler. by Antoine Pitrou · 10 years ago
  32. 9961405 Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler. by Antoine Pitrou · 10 years ago
  33. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  34. 065efc3 Issue #20625: Fix compilation issue by Victor Stinner · 10 years ago
  35. 34ce99f Mangle __parameters in __annotations__ dict properly. Issue #20625. by Yury Selivanov · 10 years ago
  36. 6acc5e1 Issue #20625: Fix compilation issue by Victor Stinner · 10 years ago
  37. 026019f Mangle __parameters in __annotations__ dict properly. Issue #20625. by Yury Selivanov · 10 years ago
  38. 724b828 upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang. by Christian Heimes · 11 years ago
  39. 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 11 years ago
  40. f8e3221 Issue #9566, #19617: Fix more compiler warnings in compile.c on Windows 64-bit by Victor Stinner · 11 years ago
  41. 85fe8a6 Issue #9566, #19617: New try to fix compilation on Windows by Victor Stinner · 11 years ago
  42. b679a2e Issue #9566, #19617: Fix compilation on Windows by Victor Stinner · 11 years ago
  43. ad9a066 Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fix by Victor Stinner · 11 years ago
  44. 98e818b Issue #19437: Fix compiler_class(), handle compiler_lookup_arg() failure by Victor Stinner · 11 years ago
  45. 6b4f780 cleanup the construction of __qualname__ (closes #19301 again) by Benjamin Peterson · 11 years ago
  46. 6de9200 Close #19313: remove no longer needed Py_XINCREF by Nick Coghlan · 11 years ago
  47. 34d33a5 removal u_qualname, since compiler_scope_qualname is only ever called once by Benjamin Peterson · 11 years ago
  48. a8a38b8 strengthen condition and add assertion by Benjamin Peterson · 11 years ago
  49. 3d9e481 give explicitly global functions and classes a global __qualname__ (closes #19301) by Benjamin Peterson · 11 years ago
  50. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  51. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  52. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  53. 6b64a68 Issue #18408: Fix compiler_import() to handle PyUnicode_Substring() failure properly by Victor Stinner · 11 years ago
  54. 0b1bc56 fix compilation on Windows by Victor Stinner · 11 years ago
  55. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  56. 312595c hide the __class__ closure from the class body (#12370) by Benjamin Peterson · 11 years ago
  57. 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 11 years ago
  58. 03a0c27 Merge indentation fix from 3.3. by Ezio Melotti · 11 years ago
  59. 1b6424f Fix indentation. by Ezio Melotti · 11 years ago
  60. 7d8c29a Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  61. 55bff89 Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  62. cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 11 years ago
  63. 419d9a8 evaluate lambda keyword-only defaults after positional defaults (#16967 again) by Benjamin Peterson · 11 years ago
  64. 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 11 years ago
  65. 70b224d assert than we never try to deal with True, False, or None as a name by Benjamin Peterson · 12 years ago
  66. 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 12 years ago
  67. ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
  68. aab9c2b Issue #5765: Apply a hard recursion limit in the compiler by Nick Coghlan · 12 years ago
  69. 51ab283 remove unused variable by Benjamin Peterson · 12 years ago
  70. 9544aa3 Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  71. f69e24e Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  72. 1f336ad Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  73. 2ca6315 Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  74. 0b43bcf Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue by Nick Coghlan · 12 years ago
  75. 8f82506 Check newly created consistency using _PyUnicode_CheckConsistency(str, 1) by Victor Stinner · 12 years ago
  76. 2a1fdc4 merge 3.2 (#14607) by Benjamin Peterson · 12 years ago
  77. 32c59b6 mangle keyword-only argname when loading defaults (closes #14607) by Benjamin Peterson · 12 years ago
  78. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  79. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 12 years ago
  80. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 12 years ago
  81. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  82. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  83. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  84. f5ff223 use a invalid name for the __class__ closure for super() (closes #12370) by Benjamin Peterson · 13 years ago
  85. 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 13 years ago
  86. d8255e0 merge 3.2 by Benjamin Peterson · 13 years ago
  87. a290bac merge 3.1 by Benjamin Peterson · 13 years ago
  88. 0a5dad9 fix spacing by Benjamin Peterson · 13 years ago
  89. 4a0f20f merge 3.2 by Benjamin Peterson · 13 years ago
  90. 5218853 merge 3.1 by Benjamin Peterson · 13 years ago
  91. 74897ba fix indentation by Benjamin Peterson · 13 years ago
  92. bf1bbc1 reflect with statements with multiple items in the AST (closes #12106) by Benjamin Peterson · 13 years ago
  93. 4f2dab5 Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functions by Victor Stinner · 13 years ago
  94. 43b0686 try to use the same str object for all code filenames when compiling or unmarshalling (#12190) by Benjamin Peterson · 13 years ago
  95. 97e561e Avoid useless "++" at the end of functions by Victor Stinner · 13 years ago
  96. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  97. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  98. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  99. 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 14 years ago
  100. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago