1. 4a22b5d Patch from Georg Brandl and me for #1493 Remove unbound method objects by Christian Heimes · 17 years ago
  2. e670bd4 fix #1409: cell variables were not initialized, by Amaury Forgeot d'Arc · 17 years ago
  3. af59346 Problem found while converting from PyBytes to PyString: by Amaury Forgeot d'Arc · 17 years ago
  4. b2b6262 Removed some leftovers from the str8 days by Christian Heimes · 17 years ago
  5. cd4d452 Merged revisions 59077-59104 via svnmerge from by Guido van Rossum · 17 years ago
  6. d05eb00 Add ABC ByteString which unifies bytes and bytearray (but not memoryview). by Guido van Rossum · 17 years ago
  7. 8a392d7 Convert the socket module to insist on bytes for input, and to return bytes by Guido van Rossum · 17 years ago
  8. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  9. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  10. e052dd8 Another fix for test_shutil. Martin pointed out that it breaks some build bots by Christian Heimes · 17 years ago
  11. 9414015 Fixed bug #1470 by Christian Heimes · 17 years ago
  12. 10c476d Correct test_cvs on Windows, as suggested by Raghuram Devarakonda by Amaury Forgeot d'Arc · 17 years ago
  13. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  14. 87c0f1d Merged revisions 59041-59055 via svnmerge from by Guido van Rossum · 17 years ago
  15. 87afcbf Tweak the imports so this script will run stand-alone. by Guido van Rossum · 17 years ago
  16. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  17. 6030a60 remove now-obsolete test_socket_ssl by Bill Janssen · 17 years ago
  18. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  19. dd9e3b8 Correct a failing test when test_import is run after test_coding: by Amaury Forgeot d'Arc · 17 years ago
  20. 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
  21. 65f9ace Correction for issue1134: all source files with a coding spec, except latin-1 by Amaury Forgeot d'Arc · 17 years ago
  22. c05f42a add the certificate for the Python SVN repository for testing SSL by Bill Janssen · 17 years ago
  23. 6e027db get SSL support to work again by Bill Janssen · 17 years ago
  24. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  25. 70021d7 The peeping and bawling of the builtin speaker is giving my poor cat the creeps. by Christian Heimes · 17 years ago
  26. f05149a Correction for issue1265 (pdb bug with "with" statement). by Amaury Forgeot d'Arc · 17 years ago
  27. db4a2ef Another fix for #1414 by Christian Heimes · 17 years ago
  28. f19169f Fix for refleak tests through regrtest.py -R:: bug #1414 by Christian Heimes · 17 years ago
  29. 4fe72f9 Patch 1420 by Ron Adam. by Guido van Rossum · 17 years ago
  30. 29fd712 Minimal change that disables (AFAICT) the interpolation of \u and \U inside by Guido van Rossum · 17 years ago
  31. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  32. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  33. 1a13d59 Added unit test to verify that #1087 is invalid. os.popen is using subprocess. by Christian Heimes · 17 years ago
  34. 3795b53 Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfullargspec() by Christian Heimes · 17 years ago
  35. 563e33b Added tests from Raghuram Devarakonda for bug #1395 'py3k: duplicated line endings when using read(1)' to outstanding_bugs.py by Christian Heimes · 17 years ago
  36. 7b6fc8e Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug was found by mykhal from #python. I've also added a small test case in the new test_memoryview.py by Christian Heimes · 17 years ago
  37. ef181a7 Reset original sys.stdout, stderr and displayhook even in the case of an error by Christian Heimes · 17 years ago
  38. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  39. a19f80c Merged revisions 58862-58885 via svnmerge from by Guido van Rossum · 17 years ago
  40. a3538eb Fixed bug #1384 Windows fix for inspect tests by Christian Heimes · 17 years ago
  41. 9c1257e Disabled test_sys_path_with_unicode for now by Christian Heimes · 17 years ago
  42. a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 17 years ago
  43. 2cc30da Merged revisions 58742-58816 via svnmerge from by Guido van Rossum · 17 years ago
  44. 15c9746 Patch 1373 by Adam Hupp. by Guido van Rossum · 17 years ago
  45. 204093a Removed non ASCII text from test as requested by Guido. by Christian Heimes · 17 years ago
  46. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  47. 1d1a400 Added unit test for bug http://bugs.python.org/issue1293 by Christian Heimes · 17 years ago
  48. 9033339 Fixed unit tests for os.environ. Some of the tests didn't test at all because os.environ was empty. by Christian Heimes · 17 years ago
  49. e02647a Oh, I missed the output part of the test ... by Christian Heimes · 17 years ago
  50. 9289bfc Fixed test_dumbdbm by Christian Heimes · 17 years ago
  51. 6ae5d7f Fixed gettext module for Windows. The metadata lines always end in \n and not in os.linesep by Christian Heimes · 17 years ago
  52. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  53. ae404e2 Sort the method lists for str8 and bytes so differences are more apparent. by Guido van Rossum · 17 years ago
  54. 35d02c1 Delete test_str.py. There's not much there I care about, and it is confused by Guido van Rossum · 17 years ago
  55. c12a813 Patch # 1331 by Christian Heimes. by Guido van Rossum · 17 years ago
  56. daa251c Patch # 1302 by Christian Heimes (with some love from me :-). by Guido van Rossum · 17 years ago
  57. 79b79ee Patch # 1323 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  58. 687b9c0 Patch 1318 by Christian Heimes: remove os.tmpnam(), os.tempnam(), by Guido van Rossum · 17 years ago
  59. edbcc13 Remove a test case which is no longer valid. by Georg Brandl · 17 years ago
  60. 52ddaef Make test_locale pass by removing tests that were designed to handle by Guido van Rossum · 17 years ago
  61. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  62. 94c2c75 Patch #1071: Improve unicode.translate() so that you can pass unicode by Georg Brandl · 17 years ago
  63. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  64. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  65. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  66. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  67. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  68. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  69. 3b7210d Make it possible to run this test stand-alone. by Guido van Rossum · 17 years ago
  70. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  71. b62e8a8 Two changes that are definitely problem-free and avoid calling print() by Guido van Rossum · 17 years ago
  72. 49f2174 Don't depend on str8.splitlines() in test_chunkcoding(). by Guido van Rossum · 17 years ago
  73. 762d4a4 use a reliable host by Gregory P. Smith · 17 years ago
  74. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  75. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  76. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  77. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  78. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  79. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  80. a00f123 Fix for bug 1148: str/bytes issue in httplib's _safe_read(). by Guido van Rossum · 17 years ago
  81. 894d35e Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() by Guido van Rossum · 17 years ago
  82. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  83. bca5480 Merged revisions 58053-58090 via svnmerge from by Thomas Wouters · 17 years ago
  84. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  85. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  86. c411918 email address update by Gregory P. Smith · 17 years ago
  87. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  88. 4a625c3 Add REPORT_NDIFF option to o test that was hard to debug recently. by Guido van Rossum · 17 years ago
  89. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  90. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  91. aaaef11 Add a test for fail*AlmostEqual, including the new support for complex numbers. by Jeffrey Yasskin · 17 years ago
  92. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  93. fd4a7de Fix doctest failure introduced by r57949. by Guido van Rossum · 17 years ago
  94. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  95. 4cb4e4e Fix segfault discovered by Ron Adam. Not checking for terminating right bracket in "'{0[}'.format(())". Fixed, and tests added. by Eric Smith · 17 years ago
  96. f82d9b5 Patch #1076: Use wide API for registry functions. by Martin v. Löwis · 17 years ago
  97. ba21f61 Fix refleaks in test_with caused by reusing the same exception instance over and over. by Collin Winter · 17 years ago
  98. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  99. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  100. c5a6a30 Restore test_email for a1. It passes completely. by Barry Warsaw · 17 years ago