1. 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 17 years ago
  2. d7e1b2b static PyObject* variables should use PyString_InternFromString() instead of PyObject_FromString() to store a python string in a function level static var. by Christian Heimes · 17 years ago
  3. 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 17 years ago
  4. dff1fd9 Add comments by Raymond Hettinger · 17 years ago
  5. 70fcfd0 Bigger range for non-extended opargs. by Raymond Hettinger · 17 years ago
  6. eca2743 Zap a duplicate line by Raymond Hettinger · 17 years ago
  7. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
  8. effde12 Speed-up dictionary constructor by about 10%. by Raymond Hettinger · 17 years ago
  9. 5a5bc7b Fix #1169: remove docstrings in functions for -OO. by Georg Brandl · 18 years ago
  10. b90f52e Revert compile.c changes that shouldn't have been included in previous checkin by Nick Coghlan · 18 years ago
  11. 3af0e78 Revert misguided attempt at fixing incompatibility between -m and -i switches (better fix coming soon) by Nick Coghlan · 18 years ago
  12. d8672aa Fix compile.c so that it records 0.0 and -0.0 as separate constants in a code by Alex Martelli · 18 years ago
  13. a5ea689 Bug #1722484: remove docstrings again when running with -OO. by Georg Brandl · 18 years ago
  14. 819de6c tabify by Jeremy Hylton · 18 years ago
  15. 37075c5 Fix long-standing bug in name mangling for package imports by Jeremy Hylton · 18 years ago
  16. f733a01 Update comments, remove commented out code. by Neal Norwitz · 19 years ago
  17. 2c4fb8d Clean up a leftover from old listcomp generation code. by Georg Brandl · 19 years ago
  18. 21997af Fix bug #1565514, SystemError not raised on too many nested blocks. by Neal Norwitz · 19 years ago
  19. 82271f1 Fix for SF bug 1569998: break permitted inside try. by Jeremy Hylton · 19 years ago
  20. 4f096d9 Patch #1542451: disallow continue anywhere under a finally by Neal Norwitz · 19 years ago
  21. 87557cd Add assert to make Klocwork happy (#276) by Neal Norwitz · 19 years ago
  22. 644dddc Move peephole optimizer to separate file. by Jeremy Hylton · 19 years ago
  23. 84167d0 Even though _Py_Mangle() isn't truly public anyone can call it and by Neal Norwitz · 19 years ago
  24. 0cbd805 Bug #1333982: string/number constants were inappropriately stored by Neal Norwitz · 19 years ago
  25. 4ffedad Bug #1191458: tracing over for loops now produces a line event by Neal Norwitz · 19 years ago
  26. c173b48 Add some asserts and update comments by Neal Norwitz · 19 years ago
  27. f71847e If the for loop isn't entered, entryblock will be NULL. If passed by Neal Norwitz · 19 years ago
  28. b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 19 years ago
  29. d12bd01 Handle more memory allocation failures without crashing. by Neal Norwitz · 19 years ago
  30. 84be93b Bug #1512814, Fix incorrect lineno's when code within a function by Neal Norwitz · 19 years ago
  31. ed65755 Bug #1512814, Fix incorrect lineno's when code at module scope by Neal Norwitz · 19 years ago
  32. 0e07b60 Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation. by Neil Schemenauer · 19 years ago
  33. 2585ad5 Fix indentation of case and a Py_ssize_t issue. by Neal Norwitz · 19 years ago
  34. ddbaa66 Patch #1346214: correctly optimize away "if 0"-style stmts by Georg Brandl · 19 years ago
  35. 7784f12 Replace Py_BuildValue("OO") by PyTuple_Pack. by Georg Brandl · 19 years ago
  36. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 19 years ago
  37. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 19 years ago
  38. 869bacd revert - breaks build of Python/ast.c w/ gcc by Skip Montanaro · 19 years ago
  39. b940671 Use union to discriminate pointer types from enum/int types. by Skip Montanaro · 19 years ago
  40. d691f1a casting nastiness to make C++ compiler happy by Anthony Baxter · 19 years ago
  41. 2c33fc7 per Jeremy's email, remove the _WITH_CAST versions of macros. g++ by Anthony Baxter · 19 years ago
  42. 7b782b6 more low-hanging fruit to make code compile under a C++ compiler. Not by Anthony Baxter · 19 years ago
  43. 14bc4e4 Use PyObject_* allocator since FutureFeatures is small by Neal Norwitz · 19 years ago
  44. b183a25 Fix some warnings on HP-UX when using cc/aCC by Neal Norwitz · 19 years ago
  45. ed40ea1 Generate line number table entries for except handlers. by Jeremy Hylton · 19 years ago
  46. cbce280 Don't abbreviate ABS, use long name ABSOLUTE. by Neal Norwitz · 19 years ago
  47. 12603c4 Expand comments on line numbers and blocks. by Jeremy Hylton · 19 years ago
  48. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 19 years ago
  49. eadee9a Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly by Nick Coghlan · 19 years ago
  50. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
  51. 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 19 years ago
  52. d9cf85f Fix refleak if from __future__ import was not first by Neal Norwitz · 19 years ago
  53. 3a5468e Update known issues to reflect reality by Neal Norwitz · 19 years ago
  54. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 19 years ago
  55. e9357b2 Tabify and reflow some long lines. by Jeremy Hylton · 19 years ago
  56. 5e9f1fa Generally inehrit codeflags that are in PyCF_MASK, instead of writing it out by Thomas Wouters · 19 years ago
  57. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 19 years ago
  58. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
  59. 1175c43 Clarify C-style exception handling with proper label name. by Thomas Wouters · 19 years ago
  60. bfe51ea Fix assertions. by Thomas Wouters · 19 years ago
  61. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 19 years ago
  62. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 19 years ago
  63. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  64. 08b401f Fix icc warnings: single bit fields should be unsigned, shadowing local variables by Neal Norwitz · 19 years ago
  65. 9496261 Adjust usage of compiler_use_new_block to its return type. by Martin v. Löwis · 19 years ago
  66. 93d69a7 fixed compilation with an ordinary C89 compiler by Fredrik Lundh · 19 years ago
  67. 51abbc7 Fix Armin's bug 1333982. He found it, he didn't created it :-) by Neal Norwitz · 19 years ago
  68. 4e6bf49 Handle more error conditions with SystemError by Neal Norwitz · 19 years ago
  69. 87b801c Set MemoryError when alloc fails by Neal Norwitz · 19 years ago
  70. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  71. 28b32ac Simplify logic for handling import * by Neal Norwitz · 19 years ago
  72. 3715c3e Fix a few more ref leaks. Backport candidate by Neal Norwitz · 19 years ago
  73. 7bcabc6 Fix a few more memory leaks by Neal Norwitz · 19 years ago
  74. 4737b23 Last batch of ref leaks in new AST code. by Neal Norwitz · 19 years ago
  75. 944d3eb Correctly handle identifiers for anonymous scopes and align genexpr name with symtable.c by Nick Coghlan · 19 years ago
  76. b6fc9df Fix a lot of memory and ref leaks in error paths. by Neal Norwitz · 20 years ago
  77. 2744c6c make internal method static by Neal Norwitz · 20 years ago
  78. c396d9e Ensure that compiler_exit_scope() is called as necessary to free memory by Neil Schemenauer · 20 years ago
  79. f1d5068 Fix problem handling EXTENDED_ARGs from SF bug # 1333982 by Neal Norwitz · 20 years ago
  80. 7d37f2f cleanup a bit and reuse instrsize (instruction size). working towards fixing problems with EXTENDED_ARG by Neal Norwitz · 20 years ago
  81. dad06a1 Remove unnecessary local variable. by Neil Schemenauer · 20 years ago
  82. 8b528b2 Fix private name mangling. The symtable also must do mangles so that by Neil Schemenauer · 20 years ago
  83. 3a44aaa Use PyTuple_Pack instead of Py_BuildValue. by Neil Schemenauer · 20 years ago
  84. d403c45 Fix arigo's funky LOAD_NAME bug: implicit globals inside classes have by Neil Schemenauer · 20 years ago
  85. ac699ef Don't stop generating code for import statements after the first "import as" by Neil Schemenauer · 20 years ago
  86. ccd1921 Use <lamba> as the function name for lambdas (matches old compiler). by Neil Schemenauer · 20 years ago
  87. 3144130 ANSI-C-ify the placement of local var declarations. by Armin Rigo · 20 years ago
  88. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
  89. ea9dcdc com_yield_expr(): Squash new compiler wng about unreferenced local. by Tim Peters · 20 years ago
  90. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 20 years ago
  91. c9371d4 Fix signedness of various char variables to stop causing a warning under gcc 4. by Brett Cannon · 20 years ago
  92. 409d8f2 Allow classes to be defined with empty parentheses. This means that by Brett Cannon · 20 years ago
  93. 5dc8ced Silence a gcc warning about putting in parentheses around && expressions mixed by Brett Cannon · 20 years ago
  94. e63a078 Preserve sign of -0.0 when result is run through marshal. by Raymond Hettinger · 20 years ago
  95. 07359a7 Document how the pattern recognizer keeps all of its references in bounds. by Raymond Hettinger · 20 years ago
  96. 8012149 Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 20 years ago
  97. b615bf0 Remove the set conversion which didn't work with: [] in (0,) by Raymond Hettinger · 20 years ago
  98. 5e54796 Have set conversion replace existing constant if not used elsewhere. by Raymond Hettinger · 20 years ago
  99. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 20 years ago
  100. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 20 years ago