1. 1f05a3b Fix the array tests. Only a minor change to the C code was required. by Guido van Rossum · 17 years ago
  2. bce56a6 Fix some miscellaneous places that incorrectly insisted on str8. by Guido van Rossum · 17 years ago
  3. 83857e3 Use AsCharBuffer to get C strings out of Python strings. by Guido van Rossum · 17 years ago
  4. 0925e41 Forwardport checkin: by Walter Dörwald · 17 years ago
  5. cfe5f20 Got test_pickletools and test_pickle working. by Guido van Rossum · 17 years ago
  6. 617dbc4 Checkpoint. A b it closer to working pickles and pickletools. by Guido van Rossum · 17 years ago
  7. 32c38e7 Fix some trivial things in cPickle due to the renaming of the string types. by Guido van Rossum · 17 years ago
  8. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  9. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  10. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  11. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  12. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  13. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  14. 913dd0b struct.unpack() allows a bytes string too (if it has the right size). by Guido van Rossum · 17 years ago
  15. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  16. b5ddcfd Make array().tofile() work with a new I/O object. by Guido van Rossum · 17 years ago
  17. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  18. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  19. b042815 Make it possible to instantiate a _FileIO() with an integer file descriptor by Guido van Rossum · 17 years ago
  20. b8551ae Somehow this contained a bogus reference to "exceptions" which caused by Guido van Rossum · 17 years ago
  21. 3e81ec8 Address some XXXs from Neal Norwitz. by Collin Winter · 17 years ago
  22. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 17 years ago
  23. 7d71fb8 Little fixes: by Neal Norwitz · 17 years ago
  24. 670e692 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. by Collin Winter · 17 years ago
  25. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  26. af33438 Add a missing forward declaration for PyFileIO_Type. The _fileio module now compiles with --with-pydebug. by Collin Winter · 17 years ago
  27. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago
  28. e0387ec SF patch #1670209, Remove Py_PROTO from socket by Pete Shinners. by Neal Norwitz · 17 years ago
  29. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  30. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  31. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 17 years ago
  32. 452bf51 Essential changes for print function changes. by Guido van Rossum · 17 years ago
  33. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 17 years ago
  34. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  35. fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 18 years ago
  36. 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 18 years ago
  37. 018919a Merged revisions 53434 via svnmerge from by Guido van Rossum · 18 years ago
  38. 52d0178 Fix cPickle breakage due to last-minute change to the name of the 'long' type by Guido van Rossum · 18 years ago
  39. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  40. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  41. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  42. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  43. f6657e6 Cruft removal: by Neal Norwitz · 18 years ago
  44. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  45. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  46. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  47. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  48. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  49. 6309f2d Get parsermodule working again after adding set literals by Neal Norwitz · 18 years ago
  50. 2eca440 Get rid of some more cases of backquotes. parsermodule.c doesn't compile by Neal Norwitz · 18 years ago
  51. 0919a1a Part of SF patch #1513870 (the still relevant part) -- add reduce() to by Guido van Rossum · 18 years ago
  52. 5f5cfd1 Remove more '<>' usage. by Brett Cannon · 18 years ago
  53. db60d6e Remove more '<>' usage. by Brett Cannon · 18 years ago
  54. 1996059 Fix the datetime comparison conundrum. by Guido van Rossum · 18 years ago
  55. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  56. 3dfc3c1 Fix test_gc failure by fixing the bug test_gc found: __del__ methods were no by Thomas Wouters · 18 years ago
  57. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  58. 0da7e03 And the gdbm module's test now passes again. by Guido van Rossum · 18 years ago
  59. ef67111 Fix this right for has_key(). This required adding tp_as_sequence. by Guido van Rossum · 18 years ago
  60. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  61. 512ab9f Fixed cPickle, by restoring some of the deleted code. by Guido van Rossum · 18 years ago
  62. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  63. d033ddf Get rid of the last mention of WITH_CYCLE_GC that I could find. by Guido van Rossum · 18 years ago
  64. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  65. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  66. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  67. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  68. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  69. 13247bf Add empty __init__ methods for stateful multibytecodec instances. by Hye-Shik Chang · 18 years ago
  70. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  71. 9ada3d6 Merge trunk up to 43069, putting re.py back and hopefully making the branch by Thomas Wouters · 18 years ago
  72. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 18 years ago
  73. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  74. 227b533 Finish getting rid of statichere/staticforward by Neal Norwitz · 18 years ago
  75. 57c179c Remove staticforward and statichere by Neal Norwitz · 18 years ago
  76. a10f52e Remove PyArg_NoArgs() and PyArg_GetInt() by Neal Norwitz · 18 years ago
  77. 7096760 Get rid of xreadlines() (methods). by Neal Norwitz · 18 years ago
  78. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  79. 915d777 Try to avoid many of the compiler warnings when compiling libffi by by Thomas Heller · 18 years ago
  80. ab906a5 Cast an Py_ssize_t to int, to avoid a compiler warning. by Thomas Heller · 18 years ago
  81. fe8f862 Integrate patch from Neal Norwitz. He writes: by Thomas Heller · 18 years ago
  82. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 18 years ago
  83. abb903f Bug #1448490: Fix a bug that ISO-2022 codecs could not handle by Hye-Shik Chang · 18 years ago
  84. 44ed4db merged with cElementTree development trunk (1.0.6 snapshot): by Fredrik Lundh · 18 years ago
  85. b2820ae Fix another leak in bsddb, and avoid use of uninitialized value -- funny how by Thomas Wouters · 18 years ago
  86. c350912 Adjust CJK Ideograph range to Unicode 4.1. by Martin v. Löwis · 18 years ago
  87. 0e2f9b2 Fix refcounting bug. by Martin v. Löwis · 18 years ago
  88. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 18 years ago
  89. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  90. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  91. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 18 years ago
  92. d4c9320 Copy ctypes-0.9.9.4 sources from external into the trunk. by Thomas Heller · 18 years ago
  93. f3c4ad1 typo by Georg Brandl · 18 years ago
  94. 2f5e990 Fix logic error and DECREF reported by Coverity. by Neal Norwitz · 18 years ago
  95. b315383 Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful of by Thomas Wouters · 18 years ago
  96. e920f0d Reformulate 42903 using an if statement. by Martin v. Löwis · 18 years ago
  97. df44ab7 _hotshot hotshot_profiler(): If write_header() returned by Tim Peters · 18 years ago
  98. 516999e Fix bug introduced in rev. 42884. by Georg Brandl · 18 years ago
  99. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  100. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago