1. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  2. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  3. aaaef11 Add a test for fail*AlmostEqual, including the new support for complex numbers. by Jeffrey Yasskin · 17 years ago
  4. 96593ed Continue going through the language reference, bringing it up-to-date. by Georg Brandl · 17 years ago
  5. 44fa8f6 Make IDLE's file decode more robust. by Kurt B. Kaiser · 17 years ago
  6. 504d885 Fix docstring for getfullargspec(). by Brett Cannon · 17 years ago
  7. a5e8ab5 merge r58023 to fix issue1112 on windows. make this test more robust by Gregory P. Smith · 17 years ago
  8. 1cc5544 Extend unittest's fail*AlmostEqual methods to work on complex numbers. by Jeffrey Yasskin · 17 years ago
  9. d3f6c9d I think we can just dump the else clause, per the comment I just deleted. by Skip Montanaro · 17 years ago
  10. 22291c5 #1116: reference to old filename fixed. by Georg Brandl · 17 years ago
  11. dff1c31 In response to issue 1101, place vastly more emphasis on the new print() by Guido van Rossum · 17 years ago
  12. 67ced42 hashlib operates on bytes, not strings. by Georg Brandl · 17 years ago
  13. 0068e2c New exception catching syntax. by Georg Brandl · 17 years ago
  14. 105f60e 1. Fail gracefully if the file fails to decode when loaded. by Kurt B. Kaiser · 17 years ago
  15. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  16. fdc1a56 Cast away const qualifier to silence a compiler warning about it. by Brett Cannon · 17 years ago
  17. 65ea9bd Bug #1684991: explain __special__ lookup semantics. by Georg Brandl · 17 years ago
  18. 08898b4 Proof read/editing of abc. Added table of collections.Hashable etc. to by Mark Summerfield · 17 years ago
  19. fd4a7de Fix doctest failure introduced by r57949. by Guido van Rossum · 17 years ago
  20. 45c0787 Simplified recursion logic. Modified variable name to match string.Formatter. by Eric Smith · 17 years ago
  21. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  22. 0af1761 fix typo by Fred Drake · 17 years ago
  23. c53c966 Add a dict view usage example. by Georg Brandl · 17 years ago
  24. 952aea2 Change docs for builtins that now return iterators. by Georg Brandl · 17 years ago
  25. d22a815 Docs on dictviews. by Georg Brandl · 17 years ago
  26. 2e74878 remove/update many of the references to dict.iter*() by Fred Drake · 17 years ago
  27. afe0cd1 Correction an issue reported by Mark Summerfeld. by Guido van Rossum · 17 years ago
  28. 2d14098 More abc docs. by Georg Brandl · 17 years ago
  29. 476157b Make the _wrap_close type (which is returned by os.popen) iterable. by Thomas Heller · 17 years ago
  30. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  31. 53de190 Update ref docs on slicing. by Thomas Wouters · 17 years ago
  32. aeaa546 Initial documentation for the `abc` module. by Georg Brandl · 17 years ago
  33. 7a8e582 Fix the string formatting docs for now; if the feature is changed again, the docs can be changed too. by Georg Brandl · 17 years ago
  34. a1e9ef7 Fix up the types module docs. by Georg Brandl · 17 years ago
  35. 6911e3c Convert all print statements in the docs. by Georg Brandl · 17 years ago
  36. c987924 Add "print" command to pdb, "print s" previously invoked the print statement. by Georg Brandl · 17 years ago
  37. cb8ecb1 Doc update for __xslice__ removal. by Georg Brandl · 17 years ago
  38. 4a7b5d5 Decode input() with stdin.encoding. Fixes #1097. by Martin v. Löwis · 17 years ago
  39. 4edae68 CVS -> Subversion by Skip Montanaro · 17 years ago
  40. a86f5d4 I always think of the language when I see "ABC". Emphasize the meaning of by Skip Montanaro · 17 years ago
  41. 5eb520c Fix sinple typo. by Guido van Rossum · 17 years ago
  42. 4207f78 - Add support for linking the bsddb module against BerkeleyDB 4.6.x. by Matthias Klose · 17 years ago
  43. 1d6ec65 fix test, use bytes not unicode and let the test raise its internal exception by Gregory P. Smith · 17 years ago
  44. 25523d2 regenerated by Gregory P. Smith · 17 years ago
  45. 6c35726 test for strlcpy (so i can use it in _bsddb.c) by Gregory P. Smith · 17 years ago
  46. 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
  47. f82d9b5 Patch #1076: Use wide API for registry functions. by Martin v. Löwis · 17 years ago
  48. 5d12abe Patch #1075: Use wide API to format error messages. by Martin v. Löwis · 17 years ago
  49. c76473d Fix Mac build, patch #1091 by Humberto Diogenes. by Georg Brandl · 17 years ago
  50. e4ac750 Tutorial formatting patch by Robin Stocker. by Georg Brandl · 17 years ago
  51. 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
  52. c79461b Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. by Collin Winter · 17 years ago
  53. 2ac0121 Run 2to3's fix_has_key over distutils. by Collin Winter · 17 years ago
  54. 0470689 Run 2to3's fix_has_key over Lib/plat-os2emx/. by Collin Winter · 17 years ago
  55. ba21f61 Fix refleaks in test_with caused by reusing the same exception instance over and over. by Collin Winter · 17 years ago
  56. c59dacd Fix a poorly-translated raise statement in contextlib. by Collin Winter · 17 years ago
  57. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  58. 1963ad3 Saving a file containing unicode failed. by Kurt B. Kaiser · 17 years ago
  59. bbb809e I'm not actually an author by Andrew M. Kuchling · 17 years ago
  60. b355304 Document PyCFunctionWithKeywords, add comment for PEP 3123. by Georg Brandl · 17 years ago
  61. a6f5278 Document sets' "<" and ">" operations. by Georg Brandl · 17 years ago
  62. fb5d367 Use symbolic name for METH_VARARGS. by Georg Brandl · 17 years ago
  63. 34cb852 Use symbolic name for METH_VARAGS. by Georg Brandl · 17 years ago
  64. f2fc934 Get rid of METH_OLDARGS. by Georg Brandl · 17 years ago
  65. 55ac8f0 Get rid of the remaining versionadded/versionchanged directives. by Georg Brandl · 17 years ago
  66. 1617457 Remove versionadded/versionchanged in the reference. by Georg Brandl · 17 years ago
  67. 321976b Remove versionadded and versionchanged directives, fold information into text where necessary. by Georg Brandl · 17 years ago
  68. 2326a79 Add a warning text about mixing bytes and strings. by Georg Brandl · 17 years ago
  69. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  70. a95207a Fix RST link. by Georg Brandl · 17 years ago
  71. 7046e97 Bug #1074: make python-config with Py3k. by Georg Brandl · 17 years ago
  72. 39afe1e Bug #1737210: Change Manufacturer of Windows installer to PSF. by Martin v. Löwis · 17 years ago
  73. 804252b Eliminate latin-1 encoding by Kurt B. Kaiser · 17 years ago
  74. d953f6e Point IDLE menu Help / Python Docs at Python 3000 version by Kurt B. Kaiser · 17 years ago
  75. 9cd1e09 Removed unicode_format and unicode__format__, they just called through to other functions. by Eric Smith · 17 years ago
  76. 610cee3 Convert IDLE's CREDITS file to unicode. by Kurt B. Kaiser · 17 years ago
  77. 27b0240 Updated tracker link. by Guido van Rossum · 17 years ago
  78. 81ac1ce Address a few XXX comments, other fixes. by Georg Brandl · 17 years ago
  79. dcc56f8 Add bytes/remove unicode from the data model. by Georg Brandl · 17 years ago
  80. 85eb8c1 - document bytes() by Georg Brandl · 17 years ago
  81. 3540ef1 Tagging for release of Python 3.0a1. by Guido van Rossum · 17 years ago
  82. ba25c89 Got test_plistlib working. Don't ask how. by Guido van Rossum · 17 years ago
  83. 261f9df Fix fall-out of str.decode removal. by Guido van Rossum · 17 years ago
  84. b3922cb Neal sent real performance numbers. :-( by Guido van Rossum · 17 years ago
  85. 06b8b02 Per Georg's suggestion, get rid of str.decode() (which always raises an by Guido van Rossum · 17 years ago
  86. 674e938 Add a workaround for a strange bug on win64, when _ctypes is compiled by Thomas Heller · 17 years ago
  87. c5a6a30 Restore test_email for a1. It passes completely. by Barry Warsaw · 17 years ago
  88. 5deb210 Explicitly convert err->text to Unicode. Fixes #1069. by Martin v. Löwis · 17 years ago
  89. 90d1fcd Change %s argument for PyUnicode_FromFormat to be UTF-8. Fixes #1070. by Martin v. Löwis · 17 years ago
  90. bef9d21 Make test_email.py completely pass. This is cheating though because the two by Barry Warsaw · 17 years ago
  91. 7f13e6b string.maketrans() now produces translation tables for bytes.translate() -- wrong module? by Georg Brandl · 17 years ago
  92. 226878c Add bytes methods documentation. by Georg Brandl · 17 years ago
  93. 283e35f Mark registry components as 64-bit on Win64. by Martin v. Löwis · 17 years ago
  94. 680d7be Fix a buggy test. str8 objects contained NUL-terminated strings, by Thomas Heller · 17 years ago
  95. 4b49131 Commit #1068: new docs for PEP 3101. Also document the old string formatting as "old", and begin documenting str/unicode unification. by Georg Brandl · 17 years ago
  96. 20594cc round(1e20) wrongly returned 0. This fixes test_builtin on windows. by Thomas Heller · 17 years ago
  97. 57e3b68 Update the first two parts of the reference manual for Py3k, by Georg Brandl · 17 years ago
  98. 3dc33d1 Revert 57722. Move error dialog APIs to msvcrt instead, by Martin v. Löwis · 17 years ago
  99. 39cf04b Regenerate Lib/symbol.py. by Georg Brandl · 17 years ago
  100. c3f5bad Fix unicode issue in tutorial. by Georg Brandl · 17 years ago