1. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  2. 1792bfb Bypass peepholing of code with lineno tables having intervals >= 255. by Raymond Hettinger · 20 years ago
  3. 65d3c05 Fix typo in comment and add clarification. by Raymond Hettinger · 20 years ago
  4. ef0a82b Simplify chains of conditional jumps. (Suggested by Neal Norwitz.) by Raymond Hettinger · 20 years ago
  5. a12fa14 Incorporate review comments courtesy of Neal Norwitz: by Raymond Hettinger · 20 years ago
  6. fd2d1f7 SF Patch #1013667: Cleanup Peepholer Output by Raymond Hettinger · 20 years ago
  7. 1a78929 Move the bytecode optimizer upstream so that its results are saved in pyc by Raymond Hettinger · 20 years ago
  8. 0ccff07 This is Mark Russell's patch: by Michael W. Hudson · 20 years ago
  9. add3360 Correct the order of application for decorators. Meant to be bottom-up and not by Brett Cannon · 20 years ago
  10. 31f8350 Fix incorrect comment for (struct compiling)->c_cellvars by Brett Cannon · 20 years ago
  11. d459f53 code_new(): Wouldn't compile on Windows, because of gcc'ism. by Tim Peters · 20 years ago
  12. 6093462 Fix bug by Michael W. Hudson · 20 years ago
  13. 98bd181 SF bug #1004088: big code objects (>64K) may be optimized incorrectly by Raymond Hettinger · 20 years ago
  14. e51c4f9 Revert 2.312; turns out interning the file name did do some good (reducing by Michael W. Hudson · 20 years ago
  15. 782d8ff Don't intern the filename of a file being compiled. by Michael W. Hudson · 20 years ago
  16. 4e7785a fix for @decorators under a debug build. by Anthony Baxter · 20 years ago
  17. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  18. 11a70c7 Upgrade None assignment SyntaxWarning to a SyntaxError. by Raymond Hettinger · 20 years ago
  19. db5860b optimize_code(): Repaired gross error in new special-casing for None. by Tim Peters · 20 years ago
  20. 76d962d Treat None as a constant. by Raymond Hettinger · 20 years ago
  21. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  22. 43ea47f Move NOP to end of code transformation. by Raymond Hettinger · 20 years ago
  23. 9c18e81 Install two code generation optimizations that depend on NOP. by Raymond Hettinger · 20 years ago
  24. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  25. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  26. 80d937e Fix for line events in the case: by Armin Rigo · 21 years ago
  27. ff5bc50 Improve byte coding for multiple assignments. by Raymond Hettinger · 21 years ago
  28. dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 21 years ago
  29. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  30. dd7eb14 Patch #792869: Clarify error message for parameters declared global, by Martin v. Löwis · 21 years ago
  31. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  32. 9832613 Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error. by Jeremy Hylton · 21 years ago
  33. cc1798e Improve the leak fix so that PyTuple_New is only called when needed. by Raymond Hettinger · 21 years ago
  34. 37a724d Fix leak discovered in test_new by Michael Hudson. by Raymond Hettinger · 21 years ago
  35. 376e63d Fix for SF bug [ 784075 ] Fatal Python error: unknown scope by Jeremy Hylton · 21 years ago
  36. 1955fcf SF patch 763201: handling of SyntaxErrors in symbol table build by Jeremy Hylton · 21 years ago
  37. b9572c3 Removed bytecode transformation for sequence packing/unpacking. by Raymond Hettinger · 21 years ago
  38. a1d654e SF bug #644345, Poor error message for augmented assign by Neal Norwitz · 21 years ago
  39. f9415e6 Use macro to get length of list. Remove comment about how code used to work. by Jeremy Hylton · 21 years ago
  40. 521482d Remove comment with very long lines that explained what the code used to do. by Jeremy Hylton · 21 years ago
  41. 4d508ad Fix for SF [ 734869 ] Lambda functions in list comprehensions by Jeremy Hylton · 21 years ago
  42. 12d55a7 cmp_type(): The grammar stopped allowing '=' as a comparison operator by Tim Peters · 21 years ago
  43. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  44. cd12bfc Patch #708604: Check more function results. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  45. 26848a3 Use Tim's suggestion to fix by Michael W. Hudson · 21 years ago
  46. f4cf76d Revert the previous enhancement to the bytecode optimizer. by Raymond Hettinger · 21 years ago
  47. 060641d Improved the bytecode optimizer. by Raymond Hettinger · 21 years ago
  48. 255a3d0 Extend SF patch #707257: Improve code generation by Raymond Hettinger · 21 years ago
  49. 5b75c38 Factored out test for absolute jumps. by Raymond Hettinger · 22 years ago
  50. f6f575a SF patch #707257: Improve code generation by Raymond Hettinger · 22 years ago
  51. b39903b symtable_cellvar_offsets(): This leaked references to little integers by Tim Peters · 22 years ago
  52. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  53. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 22 years ago
  54. 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 22 years ago
  55. 976249b A. Lloyd Flanagan pointed out a spelling error on c.l.py. by Michael W. Hudson · 22 years ago
  56. accb62b SF patch [ 597919 ] compiler package and SET_LINENO by Jeremy Hylton · 22 years ago
  57. 633d90c Oops. Roll back that last change. It wasn't ready for release. :-( by Guido van Rossum · 22 years ago
  58. 9c8a086 Add warning for assignment to None, True and False. This is patch by Guido van Rossum · 22 years ago
  59. 0698222 SF # 654960, remove unnecessary static variable by Neal Norwitz · 22 years ago
  60. 78429a6 Fixing bug by Gustavo Niemeyer · 22 years ago
  61. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  62. 4c6c765 Move three variables that are only used inside an if block into the block, by Walter Dörwald · 22 years ago
  63. 3ae3315 Clamp code objects' tp_compare result to [-1, 1]. by Michael W. Hudson · 22 years ago
  64. 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 22 years ago
  65. b716462 Add warnings for arguments named None. All set. (I could add a by Guido van Rossum · 22 years ago
  66. 63dd79a Add warning for None used as keyword argument name in function call. by Guido van Rossum · 22 years ago
  67. 3ac99d4 Add warnings for assignment or deletion of variables and attributes by Guido van Rossum · 22 years ago
  68. b081e0c Minor cleanup of parsename() and parsestr(): the 'struct compiling *' by Guido van Rossum · 22 years ago
  69. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  70. 9f00739 Added a FutureWarning for constructs that will change semantically in by Barry Warsaw · 22 years ago
  71. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  72. 715eca9 Use PyErr_WarnExplicit() to warn about hex/oct constants, so the by Guido van Rossum · 22 years ago
  73. 3cb8e54 Reset errno to zero after calling PyErr_Warn(). It can potentially do by Guido van Rossum · 22 years ago
  74. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  75. 2863c10 Use Py_FatalError instead of abort. by Martin v. Löwis · 22 years ago
  76. 019934b Fix PEP 263 code --without-unicode. Fixes #591943. by Martin v. Löwis · 22 years ago
  77. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  78. 80d4e2a SF patch #578297: by Andrew MacIntyre · 22 years ago
  79. 21ee37c remove spurious SET_LINENO from com_list_for and com_list_if. All they do by Skip Montanaro · 22 years ago
  80. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  81. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  82. 05ab2e6 Fix SF bug [ 561825 ] Confusing error for "del f()" by Jeremy Hylton · 22 years ago
  83. 05459c5 Accept u"..." literals even when Unicode is disabled. But these by Guido van Rossum · 22 years ago
  84. 2d3b986 Disambiguate the grammar for backtick. by Guido van Rossum · 22 years ago
  85. 89e3ee0 If Py_OptimizeFlag is false then always evaluate assert conditions, don't by Neil Schemenauer · 22 years ago
  86. 51e7f5c Moving pymalloc along. by Tim Peters · 22 years ago
  87. 314fc79 Patch #542659: Eliminate duplicate check for NULL of freevars/cellvars. by Martin v. Löwis · 22 years ago
  88. cfeb3b6 Patch #50002: Display line information for bad \x escapes: by Martin v. Löwis · 23 years ago
  89. 150d09d Fix missing space between words. Bugfix candidate. by Neal Norwitz · 23 years ago
  90. 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 23 years ago
  91. 340cbe7 A tentative fix for SF bug #503837 (Roeland Rengelink): by Guido van Rossum · 23 years ago
  92. 7198a52 Patch #494783: Rename cmp_op enumerators. by Martin v. Löwis · 23 years ago
  93. 733c893 Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code by Jeremy Hylton · 23 years ago
  94. 86424e3 SF bug #488687 reported by Neal Norwitz by Jeremy Hylton · 23 years ago
  95. 8f6d868 code_repr(), com_addop_varname(), com_list_comprehension(), by Barry Warsaw · 23 years ago
  96. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  97. 9f64caa Use PyObject_CheckReadBuffer(). by Jeremy Hylton · 23 years ago
  98. 778e265 Fix SF buf #480096: Assign to __debug__ still allowed by Jeremy Hylton · 23 years ago
  99. 8c5e415 Part of SF bug #478003 possible memory leaks in err handling. by Tim Peters · 23 years ago
  100. 961dfe0 Fix for SF bug [ #471928 ] global made w/nested list comprehensions by Jeremy Hylton · 23 years ago