1. 3cda0ed pop the loop block even for infinite while loops (closes #23048) by Benjamin Peterson · 10 years ago
  2. 81f68a7 Issue #22453: Warn against the use of leaking macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  3. 9961405 Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler. by Antoine Pitrou · 10 years ago
  4. 6acc5e1 Issue #20625: Fix compilation issue by Victor Stinner · 10 years ago
  5. 026019f Mangle __parameters in __annotations__ dict properly. Issue #20625. by Yury Selivanov · 10 years ago
  6. 724b828 upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang. by Christian Heimes · 11 years ago
  7. 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 11 years ago
  8. f8e3221 Issue #9566, #19617: Fix more compiler warnings in compile.c on Windows 64-bit by Victor Stinner · 11 years ago
  9. 85fe8a6 Issue #9566, #19617: New try to fix compilation on Windows by Victor Stinner · 11 years ago
  10. b679a2e Issue #9566, #19617: Fix compilation on Windows by Victor Stinner · 11 years ago
  11. ad9a066 Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fix by Victor Stinner · 11 years ago
  12. 98e818b Issue #19437: Fix compiler_class(), handle compiler_lookup_arg() failure by Victor Stinner · 11 years ago
  13. 6b4f780 cleanup the construction of __qualname__ (closes #19301 again) by Benjamin Peterson · 11 years ago
  14. 6de9200 Close #19313: remove no longer needed Py_XINCREF by Nick Coghlan · 11 years ago
  15. 34d33a5 removal u_qualname, since compiler_scope_qualname is only ever called once by Benjamin Peterson · 11 years ago
  16. a8a38b8 strengthen condition and add assertion by Benjamin Peterson · 11 years ago
  17. 3d9e481 give explicitly global functions and classes a global __qualname__ (closes #19301) by Benjamin Peterson · 11 years ago
  18. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  19. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  20. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  21. 6b64a68 Issue #18408: Fix compiler_import() to handle PyUnicode_Substring() failure properly by Victor Stinner · 11 years ago
  22. 0b1bc56 fix compilation on Windows by Victor Stinner · 11 years ago
  23. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  24. 312595c hide the __class__ closure from the class body (#12370) by Benjamin Peterson · 11 years ago
  25. 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 11 years ago
  26. 03a0c27 Merge indentation fix from 3.3. by Ezio Melotti · 11 years ago
  27. 1b6424f Fix indentation. by Ezio Melotti · 11 years ago
  28. 7d8c29a Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  29. 55bff89 Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  30. cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 11 years ago
  31. 419d9a8 evaluate lambda keyword-only defaults after positional defaults (#16967 again) by Benjamin Peterson · 11 years ago
  32. 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 11 years ago
  33. 70b224d assert than we never try to deal with True, False, or None as a name by Benjamin Peterson · 12 years ago
  34. 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 12 years ago
  35. ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
  36. aab9c2b Issue #5765: Apply a hard recursion limit in the compiler by Nick Coghlan · 12 years ago
  37. 51ab283 remove unused variable by Benjamin Peterson · 12 years ago
  38. 9544aa3 Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  39. f69e24e Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  40. 1f336ad Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  41. 2ca6315 Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  42. 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
  43. 8f82506 Check newly created consistency using _PyUnicode_CheckConsistency(str, 1) by Victor Stinner · 12 years ago
  44. 2a1fdc4 merge 3.2 (#14607) by Benjamin Peterson · 12 years ago
  45. 32c59b6 mangle keyword-only argname when loading defaults (closes #14607) by Benjamin Peterson · 12 years ago
  46. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  47. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
  48. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  49. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  50. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  51. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  52. f5ff223 use a invalid name for the __class__ closure for super() (closes #12370) by Benjamin Peterson · 13 years ago
  53. 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 13 years ago
  54. d8255e0 merge 3.2 by Benjamin Peterson · 13 years ago
  55. a290bac merge 3.1 by Benjamin Peterson · 13 years ago
  56. 0a5dad9 fix spacing by Benjamin Peterson · 13 years ago
  57. 4a0f20f merge 3.2 by Benjamin Peterson · 13 years ago
  58. 5218853 merge 3.1 by Benjamin Peterson · 13 years ago
  59. 74897ba fix indentation by Benjamin Peterson · 13 years ago
  60. bf1bbc1 reflect with statements with multiple items in the AST (closes #12106) by Benjamin Peterson · 13 years ago
  61. 4f2dab5 Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functions by Victor Stinner · 13 years ago
  62. 43b0686 try to use the same str object for all code filenames when compiling or unmarshalling (#12190) by Benjamin Peterson · 13 years ago
  63. 97e561e Avoid useless "++" at the end of functions by Victor Stinner · 13 years ago
  64. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  65. 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
  66. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  67. 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 14 years ago
  68. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago
  69. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  70. d4efd9e add column offset to all syntax errors by Benjamin Peterson · 14 years ago
  71. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  72. 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 14 years ago
  73. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  74. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  75. 252e8e2 Merged revisions 82171 via svnmerge from by Antoine Pitrou · 14 years ago
  76. 9aee2c8 Merged revisions 82169 via svnmerge from by Antoine Pitrou · 14 years ago
  77. 25bb0fd Merged revisions 82059,82061 via svnmerge from by Victor Stinner · 14 years ago
  78. 0fe25a4 Issue #6543: Write the traceback in the terminal encoding instead of utf-8. by Victor Stinner · 14 years ago
  79. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  80. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  81. e6dd2cb Merged revisions 79034 via svnmerge from by Benjamin Peterson · 14 years ago
  82. 192ce61 Merged revisions 76577 via svnmerge from by Mark Dickinson · 15 years ago
  83. a73ef2f Merged revisions 76575 via svnmerge from by Mark Dickinson · 15 years ago
  84. f6489f9 Merged revisions 75264,75268,75293,75318,75391-75392,75436,75478,75971,76003,76058,76140-76141,76231,76380,76428-76429 via svnmerge from by Benjamin Peterson · 15 years ago
  85. b42dab5 Merged revisions 75441 via svnmerge from by Mark Dickinson · 15 years ago
  86. 01458c7 Remove the uses of WITHOUT_COMPLEX introduced in r75471 by Mark Dickinson · 15 years ago
  87. 42e3055 Merged revisions 75440 via svnmerge from by Mark Dickinson · 15 years ago
  88. e441cb7 Issue #1754094: Improve the stack depth calculation in the compiler. by Neil Schemenauer · 15 years ago
  89. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  90. 3212337 unfortunately we can't kill compiler_new_tmpname here by Benjamin Peterson · 15 years ago
  91. 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 15 years ago
  92. d76c8da Merged revisions 73623-73624 via svnmerge from by Benjamin Peterson · 15 years ago
  93. 0289b15 Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from by Benjamin Peterson · 15 years ago
  94. 876b2f2 Merged revisions 72912,72920,72940 via svnmerge from by Benjamin Peterson · 15 years ago
  95. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  96. dcaf329 instead of hacking __locals__ in during bytecode generation, put it in the symtable by Benjamin Peterson · 15 years ago
  97. 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 15 years ago
  98. 5c6d787 Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,69293,69297-69301,69348 via svnmerge from by Benjamin Peterson · 15 years ago
  99. b58dda7 Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from by Benjamin Peterson · 16 years ago
  100. 371ccfb Merged revisions 67954 via svnmerge from by Benjamin Peterson · 16 years ago