1. 1cc5544 Extend unittest's fail*AlmostEqual methods to work on complex numbers. by Jeffrey Yasskin · 17 years ago
  2. 105f60e 1. Fail gracefully if the file fails to decode when loaded. by Kurt B. Kaiser · 17 years ago
  3. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  4. fd4a7de Fix doctest failure introduced by r57949. by Guido van Rossum · 17 years ago
  5. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  6. 476157b Make the _wrap_close type (which is returned by os.popen) iterable. by Thomas Heller · 17 years ago
  7. c987924 Add "print" command to pdb, "print s" previously invoked the print statement. by Georg Brandl · 17 years ago
  8. 1d6ec65 fix test, use bytes not unicode and let the test raise its internal exception by Gregory P. Smith · 17 years ago
  9. 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
  10. f82d9b5 Patch #1076: Use wide API for registry functions. by Martin v. Löwis · 17 years ago
  11. c76473d Fix Mac build, patch #1091 by Humberto Diogenes. by Georg Brandl · 17 years ago
  12. 9d4ba39 Removed used_args param from string.Formatter.get_field. It was left in by mistake from an earlier edit. by Eric Smith · 17 years ago
  13. 2ac0121 Run 2to3's fix_has_key over distutils. by Collin Winter · 17 years ago
  14. 0470689 Run 2to3's fix_has_key over Lib/plat-os2emx/. by Collin Winter · 17 years ago
  15. ba21f61 Fix refleaks in test_with caused by reusing the same exception instance over and over. by Collin Winter · 17 years ago
  16. c59dacd Fix a poorly-translated raise statement in contextlib. by Collin Winter · 17 years ago
  17. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  18. 1963ad3 Saving a file containing unicode failed. by Kurt B. Kaiser · 17 years ago
  19. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  20. 804252b Eliminate latin-1 encoding by Kurt B. Kaiser · 17 years ago
  21. d953f6e Point IDLE menu Help / Python Docs at Python 3000 version by Kurt B. Kaiser · 17 years ago
  22. 610cee3 Convert IDLE's CREDITS file to unicode. by Kurt B. Kaiser · 17 years ago
  23. 27b0240 Updated tracker link. by Guido van Rossum · 17 years ago
  24. ba25c89 Got test_plistlib working. Don't ask how. by Guido van Rossum · 17 years ago
  25. 261f9df Fix fall-out of str.decode removal. by Guido van Rossum · 17 years ago
  26. 674e938 Add a workaround for a strange bug on win64, when _ctypes is compiled by Thomas Heller · 17 years ago
  27. c5a6a30 Restore test_email for a1. It passes completely. by Barry Warsaw · 17 years ago
  28. bef9d21 Make test_email.py completely pass. This is cheating though because the two by Barry Warsaw · 17 years ago
  29. 7f13e6b string.maketrans() now produces translation tables for bytes.translate() -- wrong module? by Georg Brandl · 17 years ago
  30. 680d7be Fix a buggy test. str8 objects contained NUL-terminated strings, by Thomas Heller · 17 years ago
  31. 3dc33d1 Revert 57722. Move error dialog APIs to msvcrt instead, by Martin v. Löwis · 17 years ago
  32. 39cf04b Regenerate Lib/symbol.py. by Georg Brandl · 17 years ago
  33. 4afcfb4 Fix test_startfile and remove duplicated test. by Thomas Heller · 17 years ago
  34. 671117a Force test_mailbox and test_old_mailbox into submission. by Guido van Rossum · 17 years ago
  35. 7cec252 1. Don't encode input strings to bytes. 2. Re-enable stderr redirection. by Kurt B. Kaiser · 17 years ago
  36. 7aa02e6 More email package fixes. by Barry Warsaw · 17 years ago
  37. 8b2af27 More email package fixes. by Barry Warsaw · 17 years ago
  38. 00b3422 More email package fixes. by Barry Warsaw · 17 years ago
  39. 3bcc42a Changed signature of string.Formatter.get_field, per suggestion by Ron Adam. by Eric Smith · 17 years ago
  40. 11fe3e0 Fixed test name. by Eric Smith · 17 years ago
  41. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  42. 812567d Cut test_raise down to size. by Collin Winter · 17 years ago
  43. 74e68c7 Fix test_smtplib by munging asynchat some more. by Thomas Wouters · 17 years ago
  44. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  45. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  46. 582b586 Merged revisions 57772-57777 via svnmerge from by Thomas Wouters · 17 years ago
  47. 185e30c Added format tests. by Eric Smith · 17 years ago
  48. bc3b345 IDLE's py3k NEWS by Kurt B. Kaiser · 17 years ago
  49. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  50. 623d372 Don't ascii encode eol_convention. Was causing file write to fail. by Kurt B. Kaiser · 17 years ago
  51. 234a34a Explicitly use UTF-8 as the encoding for the normalization file. by Martin v. Löwis · 17 years ago
  52. 5495957 Bump IDLE version. by Kurt B. Kaiser · 17 years ago
  53. 8c57104 More email package fixes. by Barry Warsaw · 17 years ago
  54. fd51975 Fix a typo in the distutils cleanup. by Collin Winter · 17 years ago
  55. 4902e69 More raise statement normalization. by Collin Winter · 17 years ago
  56. 6cd2a20 Kill more lingering string exceptions in Lib/plat-mac/. by Collin Winter · 17 years ago
  57. b9678e7 1/0 -> True/False cleanup. by Collin Winter · 17 years ago
  58. bd315c5 Calling execvp with an empty argument list raises ValueError, but we by Thomas Heller · 17 years ago
  59. 080b2b2 Enable the trunc() test. by Guido van Rossum · 17 years ago
  60. 1daf954 Add numbers.py. I suspect this is an old version, but Jeffrey is out by Guido van Rossum · 17 years ago
  61. 6790d60 Forbid an empty argument list in execv call. by Thomas Heller · 17 years ago
  62. 2cc1f6d More email package related repairs. This fixes smtplib's import and use of by Barry Warsaw · 17 years ago
  63. 5a23cc5 Two changes (not enough to make the test pass though) having to do with by Guido van Rossum · 17 years ago
  64. a79f125 Stop testing for encoded file names, as Python 3 does not support them, anyway. by Martin v. Löwis · 17 years ago
  65. eaa16f9 Try to fix test_plistlib so it uses bytes consistently in this call by Neal Norwitz · 17 years ago
  66. 152b3c2 Use inspect.py and clean up. by Kurt B. Kaiser · 17 years ago
  67. f40080f Try to fix test_aepack by comparing bytes with bytes. by Neal Norwitz · 17 years ago
  68. 9a92310 Write bytes instead of unicode by Neal Norwitz · 17 years ago
  69. 78a70bd Try to get test_pep352 and maybe test_platform to work on a Windows buildbot by Neal Norwitz · 17 years ago
  70. 09cff64 Since the filename is encoded, we must add bytes to it. The test by Neal Norwitz · 17 years ago
  71. cabac0a Stop using the find function on the string module, use the string method. by Neal Norwitz · 17 years ago
  72. c247e51 Make this module importable, this gets test___all__ to pass. by Neal Norwitz · 17 years ago
  73. 5b7e9d7 General cleanup, raise normalization in Lib/distutils. by Collin Winter · 17 years ago
  74. a73bfee Raise statement normalization in Lib/ctypes/. by Collin Winter · 17 years ago
  75. 9604e66 Oops. I copied a slightly older version of the email package from the sandbox. by Guido van Rossum · 17 years ago
  76. 2c440a1 Use the new name for the parser module. by Neal Norwitz · 17 years ago
  77. 315d845 Revert revisions 57472, 57474, and 57477 which disabled some tests by Neal Norwitz · 17 years ago
  78. 8b3d659 Fix a more bytes/str confusion. by Barry Warsaw · 17 years ago
  79. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  80. 8b3febe Copying the email package back, despite its failings. by Guido van Rossum · 17 years ago
  81. 95fb569 Revert r57685 (weird merge result). by Collin Winter · 17 years ago
  82. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  83. e0281ca by Collin Winter · 17 years ago
  84. f7f3deb Andother bytes/str comparison caught by Jeremy's change. by Guido van Rossum · 17 years ago
  85. 9ff05b2 Change string literal to bytes. by Jeremy Hylton · 17 years ago
  86. 88d06a7 Make terminator constants bytes. by Jeremy Hylton · 17 years ago
  87. a5dc3db Change string literals to bytes, since they are compared to bytes. by Jeremy Hylton · 17 years ago
  88. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  89. 991bf5d Patch # 1050 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  90. cf3c4217 1. Debugger was failing to start due to DictProxy limitations. by Kurt B. Kaiser · 17 years ago
  91. fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 17 years ago
  92. e86254e In rseponse to bug# 1029, force the newline default for StringIO to "\n", by Guido van Rossum · 17 years ago
  93. dcce839 Insist that the argument to TextIOWrapper.write() is a basestring by Guido van Rossum · 17 years ago
  94. da3f228 Convert various string literals to bytes. by Jeremy Hylton · 17 years ago
  95. b4df71f Fix test failures caused by missing/incorrect conversion to bytes. by Jeremy Hylton · 17 years ago
  96. 8136014 Fix up brokenness with hashing, now hashlib is strict in requiring bytes too. by Guido van Rossum · 17 years ago
  97. 04c70ad Fix the one failing test (can't decode twice). by Guido van Rossum · 17 years ago
  98. 9befa93 Fix test_pyclbr -- _https_connection is optional. by Guido van Rossum · 17 years ago
  99. 8c74614 Fix failure in error handler -- exc[-1] -> exc.args[-1]. by Guido van Rossum · 17 years ago
  100. 39dce30 Get test_bsddb3 passing by Neal Norwitz · 17 years ago