1. 2c18161 Merged revisions 59512-59540 via svnmerge from by Christian Heimes · 17 years ago
  2. 0449f63 Merged revisions 59488-59511 via svnmerge from by Christian Heimes · 17 years ago
  3. 54cc54c update to fix leak in SSL code by Bill Janssen · 17 years ago
  4. 3805321 Merged revisions 59465-59487 via svnmerge from by Christian Heimes · 17 years ago
  5. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
  6. bd2e0c0 Added missing file by Christian Heimes · 17 years ago
  7. 827b35c Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. by Christian Heimes · 17 years ago
  8. a5535f2 Fixed doc xml rpc tests and server by Christian Heimes · 17 years ago
  9. a13f4a1 Make Decimal a subclass of Real and Inexact. by Guido van Rossum · 17 years ago
  10. 2f1019e Merged revisions 59441-59449 via svnmerge from by Christian Heimes · 17 years ago
  11. 0ded5b5 Fixed issue #1564: The set implementation should special-case PyUnicode instead of PyString by Christian Heimes · 17 years ago
  12. 40d3a67 Issue #1573, second attempt: "def f(*, **kw)" now raises a SyntaxError. by Amaury Forgeot d'Arc · 17 years ago
  13. eda9e2b Added another test case for kwonly methods by Christian Heimes · 17 years ago
  14. 0da5bd6 Added two tests for f(*, **kw) syntax by Christian Heimes · 17 years ago
  15. 0aa93cd Fixed two of the three failing xml rpc tests by Christian Heimes · 17 years ago
  16. 895627f Merged revisions 59407-59422 via svnmerge from by Christian Heimes · 17 years ago
  17. 576bf65 Added stop_serving and a timeout to tearDown() by Christian Heimes · 17 years ago
  18. 99d73f2 Disabled test_404, see issue #1572 by Christian Heimes · 17 years ago
  19. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  20. f64db9f Fix the rest of issue 1400, by introducing a proper implementation of by Guido van Rossum · 17 years ago
  21. b9eccbf Merged revisions 59333-59370 via svnmerge from by Christian Heimes · 17 years ago
  22. ecda261 You are right, Guido. The newline argument is easier to use. by Christian Heimes · 17 years ago
  23. 2ca76f6 Fixed line separator problem on Windows by Christian Heimes · 17 years ago
  24. 1239ad8 Fixed two small problems in regrtest found by Amaury. This fixes issue #1539. Thanks Amaury! by Christian Heimes · 17 years ago
  25. 50ab942 Believe it or not, the addition of flush() calls broke two unittests. by Guido van Rossum · 17 years ago
  26. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  27. 09121e8 Issue #1283: Allow any iterable of integers to be passed to bytearray.extend(). by Alexandre Vassalotti · 17 years ago
  28. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  29. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  30. f929077 Reverting last commit. I had some staled data from an attempted svnmerge in my local sandbox by Christian Heimes · 17 years ago
  31. e69c320 Patch #1537 from Chad Austin by Christian Heimes · 17 years ago
  32. 2137b6a Fixed merge accident. Next time I'm going to run the entire test suite ... by Christian Heimes · 17 years ago
  33. d8654cf Merged revisions 59259-59274 via svnmerge from by Christian Heimes · 17 years ago
  34. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  35. 9385266 Merged revisions 59245-59254 via svnmerge from by Christian Heimes · 17 years ago
  36. 8598422 Correct a failing test after merge from trunk. by Amaury Forgeot d'Arc · 17 years ago
  37. 4e30a84 Merged revisions 59239-59244 via svnmerge from by Christian Heimes · 17 years ago
  38. 04a4eb3 abc's are subclasses of _Abstract, not instances. by Christian Heimes · 17 years ago
  39. 941973a Fixed problem with regrtest caused by the additional of objects to _abcoll. by Christian Heimes · 17 years ago
  40. 45031df Backmerge -r59233:59232 by Christian Heimes · 17 years ago
  41. 7d2ff88 Merged revisions 59226-59233 via svnmerge from by Christian Heimes · 17 years ago
  42. 2e510fb Fix for bug #1109 by Christian Heimes · 17 years ago
  43. 69a7963 Merged revisions 59202-59211 via svnmerge from by Christian Heimes · 17 years ago
  44. 084dc4c I forgot to remove the tests for new *blush* by Christian Heimes · 17 years ago
  45. c9543e4 Removed the new module by Christian Heimes · 17 years ago
  46. ceee077 #1496: revert str.translate() to the old version, and add by Georg Brandl · 17 years ago
  47. 45f9af3 Merged revisions 59193-59201 via svnmerge from by Christian Heimes · 17 years ago
  48. ff73795 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). by Christian Heimes · 17 years ago
  49. 0d3fb8a Merged revisions 59107-59186 via svnmerge from by Guido van Rossum · 17 years ago
  50. 4a22b5d Patch from Georg Brandl and me for #1493 Remove unbound method objects by Christian Heimes · 17 years ago
  51. e670bd4 fix #1409: cell variables were not initialized, by Amaury Forgeot d'Arc · 17 years ago
  52. af59346 Problem found while converting from PyBytes to PyString: by Amaury Forgeot d'Arc · 17 years ago
  53. b2b6262 Removed some leftovers from the str8 days by Christian Heimes · 17 years ago
  54. cd4d452 Merged revisions 59077-59104 via svnmerge from by Guido van Rossum · 17 years ago
  55. d05eb00 Add ABC ByteString which unifies bytes and bytearray (but not memoryview). by Guido van Rossum · 17 years ago
  56. 8a392d7 Convert the socket module to insist on bytes for input, and to return bytes by Guido van Rossum · 17 years ago
  57. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  58. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  59. e052dd8 Another fix for test_shutil. Martin pointed out that it breaks some build bots by Christian Heimes · 17 years ago
  60. 9414015 Fixed bug #1470 by Christian Heimes · 17 years ago
  61. 10c476d Correct test_cvs on Windows, as suggested by Raghuram Devarakonda by Amaury Forgeot d'Arc · 17 years ago
  62. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  63. 87c0f1d Merged revisions 59041-59055 via svnmerge from by Guido van Rossum · 17 years ago
  64. 87afcbf Tweak the imports so this script will run stand-alone. by Guido van Rossum · 17 years ago
  65. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  66. 6030a60 remove now-obsolete test_socket_ssl by Bill Janssen · 17 years ago
  67. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  68. dd9e3b8 Correct a failing test when test_import is run after test_coding: by Amaury Forgeot d'Arc · 17 years ago
  69. 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
  70. 65f9ace Correction for issue1134: all source files with a coding spec, except latin-1 by Amaury Forgeot d'Arc · 17 years ago
  71. c05f42a add the certificate for the Python SVN repository for testing SSL by Bill Janssen · 17 years ago
  72. 6e027db get SSL support to work again by Bill Janssen · 17 years ago
  73. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  74. 70021d7 The peeping and bawling of the builtin speaker is giving my poor cat the creeps. by Christian Heimes · 17 years ago
  75. f05149a Correction for issue1265 (pdb bug with "with" statement). by Amaury Forgeot d'Arc · 17 years ago
  76. db4a2ef Another fix for #1414 by Christian Heimes · 17 years ago
  77. f19169f Fix for refleak tests through regrtest.py -R:: bug #1414 by Christian Heimes · 17 years ago
  78. 4fe72f9 Patch 1420 by Ron Adam. by Guido van Rossum · 17 years ago
  79. 29fd712 Minimal change that disables (AFAICT) the interpolation of \u and \U inside by Guido van Rossum · 17 years ago
  80. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  81. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  82. 1a13d59 Added unit test to verify that #1087 is invalid. os.popen is using subprocess. by Christian Heimes · 17 years ago
  83. 3795b53 Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfullargspec() by Christian Heimes · 17 years ago
  84. 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
  85. 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
  86. ef181a7 Reset original sys.stdout, stderr and displayhook even in the case of an error by Christian Heimes · 17 years ago
  87. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  88. a19f80c Merged revisions 58862-58885 via svnmerge from by Guido van Rossum · 17 years ago
  89. a3538eb Fixed bug #1384 Windows fix for inspect tests by Christian Heimes · 17 years ago
  90. 9c1257e Disabled test_sys_path_with_unicode for now by Christian Heimes · 17 years ago
  91. a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 17 years ago
  92. 2cc30da Merged revisions 58742-58816 via svnmerge from by Guido van Rossum · 17 years ago
  93. 15c9746 Patch 1373 by Adam Hupp. by Guido van Rossum · 17 years ago
  94. 204093a Removed non ASCII text from test as requested by Guido. by Christian Heimes · 17 years ago
  95. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  96. 1d1a400 Added unit test for bug http://bugs.python.org/issue1293 by Christian Heimes · 17 years ago
  97. 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
  98. e02647a Oh, I missed the output part of the test ... by Christian Heimes · 17 years ago
  99. 9289bfc Fixed test_dumbdbm by Christian Heimes · 17 years ago
  100. 6ae5d7f Fixed gettext module for Windows. The metadata lines always end in \n and not in os.linesep by Christian Heimes · 17 years ago