1. ea9dcdc com_yield_expr(): Squash new compiler wng about unreferenced local. by Tim Peters · 19 years ago
  2. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  3. c9371d4 Fix signedness of various char variables to stop causing a warning under gcc 4. by Brett Cannon · 19 years ago
  4. 409d8f2 Allow classes to be defined with empty parentheses. This means that by Brett Cannon · 19 years ago
  5. 5dc8ced Silence a gcc warning about putting in parentheses around && expressions mixed by Brett Cannon · 19 years ago
  6. e63a078 Preserve sign of -0.0 when result is run through marshal. by Raymond Hettinger · 19 years ago
  7. 07359a7 Document how the pattern recognizer keeps all of its references in bounds. by Raymond Hettinger · 19 years ago
  8. 8012149 Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 19 years ago
  9. b615bf0 Remove the set conversion which didn't work with: [] in (0,) by Raymond Hettinger · 19 years ago
  10. 5e54796 Have set conversion replace existing constant if not used elsewhere. by Raymond Hettinger · 19 years ago
  11. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 19 years ago
  12. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 19 years ago
  13. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 19 years ago
  14. 664b43b Re-running python with/without the -Qnew flag uses incorrectly optimized by Armin Rigo · 20 years ago
  15. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  16. 16b0479 SF patch 1025636: Check for NULL returns in compile.c:com_import_stmt by Jeremy Hylton · 20 years ago
  17. 5dec096 Maintain peepholer's cumlc invariant by updating the running total by Raymond Hettinger · 20 years ago
  18. 099ecfb Simplify and future proof NOP counting in the peepholer. by Raymond Hettinger · 20 years ago
  19. d7bcf4d Fixed a comment and added another one. by Armin Rigo · 20 years ago
  20. effb393 Adopt some peepholer suggestions from Armin Rigo: by Raymond Hettinger · 20 years ago
  21. 23109ef SF bug #1053819: Segfault in tuple_of_constants by Raymond Hettinger · 20 years ago
  22. 9047c8f SF bug #1048870: call arg of lambda not updating by Raymond Hettinger · 20 years ago
  23. fec0c46 Improve error message for augmented assignments to genexps or listcomps. by Raymond Hettinger · 20 years ago
  24. 8ffc141 Fix two erroneous error messages. by Raymond Hettinger · 20 years ago
  25. 06cc973 Replaced a test with an assertion. (Suggested by Michael Hudson.) by Raymond Hettinger · 20 years ago
  26. 2c31a05 SF patch #1031667: Fold tuples of constants into a single constant by Raymond Hettinger · 20 years ago
  27. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  28. 1792bfb Bypass peepholing of code with lineno tables having intervals >= 255. by Raymond Hettinger · 20 years ago
  29. 65d3c05 Fix typo in comment and add clarification. by Raymond Hettinger · 20 years ago
  30. ef0a82b Simplify chains of conditional jumps. (Suggested by Neal Norwitz.) by Raymond Hettinger · 20 years ago
  31. a12fa14 Incorporate review comments courtesy of Neal Norwitz: by Raymond Hettinger · 20 years ago
  32. fd2d1f7 SF Patch #1013667: Cleanup Peepholer Output by Raymond Hettinger · 20 years ago
  33. 1a78929 Move the bytecode optimizer upstream so that its results are saved in pyc by Raymond Hettinger · 20 years ago
  34. 0ccff07 This is Mark Russell's patch: by Michael W. Hudson · 20 years ago
  35. add3360 Correct the order of application for decorators. Meant to be bottom-up and not by Brett Cannon · 20 years ago
  36. 31f8350 Fix incorrect comment for (struct compiling)->c_cellvars by Brett Cannon · 20 years ago
  37. d459f53 code_new(): Wouldn't compile on Windows, because of gcc'ism. by Tim Peters · 20 years ago
  38. 6093462 Fix bug by Michael W. Hudson · 20 years ago
  39. 98bd181 SF bug #1004088: big code objects (>64K) may be optimized incorrectly by Raymond Hettinger · 20 years ago
  40. e51c4f9 Revert 2.312; turns out interning the file name did do some good (reducing by Michael W. Hudson · 20 years ago
  41. 782d8ff Don't intern the filename of a file being compiled. by Michael W. Hudson · 20 years ago
  42. 4e7785a fix for @decorators under a debug build. by Anthony Baxter · 20 years ago
  43. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  44. 11a70c7 Upgrade None assignment SyntaxWarning to a SyntaxError. by Raymond Hettinger · 20 years ago
  45. db5860b optimize_code(): Repaired gross error in new special-casing for None. by Tim Peters · 20 years ago
  46. 76d962d Treat None as a constant. by Raymond Hettinger · 20 years ago
  47. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  48. 43ea47f Move NOP to end of code transformation. by Raymond Hettinger · 20 years ago
  49. 9c18e81 Install two code generation optimizations that depend on NOP. by Raymond Hettinger · 20 years ago
  50. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  51. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  52. 80d937e Fix for line events in the case: by Armin Rigo · 20 years ago
  53. ff5bc50 Improve byte coding for multiple assignments. by Raymond Hettinger · 20 years ago
  54. dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 20 years ago
  55. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  56. dd7eb14 Patch #792869: Clarify error message for parameters declared global, by Martin v. Löwis · 21 years ago
  57. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  58. 9832613 Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error. by Jeremy Hylton · 21 years ago
  59. cc1798e Improve the leak fix so that PyTuple_New is only called when needed. by Raymond Hettinger · 21 years ago
  60. 37a724d Fix leak discovered in test_new by Michael Hudson. by Raymond Hettinger · 21 years ago
  61. 376e63d Fix for SF bug [ 784075 ] Fatal Python error: unknown scope by Jeremy Hylton · 21 years ago
  62. 1955fcf SF patch 763201: handling of SyntaxErrors in symbol table build by Jeremy Hylton · 21 years ago
  63. b9572c3 Removed bytecode transformation for sequence packing/unpacking. by Raymond Hettinger · 21 years ago
  64. a1d654e SF bug #644345, Poor error message for augmented assign by Neal Norwitz · 21 years ago
  65. f9415e6 Use macro to get length of list. Remove comment about how code used to work. by Jeremy Hylton · 21 years ago
  66. 521482d Remove comment with very long lines that explained what the code used to do. by Jeremy Hylton · 21 years ago
  67. 4d508ad Fix for SF [ 734869 ] Lambda functions in list comprehensions by Jeremy Hylton · 21 years ago
  68. 12d55a7 cmp_type(): The grammar stopped allowing '=' as a comparison operator by Tim Peters · 21 years ago
  69. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  70. cd12bfc Patch #708604: Check more function results. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  71. 26848a3 Use Tim's suggestion to fix by Michael W. Hudson · 21 years ago
  72. f4cf76d Revert the previous enhancement to the bytecode optimizer. by Raymond Hettinger · 21 years ago
  73. 060641d Improved the bytecode optimizer. by Raymond Hettinger · 21 years ago
  74. 255a3d0 Extend SF patch #707257: Improve code generation by Raymond Hettinger · 21 years ago
  75. 5b75c38 Factored out test for absolute jumps. by Raymond Hettinger · 21 years ago
  76. f6f575a SF patch #707257: Improve code generation by Raymond Hettinger · 21 years ago
  77. b39903b symtable_cellvar_offsets(): This leaked references to little integers by Tim Peters · 21 years ago
  78. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 21 years ago
  79. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 21 years ago
  80. 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 21 years ago
  81. 976249b A. Lloyd Flanagan pointed out a spelling error on c.l.py. by Michael W. Hudson · 22 years ago
  82. accb62b SF patch [ 597919 ] compiler package and SET_LINENO by Jeremy Hylton · 22 years ago
  83. 633d90c Oops. Roll back that last change. It wasn't ready for release. :-( by Guido van Rossum · 22 years ago
  84. 9c8a086 Add warning for assignment to None, True and False. This is patch by Guido van Rossum · 22 years ago
  85. 0698222 SF # 654960, remove unnecessary static variable by Neal Norwitz · 22 years ago
  86. 78429a6 Fixing bug by Gustavo Niemeyer · 22 years ago
  87. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  88. 4c6c765 Move three variables that are only used inside an if block into the block, by Walter Dörwald · 22 years ago
  89. 3ae3315 Clamp code objects' tp_compare result to [-1, 1]. by Michael W. Hudson · 22 years ago
  90. 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 22 years ago
  91. b716462 Add warnings for arguments named None. All set. (I could add a by Guido van Rossum · 22 years ago
  92. 63dd79a Add warning for None used as keyword argument name in function call. by Guido van Rossum · 22 years ago
  93. 3ac99d4 Add warnings for assignment or deletion of variables and attributes by Guido van Rossum · 22 years ago
  94. b081e0c Minor cleanup of parsename() and parsestr(): the 'struct compiling *' by Guido van Rossum · 22 years ago
  95. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  96. 9f00739 Added a FutureWarning for constructs that will change semantically in by Barry Warsaw · 22 years ago
  97. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  98. 715eca9 Use PyErr_WarnExplicit() to warn about hex/oct constants, so the by Guido van Rossum · 22 years ago
  99. 3cb8e54 Reset errno to zero after calling PyErr_Warn(). It can potentially do by Guido van Rossum · 22 years ago
  100. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago