1. 9ea738e bpo-37500: Make sure dead code does not generate bytecode but also detect syntax errors (GH-14612) by Miss Islington (bot) · 5 years ago
  2. f7e4d36 bpo-34100: compile: Re-enable frozenset merging (GH-10760) by INADA Naoki · 6 years ago
  3. 1005c84 bpo-34100: Partially revert merge_consts_recursive() (GH-10743) by Victor Stinner · 6 years ago
  4. c2e1607 bpo-34100: Merge constants recursively (GH-8341) by INADA Naoki · 6 years ago
  5. 49fa4a9 bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418) by Gregory P. Smith · 6 years ago
  6. 34fd4c2 bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) by Serhiy Storchaka · 6 years ago
  7. fe2bbb1 bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822) by Serhiy Storchaka · 6 years ago
  8. b21d155 bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930) by Serhiy Storchaka · 6 years ago
  9. 782d6fe bpo-31113: Get rid of recursion in the compiler for normal control flow. (#3015) by Serhiy Storchaka · 7 years ago
  10. d4864c6 bpo-24340: Fix estimation of the code stack size. (#5076) by Serhiy Storchaka · 7 years ago
  11. 3325a67 bpo-27169: The __debug__ constant is now optimized out at compile time. (#4880) by Serhiy Storchaka · 7 years ago
  12. 067cbd0 Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 8 years ago
  13. 4102d25 Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 8 years ago
  14. 713640c Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 8 years ago
  15. 5bb8b91 Issue #18896: Python function can now have more than 255 parameters. by Serhiy Storchaka · 8 years ago
  16. a571120 Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). by Brett Cannon · 8 years ago
  17. febc332 Issue #26754: Undocumented support of general bytes-like objects by Serhiy Storchaka · 8 years ago
  18. 9305d83 Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as by Serhiy Storchaka · 8 years ago
  19. 3cdd5fb code_richcompare() now uses the constants types by Victor Stinner · 9 years ago
  20. 7e2b870 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 9 years ago
  21. 0d44111 Issue #25388: Fixed tokenizer crash when processing undecodable source code by Serhiy Storchaka · 9 years ago
  22. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
  23. d61d860 Issue #24802: Update test case for ValueError in 3.5 by Martin Panter · 9 years ago
  24. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  25. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  26. ee85339 in dict displays, evaluate the key before the value (closes #11205) by Benjamin Peterson · 9 years ago
  27. 076dbd0 Fix remaining tests and remove an unused import. by Berker Peksag · 9 years ago
  28. 273a720 merge 3.4 (#24022) by Benjamin Peterson · 9 years ago
  29. d73aca7 do not call into python api if an exception is set (#24022) by Benjamin Peterson · 9 years ago
  30. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  31. 607cb9c Issue #22221: Add tests for compile() with source encoding cookie. by Serhiy Storchaka · 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. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  34. aab9c2b Issue #5765: Apply a hard recursion limit in the compiler by Nick Coghlan · 12 years ago
  35. 77fc1f3 add another test case by Benjamin Peterson · 13 years ago
  36. cff9237 check after comments, too (#13832) by Benjamin Peterson · 13 years ago
  37. fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 13 years ago
  38. 43b0686 try to use the same str object for all code filenames when compiling or unmarshalling (#12190) by Benjamin Peterson · 13 years ago
  39. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  40. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  41. 5d2ad25 bring back commented out test by Benjamin Peterson · 14 years ago
  42. e6dd2cb Merged revisions 79034 via svnmerge from by Benjamin Peterson · 14 years ago
  43. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 15 years ago
  44. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  45. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  46. aeaa592 Merged revisions 76230 via svnmerge from by Benjamin Peterson · 15 years ago
  47. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  48. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  49. 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
  50. ec19d95 now that exec is a function, we can use the shorter assertRaises to test by Benjamin Peterson · 16 years ago
  51. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  52. db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 16 years ago
  53. 618dc5e Merged revisions 62004 via svnmerge from by Martin v. Löwis · 16 years ago
  54. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  55. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  56. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  57. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  58. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  59. f8761c7 Make test_compile not fail. by Guido van Rossum · 17 years ago
  60. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  61. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  62. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  63. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  64. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  65. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 17 years ago
  66. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  67. 63eecc7 Fix the last two tests. by Guido van Rossum · 17 years ago
  68. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  69. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  70. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  71. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  72. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  73. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  74. eadee9a Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly by Nick Coghlan · 18 years ago
  75. 6ab080c Fix problem handling EXTENDED_ARGs from SF bug # 1333982 by Neal Norwitz · 19 years ago
  76. 9047c8f SF bug #1048870: call arg of lambda not updating by Raymond Hettinger · 20 years ago
  77. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  78. 66bd233 Completed the patch for Bug #215126. by Raymond Hettinger · 20 years ago
  79. 11a70c7 Upgrade None assignment SyntaxWarning to a SyntaxError. by Raymond Hettinger · 20 years ago
  80. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  81. 8a99b50 SF patch #736962. Converted test_compile to unittest format. by Raymond Hettinger · 21 years ago
  82. 4327521 Added regression test for SF #757818 by Raymond Hettinger · 21 years ago
  83. eb2a5ef Fix SF bug #688424, 64-bit test problems by Neal Norwitz · 21 years ago
  84. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 21 years ago
  85. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 21 years ago
  86. fe8d84d Comment out a test that was anticipating SF patch 661536 -- but that by Guido van Rossum · 22 years ago
  87. 53b39d2 Verify treatment of unary minus on negative numbers SF bug #660455. by Guido van Rossum · 22 years ago
  88. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  89. 6b17abf Fix SF Bug 564931: compile() traceback must include filename. by Thomas Heller · 22 years ago
  90. 79b5b5b Don't munge __debug__ and leave it that way. by Jeremy Hylton · 23 years ago
  91. 778e265 Fix SF buf #480096: Assign to __debug__ still allowed by Jeremy Hylton · 23 years ago
  92. d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
  93. 9aa70d9 SF bug [#455775] float parsing discrepancy. by Tim Peters · 23 years ago
  94. 0009c4e Whitespace normalization. by Tim Peters · 23 years ago
  95. 121b6eb SF patch #103749: implicit tuple + default arg by Jeremy Hylton · 23 years ago
  96. 047e2c9 add test for SyntaxError on def f(a): global a by Jeremy Hylton · 24 years ago
  97. f785042 a bold attempt to fix things broken by MAL's verify patch: import by Fredrik Lundh · 24 years ago
  98. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
  99. fdee0f0 added test case for fixed duplicate arguments bug in Python/compile.c by Peter Schneider-Kamp · 24 years ago