1. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  2. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  3. 7ce29ca Whitespace cleanup. by Thomas Wouters · 17 years ago
  4. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  5. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  6. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  7. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  8. da059e3 Use unicode by Neal Norwitz · 17 years ago
  9. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  10. 486364b Merged revisions 56020-56124 via svnmerge from by Guido van Rossum · 17 years ago
  11. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  12. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  13. 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 17 years ago
  14. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  15. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  16. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  17. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  18. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  19. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  20. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  21. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  22. 3959046 Make it so TypeError is raised if an instance of an object is put in an by Brett Cannon · 18 years ago
  23. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 18 years ago
  24. f74225d You can no longer catch non-BaseException objects; TypeError is raised if such by Brett Cannon · 18 years ago
  25. a44f3a3 Merged revisions 53912-53951 via svnmerge from by Thomas Wouters · 18 years ago
  26. 94ab000 Fix a refleak in the MAKE_FUNCTION opcode in ceval.c. by Georg Brandl · 18 years ago
  27. 00e41de Bytes literal. by Thomas Wouters · 18 years ago
  28. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 18 years ago
  29. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 18 years ago
  30. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 18 years ago
  31. e33a611 Fix minor grammar typo. by Brett Cannon · 18 years ago
  32. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  33. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  34. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  35. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  36. 29602e4 Make it compile with older compilers. by Guido van Rossum · 18 years ago
  37. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  38. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  39. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  40. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
  41. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  42. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  43. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  44. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  45. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  46. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  47. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  48. 712ce45 _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer by Neal Norwitz · 18 years ago
  49. c6d210c Get rid of last vestiges of BINARY_DIVIDE. by Neal Norwitz · 18 years ago
  50. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  51. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
  52. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  53. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
  54. 814e938 Use Py_ssize_t since we are working with list size below by Neal Norwitz · 19 years ago
  55. 7f59732 Put back the essence of Jeremy's original XXX comment. by Thomas Wouters · 19 years ago
  56. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
  57. 1a5e21e Updates to the with-statement: by Guido van Rossum · 19 years ago
  58. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
  59. a7446e3 Check the return code for PyErr_Warn() when warning about raising string by Brett Cannon · 19 years ago
  60. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 19 years ago
  61. 1dc5a84 Bug #801349: document that start/stop/step slice arguments can be None by Georg Brandl · 19 years ago
  62. dde99d2 Remove size constraints in SLICE opcodes. by Martin v. Löwis · 19 years ago
  63. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  64. 03ca23d Explain the clearing of the stack in a comment in Python/ceval.c's by Thomas Wouters · 19 years ago
  65. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  66. 5f5153e Fix some mods that got dropped from the AST merge by Neal Norwitz · 19 years ago
  67. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  68. 1c2d7e5 clean-up tracing of C functions. In particular, don't call the trace func by Armin Rigo · 19 years ago
  69. e2eca0b Port from the Python 2.4 branch, patches for SF bug # 900092, by Barry Warsaw · 19 years ago
  70. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  71. c9371d4 Fix signedness of various char variables to stop causing a warning under gcc 4. by Brett Cannon · 19 years ago
  72. 55fa66d Add comments about PyThreadState and the usage of its fields. by Brett Cannon · 19 years ago
  73. b6fa281 Make a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to define by Hye-Shik Chang · 19 years ago
  74. 75eabd2 Change the name of the macro used by --with-tsc builds to the less by Michael W. Hudson · 20 years ago
  75. c9a4762 comment tweak by Skip Montanaro · 20 years ago
  76. 4c79a83 Hye-Shik Chang's fix for Bug 875692. by Kurt B. Kaiser · 20 years ago
  77. 7f468f2 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick by Tim Peters · 20 years ago
  78. cfc3192 SF bug #1014215: Unspecific errors with metaclass by Raymond Hettinger · 20 years ago
  79. 87fa785 Centralize WITH_TSC processing. by Martin v. Löwis · 20 years ago
  80. 800ba23 This is my patch: by Michael W. Hudson · 20 years ago
  81. 618fbf5 This was quite a dark bug in my recent in-place string concatenation by Armin Rigo · 20 years ago
  82. 52a21b8 SF patch #980695: efficient string concatenation by Raymond Hettinger · 20 years ago
  83. a3711f7 Fix for the unfortunate fact that PyDict_GetItem and PyObject_GetItem by Michael W. Hudson · 20 years ago
  84. 66bd233 Completed the patch for Bug #215126. by Raymond Hettinger · 20 years ago
  85. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  86. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  87. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  88. 8d97e33 Patch #966493: Cleanup generator/eval_frame exposure. by Martin v. Löwis · 20 years ago
  89. a7f56bc Get ceval.c to compile again by moving declarations before other statments. by Raymond Hettinger · 20 years ago
  90. d858a77 Massive performance improvement for C extension and builtin tracing code by Nicholas Bastin · 20 years ago
  91. 941b8bc Less ugly #ifdefs for C profiling fix by Nicholas Bastin · 20 years ago
  92. bbffbd1 One forgotten C profiling #ifdef by Nicholas Bastin · 20 years ago
  93. 4c70b69 Making C profiling a configure option (at least temporarily) by Nicholas Bastin · 20 years ago
  94. 9c18e81 Install two code generation optimizations that depend on NOP. by Raymond Hettinger · 20 years ago
  95. 8817fcd Performance tweak: allow stack_pointer and oparg to be register variables. by Armin Rigo · 20 years ago
  96. f30d60e Patch #510695: Add TSC profiling for the VM. by Martin v. Löwis · 20 years ago
  97. f2c0830 SF bug #963956: Bad error mesage when subclassing a module by Raymond Hettinger · 20 years ago
  98. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 20 years ago
  99. c8aa08b Some (but not all) of the why code bitfield tests ran faster as by Raymond Hettinger · 20 years ago
  100. 5bed456 Revert 2.393, elimination of pre-decrementing, which by Raymond Hettinger · 20 years ago