1. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  2. 7b955bd Fix pdb help command. by Alexandre Vassalotti · 17 years ago
  3. 46a05a7 The bufsize argument to Popen() should accept None meaning the default (0). by Guido van Rossum · 17 years ago
  4. ad5b9de Change normalize_encodings() to avoid using .translate() or depending on by Guido van Rossum · 17 years ago
  5. c3b6ac7 Fix libc_ver(): libc_ver() was reading sys.executable by Walter Dörwald · 17 years ago
  6. 94093ff Change most sys attributes that were str8 objects into str objects by Walter Dörwald · 17 years ago
  7. 3d1d712 Don't lie in error messages from str8. by Guido van Rossum · 17 years ago
  8. 4c271fe Fix test_str.py so that it tests the str8 class. by Walter Dörwald · 17 years ago
  9. 756f139 Register a dispatcher for str8. (This makes test_copy.py pass again.) by Walter Dörwald · 17 years ago
  10. a92b446 Fix test_deque.py: Read and write file in text mode, by Walter Dörwald · 17 years ago
  11. 092a225 Fix tests for unicode-internal codec. by Walter Dörwald · 17 years ago
  12. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  13. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  14. 0e41148 Use O_APPEND flag instead of seeking, when append mode is specified. by Walter Dörwald · 17 years ago
  15. 5b1284d Fix gzip.py: Use bytes where 8bit strings have been used formerly. by Walter Dörwald · 17 years ago
  16. 3a77c7a If append mode is specified seek to the end of the file. by Walter Dörwald · 17 years ago
  17. fee1af9 Fix test_codeccallbacks.py: bytes has no % operator. by Walter Dörwald · 17 years ago
  18. 933daed Use PyUnicode_FromFormat() directly. by Walter Dörwald · 17 years ago
  19. 2a0c081 Change sys.intern() so that unicode strings can be by Walter Dörwald · 17 years ago
  20. 360b01a Change getdefaultencoding() and getfilesystemencoding() by Walter Dörwald · 17 years ago
  21. e7efd59 Make the name of the C variables match the Python names by Walter Dörwald · 17 years ago
  22. b41bb79 unichr() is named chr() now => fix name in error message. by Walter Dörwald · 17 years ago
  23. 233ccf2 Change int_oct() and int_hex() to return unicode objects. by Walter Dörwald · 17 years ago
  24. 5b0443c Use PyUnicode_FromFormat() directly in zipimporter_repr(). by Walter Dörwald · 17 years ago
  25. 4254e76 Change category(), bidirectional(), east_asian_width(), by Walter Dörwald · 17 years ago
  26. 0bbd8ab Simplify os_init() implementations by using PyErr_Format() by Walter Dörwald · 17 years ago
  27. 9cb0802 Remove unused variable. by Walter Dörwald · 17 years ago
  28. a7eb93e Simplify socket_repr() by using PyUnicode_FromFormat() by Walter Dörwald · 17 years ago
  29. 787b03b PyUnicode_FromFormat() does support %02x, so use it by Walter Dörwald · 17 years ago
  30. cf47af4 Change time.strftime() to return a unicode string. by Walter Dörwald · 17 years ago
  31. baf853c Change timedelta.__str__() to return a unicode object. by Walter Dörwald · 17 years ago
  32. bafa137 Change isoformat() methods to return unicode strings. by Walter Dörwald · 17 years ago
  33. 4af32b3 Change format_ctime() to return unicode (i.e. by Walter Dörwald · 17 years ago
  34. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  35. 346737f Add support for width, precision and zeropadding to the %d, %i, %u and %x by Walter Dörwald · 17 years ago
  36. 3e1b85e Add a helper to display the various flags and components of code objects by Guido van Rossum · 17 years ago
  37. dc089b6 Fix test_openpty. by Guido van Rossum · 17 years ago
  38. 93f3910 types.StringType is gone, use str directly instead. by Walter Dörwald · 17 years ago
  39. 865b003 Remove debug print. by Walter Dörwald · 17 years ago
  40. a327000 Fix typo. by Walter Dörwald · 17 years ago
  41. 812d834 Fix test_pty.py. by Walter Dörwald · 17 years ago
  42. c025714 Fix file test. by Walter Dörwald · 17 years ago
  43. 29478ef Merged revisions 55588-55630 via svnmerge from by Guido van Rossum · 17 years ago
  44. 644e149 Get rid of a test for repr() of a file object. by Guido van Rossum · 17 years ago
  45. ad4404c Modernize. Values are now bytes. by Guido van Rossum · 17 years ago
  46. ff12e08 Make the binhex test pass on Darwin. by Guido van Rossum · 17 years ago
  47. a01a8b6 Remove use of types.StringType. by Guido van Rossum · 17 years ago
  48. c5b6ab0 Use input(), not our own fake raw input (in one place). by Guido van Rossum · 17 years ago
  49. e625fd5 Make struct tests pass. by Guido van Rossum · 17 years ago
  50. 54ad523 Make xmlrpclib fail less (test_sundry passes). by Guido van Rossum · 17 years ago
  51. 859b5ec Add isatty() to TextIOWrapper. by Guido van Rossum · 17 years ago
  52. eba7696 Make input9) behave properly with the new I/O library. by Guido van Rossum · 17 years ago
  53. f5bec7c Change tp_str implementations of exception classes to return unicode strings. by Walter Dörwald · 17 years ago
  54. 63236cf Minimal fixes to save the bootstrap on OSX. by Guido van Rossum · 17 years ago
  55. adee45e Merged revisions 55545-55587 via svnmerge from by Guido van Rossum · 17 years ago
  56. 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 17 years ago
  57. e65c86c Document the existence of PyUnicode_InternInPlace() and by Walter Dörwald · 17 years ago
  58. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 17 years ago
  59. 34a042d This is the last time I fix binhex. If it breaks again it goes in the dustbin. by Guido van Rossum · 17 years ago
  60. 5c2fab6 Simplify %U handling by using Py_UNICODE_COPY. by Walter Dörwald · 17 years ago
  61. 1d0476b Fix typo. by Walter Dörwald · 17 years ago
  62. 2c94aa5 Fixed array.fromfile(); removed references to PyFileObject in array.tofile(). by Guido van Rossum · 17 years ago
  63. 6c037ba Don't specify an encoding, let open figure out an appropriate one. by Walter Dörwald · 17 years ago
  64. 292aa0d Fix test_set. by Guido van Rossum · 17 years ago
  65. fc3436b Add an encoding property to TextIOBase instances. by Guido van Rossum · 17 years ago
  66. 75d6f1a Fix tset_bytes.py. by Guido van Rossum · 17 years ago
  67. eceb0fb Fix test_exceptions.py: There were still str8 objects by Walter Dörwald · 17 years ago
  68. 78c1c4d Link _fileio statically -- it is needed during initialization. by Guido van Rossum · 17 years ago
  69. 9e4dc91 Fix list_test.py::test_print(): Read and write the by Walter Dörwald · 17 years ago
  70. 2565d90 Fix test_funcattrs.py: __name__ attribute must be str8. by Walter Dörwald · 17 years ago
  71. 305b924 Fix test_bool and test_bufio. by Guido van Rossum · 17 years ago
  72. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  73. fa0054a Make test_subprocess work. Fix universal newlines in io.py. by Guido van Rossum · 17 years ago
  74. c126e8a Merged revisions 55514-55544 via svnmerge from by Guido van Rossum · 17 years ago
  75. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  76. d8595fe Refactor to avoid ultra-deeply-nested code. by Guido van Rossum · 17 years ago
  77. e3d1d41 Fix datetime and its test. by Guido van Rossum · 17 years ago
  78. 1be7e3f Add a format character %S to PyUnicode_FromFormat() that by Walter Dörwald · 17 years ago
  79. 6252e10 Make gdbm and dumbdbm use byte strings. Updated their tests. by Guido van Rossum · 17 years ago
  80. 517bcfe Simplify append_keyword_tzinfo() by using PyUnicode_FromFormat(). by Walter Dörwald · 17 years ago
  81. 85d8e42 Fix test_unicodedata.py. by Walter Dörwald · 17 years ago
  82. eab198d Fix testcodec.py and test_charmapcodec.py by Walter Dörwald · 17 years ago
  83. e53309c This is how I run the tests. by Guido van Rossum · 17 years ago
  84. 522a6c6 bz2 uses bytes everywhere (even for the 'newlines' attribute). test_bz2 passes. by Guido van Rossum · 17 years ago
  85. 776152b zlib now uses bytes everywhere, and the test passes. by Guido van Rossum · 17 years ago
  86. dcee3c0 Make test_binhex pass. (Do we really want to support it still?) by Guido van Rossum · 17 years ago
  87. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  88. 0e225aa Make binascii use byte strings everywhere (in and out). by Guido van Rossum · 17 years ago
  89. 6dd15d3 obcheckin. by Guido van Rossum · 17 years ago
  90. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  91. dc19f09 There's no need to default file to sys.stdout -- print(file=None) already by Guido van Rossum · 17 years ago
  92. c49ebc0 The HTMLCalendar outputs bytes now, so fix the test by Walter Dörwald · 17 years ago
  93. 1f5947b Remove have_unicode checks and merge those tests into the by Walter Dörwald · 17 years ago
  94. 0242705 Remove unused import. by Walter Dörwald · 17 years ago
  95. 4aeaa96 Remove tests for have_unicode. by Walter Dörwald · 17 years ago
  96. e9eaab4 The unicode builtin is gone now. Fix setup.py so that by Walter Dörwald · 17 years ago
  97. d6ca546 Make test_zipfile pass. by Guido van Rossum · 17 years ago
  98. 94ca1c6 linecache.py was still struggling with unicode vs. non-unicode. by Guido van Rossum · 17 years ago
  99. 390bd7c Oops. unicode() builtin was still around. by Guido van Rossum · 17 years ago
  100. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 17 years ago