1. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 18 years ago
  2. 1a0270f Remove unused code. by Walter Dörwald · 18 years ago
  3. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 18 years ago
  4. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 18 years ago
  5. 0e41148 Use O_APPEND flag instead of seeking, when append mode is specified. by Walter Dörwald · 18 years ago
  6. 3a77c7a If append mode is specified seek to the end of the file. by Walter Dörwald · 18 years ago
  7. 5b0443c Use PyUnicode_FromFormat() directly in zipimporter_repr(). by Walter Dörwald · 18 years ago
  8. 4254e76 Change category(), bidirectional(), east_asian_width(), by Walter Dörwald · 18 years ago
  9. 0bbd8ab Simplify os_init() implementations by using PyErr_Format() by Walter Dörwald · 18 years ago
  10. 9cb0802 Remove unused variable. by Walter Dörwald · 18 years ago
  11. a7eb93e Simplify socket_repr() by using PyUnicode_FromFormat() by Walter Dörwald · 18 years ago
  12. cf47af4 Change time.strftime() to return a unicode string. by Walter Dörwald · 18 years ago
  13. baf853c Change timedelta.__str__() to return a unicode object. by Walter Dörwald · 18 years ago
  14. bafa137 Change isoformat() methods to return unicode strings. by Walter Dörwald · 18 years ago
  15. 4af32b3 Change format_ctime() to return unicode (i.e. by Walter Dörwald · 18 years ago
  16. 29478ef Merged revisions 55588-55630 via svnmerge from by Guido van Rossum · 18 years ago
  17. ad4404c Modernize. Values are now bytes. by Guido van Rossum · 18 years ago
  18. e625fd5 Make struct tests pass. by Guido van Rossum · 18 years ago
  19. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 18 years ago
  20. 2c94aa5 Fixed array.fromfile(); removed references to PyFileObject in array.tofile(). by Guido van Rossum · 18 years ago
  21. 78c1c4d Link _fileio statically -- it is needed during initialization. by Guido van Rossum · 18 years ago
  22. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 18 years ago
  23. d8595fe Refactor to avoid ultra-deeply-nested code. by Guido van Rossum · 18 years ago
  24. e3d1d41 Fix datetime and its test. by Guido van Rossum · 18 years ago
  25. 6252e10 Make gdbm and dumbdbm use byte strings. Updated their tests. by Guido van Rossum · 18 years ago
  26. 517bcfe Simplify append_keyword_tzinfo() by using PyUnicode_FromFormat(). by Walter Dörwald · 18 years ago
  27. 522a6c6 bz2 uses bytes everywhere (even for the 'newlines' attribute). test_bz2 passes. by Guido van Rossum · 18 years ago
  28. 776152b zlib now uses bytes everywhere, and the test passes. by Guido van Rossum · 18 years ago
  29. 4581ae5 Make test_base64 pass. by Guido van Rossum · 18 years ago
  30. 0e225aa Make binascii use byte strings everywhere (in and out). by Guido van Rossum · 18 years ago
  31. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 18 years ago
  32. d6ca546 Make test_zipfile pass. by Guido van Rossum · 18 years ago
  33. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 18 years ago
  34. c2f6a58 Remove unused variables. by Walter Dörwald · 18 years ago
  35. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 18 years ago
  36. b5b2270 Make test_socket pass. There was an unchecked error when a Unicode by Guido van Rossum · 18 years ago
  37. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 18 years ago
  38. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 18 years ago
  39. f4cfc8f Make test_codecs work. The CJK codecs now use bytes instead of str8 for by Guido van Rossum · 18 years ago
  40. af199fa Allow encoding names to be unicode strings. by Guido van Rossum · 18 years ago
  41. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 18 years ago
  42. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 18 years ago
  43. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 18 years ago
  44. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 18 years ago
  45. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 18 years ago
  46. 1f05a3b Fix the array tests. Only a minor change to the C code was required. by Guido van Rossum · 18 years ago
  47. bce56a6 Fix some miscellaneous places that incorrectly insisted on str8. by Guido van Rossum · 18 years ago
  48. 83857e3 Use AsCharBuffer to get C strings out of Python strings. by Guido van Rossum · 18 years ago
  49. 0925e41 Forwardport checkin: by Walter Dörwald · 18 years ago
  50. cfe5f20 Got test_pickletools and test_pickle working. by Guido van Rossum · 18 years ago
  51. 617dbc4 Checkpoint. A b it closer to working pickles and pickletools. by Guido van Rossum · 18 years ago
  52. 32c38e7 Fix some trivial things in cPickle due to the renaming of the string types. by Guido van Rossum · 18 years ago
  53. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 18 years ago
  54. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 18 years ago
  55. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
  56. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 18 years ago
  57. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 18 years ago
  58. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 18 years ago
  59. 913dd0b struct.unpack() allows a bytes string too (if it has the right size). by Guido van Rossum · 18 years ago
  60. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 18 years ago
  61. b5ddcfd Make array().tofile() work with a new I/O object. by Guido van Rossum · 18 years ago
  62. 8742977 truncate() returns the new size and position. by Guido van Rossum · 18 years ago
  63. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 18 years ago
  64. b042815 Make it possible to instantiate a _FileIO() with an integer file descriptor by Guido van Rossum · 18 years ago
  65. b8551ae Somehow this contained a bogus reference to "exceptions" which caused by Guido van Rossum · 18 years ago
  66. 3e81ec8 Address some XXXs from Neal Norwitz. by Collin Winter · 18 years ago
  67. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 18 years ago
  68. 7d71fb8 Little fixes: by Neal Norwitz · 18 years ago
  69. 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 · 18 years ago
  70. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
  71. af33438 Add a missing forward declaration for PyFileIO_Type. The _fileio module now compiles with --with-pydebug. by Collin Winter · 18 years ago
  72. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 18 years ago
  73. e0387ec SF patch #1670209, Remove Py_PROTO from socket by Pete Shinners. by Neal Norwitz · 18 years ago
  74. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
  75. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 19 years ago
  76. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 19 years ago
  77. 452bf51 Essential changes for print function changes. by Guido van Rossum · 19 years ago
  78. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 19 years ago
  79. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 19 years ago
  80. fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 19 years ago
  81. 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 19 years ago
  82. 018919a Merged revisions 53434 via svnmerge from by Guido van Rossum · 19 years ago
  83. 52d0178 Fix cPickle breakage due to last-minute change to the name of the 'long' type by Guido van Rossum · 19 years ago
  84. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 19 years ago
  85. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 19 years ago
  86. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 19 years ago
  87. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 19 years ago
  88. f6657e6 Cruft removal: by Neal Norwitz · 19 years ago
  89. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 19 years ago
  90. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 19 years ago
  91. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 19 years ago
  92. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 19 years ago
  93. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 19 years ago
  94. 6309f2d Get parsermodule working again after adding set literals by Neal Norwitz · 19 years ago
  95. 2eca440 Get rid of some more cases of backquotes. parsermodule.c doesn't compile by Neal Norwitz · 19 years ago
  96. 0919a1a Part of SF patch #1513870 (the still relevant part) -- add reduce() to by Guido van Rossum · 19 years ago
  97. 5f5cfd1 Remove more '<>' usage. by Brett Cannon · 19 years ago
  98. db60d6e Remove more '<>' usage. by Brett Cannon · 19 years ago
  99. 1996059 Fix the datetime comparison conundrum. by Guido van Rossum · 19 years ago
  100. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 19 years ago