1. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  2. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  3. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  4. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  5. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  6. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
  7. 2eca440 Get rid of some more cases of backquotes. parsermodule.c doesn't compile by Neal Norwitz · 18 years ago
  8. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  9. b65fb33 SF patch 1546297 (with some tweaks): by Guido van Rossum · 18 years ago
  10. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
  11. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  12. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  13. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  14. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  15. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  16. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  17. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  18. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  19. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  20. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  21. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  22. a0867f7 Optimizations for bytes reallocation. by Guido van Rossum · 18 years ago
  23. d624f18 Added much functionality to the bytes type. by Guido van Rossum · 18 years ago
  24. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago
  25. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  26. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 18 years ago
  27. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  28. 57c179c Remove staticforward and statichere by Neal Norwitz · 18 years ago
  29. a10f52e Remove PyArg_NoArgs() and PyArg_GetInt() by Neal Norwitz · 18 years ago
  30. e7086d4 INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). by Neal Norwitz · 18 years ago
  31. 712ce45 _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer by Neal Norwitz · 18 years ago
  32. ade612b This gets at least test_cmd_line working again and a few more modules built. by Neal Norwitz · 18 years ago
  33. b2eaa44 Remove some old types for int based functions (Py_ssize_t is da thing now.) by Neal Norwitz · 18 years ago
  34. fe55464 Whitespace changes. Also remove apply from a few comments by Neal Norwitz · 18 years ago
  35. c6d210c Get rid of last vestiges of BINARY_DIVIDE. by Neal Norwitz · 18 years ago
  36. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  37. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 18 years ago
  38. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  39. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  40. 7b216c5 Make PyGC_Collect() use Py_ssize_t. by Neal Norwitz · 18 years ago
  41. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  42. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 18 years ago
  43. 8c49c82 Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. by Neal Norwitz · 18 years ago
  44. 6fd92dc Added words about what PyArena_Malloc() does. by Tim Peters · 18 years ago
  45. cb9426b Beefed up description of what this does; new XXX. by Tim Peters · 18 years ago
  46. 5f4390f New XXX pointing out errors in the description of by Tim Peters · 18 years ago
  47. 8cfaa0e Trimmed trailing whitespace. by Tim Peters · 18 years ago
  48. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  49. 6db0e00 Change GC refcount to Py_ssize_t. by Martin v. Löwis · 18 years ago
  50. 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 18 years ago
  51. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  52. 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 18 years ago
  53. e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 18 years ago
  54. ca82a8b Move #include to outside "extern C {}", before Tim figures out it'll break VC++. by Thomas Wouters · 18 years ago
  55. e4d3a72 Include code.h more sanely. by Thomas Wouters · 18 years ago
  56. 090b3dd No need to export PySTEntry_New, it is only used in symtable.c by Neal Norwitz · 18 years ago
  57. e42e405 Martin owns PEP 353 and did most of the work by Neal Norwitz · 18 years ago
  58. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  59. a829313 Remove asdl_seq_APPEND() and simplify asdl seq implementation. by Jeremy Hylton · 18 years ago
  60. 77f1bb2 Real arena implementation by Jeremy Hylton · 18 years ago
  61. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  62. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  63. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  64. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  65. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  66. ab51f5f Per discussion on python-dev, remove CO_GENERATOR_ALLOWED. Leave comment about not removing yet. by Neal Norwitz · 18 years ago
  67. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  68. 0090a4c Generators have been permanent for a while. This comment is no longer applicable. by Neal Norwitz · 18 years ago
  69. 2d65b55 Fix intptr_t fallback for Py_ssize_t. by Martin v. Löwis · 18 years ago
  70. 4129068 Change _PyObject_GC_Resize to expect Py_ssize_t. by Martin v. Löwis · 18 years ago
  71. 97c65a8 Use Py_ssize_t for field sizes and offsets. by Martin v. Löwis · 18 years ago
  72. 44e379d Allow for ssize_t field offsets. by Martin v. Löwis · 18 years ago
  73. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  74. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  75. b941825 Fix PyGC_Collect() to be exported from the built DLL on Windows. (Fix given by Barry Warsaw · 18 years ago
  76. 8208b64 Fix icc warnings: single bit fields should be unsigned by Neal Norwitz · 19 years ago
  77. 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 19 years ago
  78. c3d12ac const poisoning, spreading to fix new const warnings in _winreg.c. by Tim Peters · 19 years ago
  79. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
  80. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  81. cc117db moved magic into structure (mainly to simplify the client code) by Fredrik Lundh · 19 years ago
  82. d7a4288 renamed dispatch -> capi to match other CAPI implementations by Fredrik Lundh · 19 years ago
  83. c334504 added cobject-based expat dispatch mechanism to pyexpat by Fredrik Lundh · 19 years ago
  84. 897ff81 SF #1373150, diffs in working copy after a build by Neal Norwitz · 19 years ago
  85. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  86. 7b5a604 Whoops, checkin consistent versions of *all* files to stop polluting by Neal Norwitz · 19 years ago
  87. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  88. 2576c97 _PyUnicode_IsWhitespace(), by Tim Peters · 19 years ago
  89. 921fa85 use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-Py PREFIXED macros, etc? by Neal Norwitz · 19 years ago
  90. 62c2fac Do not pollute name block_ty, prefix with _Py_ by Neal Norwitz · 19 years ago
  91. 38eb50b use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-Py PREFIXED macros, etc? by Neal Norwitz · 19 years ago
  92. 8b528b2 Fix private name mangling. The symtable also must do mangles so that by Neil Schemenauer · 19 years ago
  93. f3ddaee Correct error to PyRun_SimpleString macro introduced in AST merge. by Mark Hammond · 19 years ago
  94. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  95. 358d938 Remove INT_MIN that came from the AST merge. by Neal Norwitz · 19 years ago
  96. 58a7985 Use the newer names for APIs after the AST merge by Neal Norwitz · 19 years ago
  97. 6d777bb Remove dup declarations after AST merge by Neal Norwitz · 19 years ago
  98. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  99. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  100. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 19 years ago