1. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  2. 80d937e Fix for line events in the case: by Armin Rigo · 20 years ago
  3. ff5bc50 Improve byte coding for multiple assignments. by Raymond Hettinger · 20 years ago
  4. dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 20 years ago
  5. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  6. dd7eb14 Patch #792869: Clarify error message for parameters declared global, by Martin v. Löwis · 21 years ago
  7. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  8. 9832613 Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error. by Jeremy Hylton · 21 years ago
  9. cc1798e Improve the leak fix so that PyTuple_New is only called when needed. by Raymond Hettinger · 21 years ago
  10. 37a724d Fix leak discovered in test_new by Michael Hudson. by Raymond Hettinger · 21 years ago
  11. 376e63d Fix for SF bug [ 784075 ] Fatal Python error: unknown scope by Jeremy Hylton · 21 years ago
  12. 1955fcf SF patch 763201: handling of SyntaxErrors in symbol table build by Jeremy Hylton · 21 years ago
  13. b9572c3 Removed bytecode transformation for sequence packing/unpacking. by Raymond Hettinger · 21 years ago
  14. a1d654e SF bug #644345, Poor error message for augmented assign by Neal Norwitz · 21 years ago
  15. f9415e6 Use macro to get length of list. Remove comment about how code used to work. by Jeremy Hylton · 21 years ago
  16. 521482d Remove comment with very long lines that explained what the code used to do. by Jeremy Hylton · 21 years ago
  17. 4d508ad Fix for SF [ 734869 ] Lambda functions in list comprehensions by Jeremy Hylton · 21 years ago
  18. 12d55a7 cmp_type(): The grammar stopped allowing '=' as a comparison operator by Tim Peters · 21 years ago
  19. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  20. cd12bfc Patch #708604: Check more function results. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  21. 26848a3 Use Tim's suggestion to fix by Michael W. Hudson · 21 years ago
  22. f4cf76d Revert the previous enhancement to the bytecode optimizer. by Raymond Hettinger · 21 years ago
  23. 060641d Improved the bytecode optimizer. by Raymond Hettinger · 21 years ago
  24. 255a3d0 Extend SF patch #707257: Improve code generation by Raymond Hettinger · 21 years ago
  25. 5b75c38 Factored out test for absolute jumps. by Raymond Hettinger · 21 years ago
  26. f6f575a SF patch #707257: Improve code generation by Raymond Hettinger · 21 years ago
  27. b39903b symtable_cellvar_offsets(): This leaked references to little integers by Tim Peters · 21 years ago
  28. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  29. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 22 years ago
  30. 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 22 years ago
  31. 976249b A. Lloyd Flanagan pointed out a spelling error on c.l.py. by Michael W. Hudson · 22 years ago
  32. accb62b SF patch [ 597919 ] compiler package and SET_LINENO by Jeremy Hylton · 22 years ago
  33. 633d90c Oops. Roll back that last change. It wasn't ready for release. :-( by Guido van Rossum · 22 years ago
  34. 9c8a086 Add warning for assignment to None, True and False. This is patch by Guido van Rossum · 22 years ago
  35. 0698222 SF # 654960, remove unnecessary static variable by Neal Norwitz · 22 years ago
  36. 78429a6 Fixing bug by Gustavo Niemeyer · 22 years ago
  37. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  38. 4c6c765 Move three variables that are only used inside an if block into the block, by Walter Dörwald · 22 years ago
  39. 3ae3315 Clamp code objects' tp_compare result to [-1, 1]. by Michael W. Hudson · 22 years ago
  40. 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 22 years ago
  41. b716462 Add warnings for arguments named None. All set. (I could add a by Guido van Rossum · 22 years ago
  42. 63dd79a Add warning for None used as keyword argument name in function call. by Guido van Rossum · 22 years ago
  43. 3ac99d4 Add warnings for assignment or deletion of variables and attributes by Guido van Rossum · 22 years ago
  44. b081e0c Minor cleanup of parsename() and parsestr(): the 'struct compiling *' by Guido van Rossum · 22 years ago
  45. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  46. 9f00739 Added a FutureWarning for constructs that will change semantically in by Barry Warsaw · 22 years ago
  47. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  48. 715eca9 Use PyErr_WarnExplicit() to warn about hex/oct constants, so the by Guido van Rossum · 22 years ago
  49. 3cb8e54 Reset errno to zero after calling PyErr_Warn(). It can potentially do by Guido van Rossum · 22 years ago
  50. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  51. 2863c10 Use Py_FatalError instead of abort. by Martin v. Löwis · 22 years ago
  52. 019934b Fix PEP 263 code --without-unicode. Fixes #591943. by Martin v. Löwis · 22 years ago
  53. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  54. 80d4e2a SF patch #578297: by Andrew MacIntyre · 22 years ago
  55. 21ee37c remove spurious SET_LINENO from com_list_for and com_list_if. All they do by Skip Montanaro · 22 years ago
  56. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  57. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  58. 05ab2e6 Fix SF bug [ 561825 ] Confusing error for "del f()" by Jeremy Hylton · 22 years ago
  59. 05459c5 Accept u"..." literals even when Unicode is disabled. But these by Guido van Rossum · 22 years ago
  60. 2d3b986 Disambiguate the grammar for backtick. by Guido van Rossum · 22 years ago
  61. 89e3ee0 If Py_OptimizeFlag is false then always evaluate assert conditions, don't by Neil Schemenauer · 22 years ago
  62. 51e7f5c Moving pymalloc along. by Tim Peters · 22 years ago
  63. 314fc79 Patch #542659: Eliminate duplicate check for NULL of freevars/cellvars. by Martin v. Löwis · 22 years ago
  64. cfeb3b6 Patch #50002: Display line information for bad \x escapes: by Martin v. Löwis · 22 years ago
  65. 150d09d Fix missing space between words. Bugfix candidate. by Neal Norwitz · 23 years ago
  66. 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 23 years ago
  67. 340cbe7 A tentative fix for SF bug #503837 (Roeland Rengelink): by Guido van Rossum · 23 years ago
  68. 7198a52 Patch #494783: Rename cmp_op enumerators. by Martin v. Löwis · 23 years ago
  69. 733c893 Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code by Jeremy Hylton · 23 years ago
  70. 86424e3 SF bug #488687 reported by Neal Norwitz by Jeremy Hylton · 23 years ago
  71. 8f6d868 code_repr(), com_addop_varname(), com_list_comprehension(), by Barry Warsaw · 23 years ago
  72. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  73. 9f64caa Use PyObject_CheckReadBuffer(). by Jeremy Hylton · 23 years ago
  74. 778e265 Fix SF buf #480096: Assign to __debug__ still allowed by Jeremy Hylton · 23 years ago
  75. 8c5e415 Part of SF bug #478003 possible memory leaks in err handling. by Tim Peters · 23 years ago
  76. 961dfe0 Fix for SF bug [ #471928 ] global made w/nested list comprehensions by Jeremy Hylton · 23 years ago
  77. 93a569d Fix computation of stack depth for classdef and closures. by Jeremy Hylton · 23 years ago
  78. 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 23 years ago
  79. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  80. c785f48 Supply code objects a new-style tp_members slot and tp_getattr impl. by Jeremy Hylton · 23 years ago
  81. 51e2651 SF bug [#458941] Looks like a unary minus bug. by Tim Peters · 23 years ago
  82. 14ef244 When re-writing a factor containing a unary negation of a literal, only by Fred Drake · 23 years ago
  83. a2c2ae6 Removed unreachable goto statement to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  84. 71b6af9 If an integer constant can't be generated from an integer literal by Jeremy Hylton · 23 years ago
  85. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  86. 481081e Fix SF bug [ #450909 ] __future__.division fails at prompt by Jeremy Hylton · 23 years ago
  87. d5e5a2a SF Patch [ 429024 ] deal with some unary ops at compile time by Jeremy Hylton · 23 years ago
  88. 1abf610 Remove st_nested_scopes from struct symtable, by Jeremy Hylton · 23 years ago
  89. ff1f852 st_nested_scopes was uninitialized trash. Jeremy should fix in a better by Tim Peters · 23 years ago
  90. b857ba2 Refactor future feature handling by Jeremy Hylton · 23 years ago
  91. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  92. 6a53bd8 Another bug fix for recent import * warning (caught by Thomas Wouters) by Jeremy Hylton · 23 years ago
  93. ba591bf Fix error message for import * in function/class scope by Jeremy Hylton · 23 years ago
  94. 8a6f295 Fix SF bug [ #445474 ] warn about import * inside functions by Jeremy Hylton · 23 years ago
  95. e16c7ae jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base' by Guido van Rossum · 23 years ago
  96. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  97. 08a898f Another "if 0:" hack, this time to complain about otherwise invisible by Tim Peters · 23 years ago
  98. b6c3cea SF bug #436207: "if 0: yield x" is ignored. by Tim Peters · 23 years ago
  99. ad1a18b Change the semantics of "return" in generators, as discussed on the by Tim Peters · 23 years ago
  100. 95c80f8 Disallow 'yield' in a 'try' block when there's a 'finally' clause. by Tim Peters · 23 years ago