1. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  2. 782d6b4 issue1172: Documentation of "done" attribute in cgi module. by Sean Reifscheider · 17 years ago
  3. c250493 Optimize unicode_hash() by not calling by Guido van Rossum · 17 years ago
  4. e4a9e78 Thomas Wouters suggested an obvious improvement to unicode_eq(): use memcmp(). by Guido van Rossum · 17 years ago
  5. 89d8c60 Switch dict lookup around to optimizing for unicode. by Guido van Rossum · 17 years ago
  6. 4d02772 Micro optimizations after staring at gprof output for a while. by Guido van Rossum · 17 years ago
  7. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  8. a5b8e04 Merged revisions 58149-58150 via svnmerge from by Martin v. Löwis · 17 years ago
  9. 5a885d7 Merged revisions 58133-58135 via svnmerge from by Martin v. Löwis · 17 years ago
  10. 7b46942 Oops. by Georg Brandl · 17 years ago
  11. c090298 Document input() function. by Georg Brandl · 17 years ago
  12. 7dd803a Repair a bad translation of the exec statement. by Georg Brandl · 17 years ago
  13. a00f123 Fix for bug 1148: str/bytes issue in httplib's _safe_read(). by Guido van Rossum · 17 years ago
  14. 138bcb5 Document inspect.getfullargspec(). Fixes #1121. by Georg Brandl · 17 years ago
  15. 546e2d6 New documentation for the bdb module. Forward-port from rev. 58112, with a few 3k-specific changes. by Georg Brandl · 17 years ago
  16. 894d35e Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() by Guido van Rossum · 17 years ago
  17. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  18. 54d6874 Merged revisions 58091-58094 via svnmerge from by Thomas Wouters · 17 years ago
  19. bca5480 Merged revisions 58053-58090 via svnmerge from by Thomas Wouters · 17 years ago
  20. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  21. 954c31b merge of r58091 from trunk: by Gregory P. Smith · 17 years ago
  22. da86fcc Drop convert_binop. by Martin v. Löwis · 17 years ago
  23. 4633448 Change instances of 'while 1:' in the docs into 'while True:'. by Collin Winter · 17 years ago
  24. 4c6a140 General clean-up in socket howto. by Collin Winter · 17 years ago
  25. 58721bc Fix more raise statments in the docs. by Collin Winter · 17 years ago
  26. c7526f5 More two-argument raise cleanup in the tutorial. by Collin Winter · 17 years ago
  27. 1fc035f Fix docs that imply that tuples in except clauses must be parenthesized. by Collin Winter · 17 years ago
  28. 596d99a Fix more two-arg raise statements. by Collin Winter · 17 years ago
  29. bbc9712 Update tutorial/classes.rst to remove references to the old two-argument form of the raise statement. by Collin Winter · 17 years ago
  30. 0ec3477 Patch # 1094 by Serge Julien. Fix some bytes/str comparisons. by Guido van Rossum · 17 years ago
  31. 19ab2bd Remove yet more references to has_key() methods. by Collin Winter · 17 years ago
  32. 6fe2a6c Fix a legacy raise statement in pickle's docs. by Collin Winter · 17 years ago
  33. f6b8121 Remove two lingering references to now-gone has_key() methods from the library docs. by Collin Winter · 17 years ago
  34. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  35. c411918 email address update by Gregory P. Smith · 17 years ago
  36. b2c3a53 openssl 0.9.6 is too old to use, use our own modules by Gregory P. Smith · 17 years ago
  37. 2f21eb3 Adds stand alone _md5 and _sha1 modules for use by hashlib on systems by Gregory P. Smith · 17 years ago
  38. b3b4dbe Cleanup test_thread. CDB (Concurrent Database) support in BerkeleyDB is only by Gregory P. Smith · 17 years ago
  39. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  40. 4a625c3 Add REPORT_NDIFF option to o test that was hard to debug recently. by Guido van Rossum · 17 years ago
  41. f8c37d1 Restore caching of unicode hash value. This apparently was broken by Neil Schemenauer · 17 years ago
  42. 02c3056 Finish the first pass of the language reference update. by Georg Brandl · 17 years ago
  43. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  44. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  45. aaaef11 Add a test for fail*AlmostEqual, including the new support for complex numbers. by Jeffrey Yasskin · 17 years ago
  46. 96593ed Continue going through the language reference, bringing it up-to-date. by Georg Brandl · 17 years ago
  47. 44fa8f6 Make IDLE's file decode more robust. by Kurt B. Kaiser · 17 years ago
  48. 504d885 Fix docstring for getfullargspec(). by Brett Cannon · 17 years ago
  49. a5e8ab5 merge r58023 to fix issue1112 on windows. make this test more robust by Gregory P. Smith · 17 years ago
  50. 1cc5544 Extend unittest's fail*AlmostEqual methods to work on complex numbers. by Jeffrey Yasskin · 17 years ago
  51. d3f6c9d I think we can just dump the else clause, per the comment I just deleted. by Skip Montanaro · 17 years ago
  52. 22291c5 #1116: reference to old filename fixed. by Georg Brandl · 17 years ago
  53. dff1c31 In response to issue 1101, place vastly more emphasis on the new print() by Guido van Rossum · 17 years ago
  54. 67ced42 hashlib operates on bytes, not strings. by Georg Brandl · 17 years ago
  55. 0068e2c New exception catching syntax. by Georg Brandl · 17 years ago
  56. 105f60e 1. Fail gracefully if the file fails to decode when loaded. by Kurt B. Kaiser · 17 years ago
  57. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  58. fdc1a56 Cast away const qualifier to silence a compiler warning about it. by Brett Cannon · 17 years ago
  59. 65ea9bd Bug #1684991: explain __special__ lookup semantics. by Georg Brandl · 17 years ago
  60. 08898b4 Proof read/editing of abc. Added table of collections.Hashable etc. to by Mark Summerfield · 17 years ago
  61. fd4a7de Fix doctest failure introduced by r57949. by Guido van Rossum · 17 years ago
  62. 45c0787 Simplified recursion logic. Modified variable name to match string.Formatter. by Eric Smith · 17 years ago
  63. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  64. 0af1761 fix typo by Fred Drake · 17 years ago
  65. c53c966 Add a dict view usage example. by Georg Brandl · 17 years ago
  66. 952aea2 Change docs for builtins that now return iterators. by Georg Brandl · 17 years ago
  67. d22a815 Docs on dictviews. by Georg Brandl · 17 years ago
  68. 2e74878 remove/update many of the references to dict.iter*() by Fred Drake · 17 years ago
  69. afe0cd1 Correction an issue reported by Mark Summerfeld. by Guido van Rossum · 17 years ago
  70. 2d14098 More abc docs. by Georg Brandl · 17 years ago
  71. 476157b Make the _wrap_close type (which is returned by os.popen) iterable. by Thomas Heller · 17 years ago
  72. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  73. 53de190 Update ref docs on slicing. by Thomas Wouters · 17 years ago
  74. aeaa546 Initial documentation for the `abc` module. by Georg Brandl · 17 years ago
  75. 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
  76. a1e9ef7 Fix up the types module docs. by Georg Brandl · 17 years ago
  77. 6911e3c Convert all print statements in the docs. by Georg Brandl · 17 years ago
  78. c987924 Add "print" command to pdb, "print s" previously invoked the print statement. by Georg Brandl · 17 years ago
  79. cb8ecb1 Doc update for __xslice__ removal. by Georg Brandl · 17 years ago
  80. 4a7b5d5 Decode input() with stdin.encoding. Fixes #1097. by Martin v. Löwis · 17 years ago
  81. 4edae68 CVS -> Subversion by Skip Montanaro · 17 years ago
  82. a86f5d4 I always think of the language when I see "ABC". Emphasize the meaning of by Skip Montanaro · 17 years ago
  83. 5eb520c Fix sinple typo. by Guido van Rossum · 17 years ago
  84. 4207f78 - Add support for linking the bsddb module against BerkeleyDB 4.6.x. by Matthias Klose · 17 years ago
  85. 1d6ec65 fix test, use bytes not unicode and let the test raise its internal exception by Gregory P. Smith · 17 years ago
  86. 25523d2 regenerated by Gregory P. Smith · 17 years ago
  87. 6c35726 test for strlcpy (so i can use it in _bsddb.c) by Gregory P. Smith · 17 years ago
  88. 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
  89. f82d9b5 Patch #1076: Use wide API for registry functions. by Martin v. Löwis · 17 years ago
  90. 5d12abe Patch #1075: Use wide API to format error messages. by Martin v. Löwis · 17 years ago
  91. c76473d Fix Mac build, patch #1091 by Humberto Diogenes. by Georg Brandl · 17 years ago
  92. e4ac750 Tutorial formatting patch by Robin Stocker. by Georg Brandl · 17 years ago
  93. 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
  94. 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
  95. 2ac0121 Run 2to3's fix_has_key over distutils. by Collin Winter · 17 years ago
  96. 0470689 Run 2to3's fix_has_key over Lib/plat-os2emx/. by Collin Winter · 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. c59dacd Fix a poorly-translated raise statement in contextlib. by Collin Winter · 17 years ago
  99. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  100. 1963ad3 Saving a file containing unicode failed. by Kurt B. Kaiser · 17 years ago