1. 3e623ba Windows EOL sequence not converted correctly, encoding error. by Kurt B. Kaiser · 17 years ago
  2. e518bf3 PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). by Guido van Rossum · 17 years ago
  3. 762d4a4 use a reliable host by Gregory P. Smith · 17 years ago
  4. 174ce20 Silly script I'd rather not throw away. by Guido van Rossum · 17 years ago
  5. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  6. 6ccd3f2 Replace all (locale-dependent) uses of isupper(), tolower(), etc., by by Guido van Rossum · 17 years ago
  7. 6733d70 Change the default encoding for ftplib.FTP to latin1 so that bytes can be in by Brett Cannon · 17 years ago
  8. 9f2c39a #1228: new comparison behavior. by Georg Brandl · 17 years ago
  9. 9f27df5 Remove buffer() from the docs. by Georg Brandl · 17 years ago
  10. 14ef70b Remove unused variables by Neal Norwitz · 17 years ago
  11. 0ea230b Remove more traces of bufferobject.[ch] from build files etc. by Guido van Rossum · 17 years ago
  12. be801ac Delete bufferobject.[ch]. by Guido van Rossum · 17 years ago
  13. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  14. 85c1ba5 Fix a minor typo. by Brett Cannon · 17 years ago
  15. b35f128 At least one of the buildbots was complaining about newview being used by Neal Norwitz · 17 years ago
  16. e43bd62 Merge 58344: allow BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module by Gregory P. Smith · 17 years ago
  17. 9e780cc Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash. by Gregory P. Smith · 17 years ago
  18. 1d2aef5 Get the doc to build. by Neal Norwitz · 17 years ago
  19. 905ec32 #1219: py3k cleanup in standard types docs. by Georg Brandl · 17 years ago
  20. 2d2590d #1211, #1212, #1213: py3k fixes to the tutorial. by Georg Brandl · 17 years ago
  21. 7c77f75 Make byext.py really work. by Guido van Rossum · 17 years ago
  22. d2e44df Revert r58075 (incorrect docs patch). by Collin Winter · 17 years ago
  23. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  24. 4e02c50 Clarify the difference between text and binary files. I'm not sure the by Skip Montanaro · 17 years ago
  25. 5dde61d Whitespace and line lengrth cleanup. by Guido van Rossum · 17 years ago
  26. 3f6d44e Delete now-unused static function Array_ass_slice(). by Guido van Rossum · 17 years ago
  27. 85ac28d Fix a straggler filter() call. by Guido van Rossum · 17 years ago
  28. dd6d024 #1189: documentation for tp_as_* structs. by Georg Brandl · 17 years ago
  29. 39763a1 Make Modules/_bsddb.c and PC/_winreg.c compile again by renaming by Thomas Heller · 17 years ago
  30. 4d8c193 Update the documentation of the open() builtin function a bit. I believe I by Skip Montanaro · 17 years ago
  31. 1c63960 Reformat the open function text so it fits within 80 columns in preparation by Skip Montanaro · 17 years ago
  32. f1368ef Fix turtle module: None and int are not comparable, map returns an iterator. by Georg Brandl · 17 years ago
  33. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  34. 3f993c3 Use an enum for decoding_state. It makes the code a little more understandable. by Neil Schemenauer · 17 years ago
  35. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  36. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  37. 7ce29ca Whitespace cleanup. by Thomas Wouters · 17 years ago
  38. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  39. 796d0b2 Merged revisions 58198-58202 via svnmerge from by Thomas Wouters · 17 years ago
  40. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  41. 782d6b4 issue1172: Documentation of "done" attribute in cgi module. by Sean Reifscheider · 17 years ago
  42. c250493 Optimize unicode_hash() by not calling by Guido van Rossum · 17 years ago
  43. e4a9e78 Thomas Wouters suggested an obvious improvement to unicode_eq(): use memcmp(). by Guido van Rossum · 17 years ago
  44. 89d8c60 Switch dict lookup around to optimizing for unicode. by Guido van Rossum · 17 years ago
  45. 4d02772 Micro optimizations after staring at gprof output for a while. by Guido van Rossum · 17 years ago
  46. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  47. a5b8e04 Merged revisions 58149-58150 via svnmerge from by Martin v. Löwis · 17 years ago
  48. 5a885d7 Merged revisions 58133-58135 via svnmerge from by Martin v. Löwis · 17 years ago
  49. 7b46942 Oops. by Georg Brandl · 17 years ago
  50. c090298 Document input() function. by Georg Brandl · 17 years ago
  51. 7dd803a Repair a bad translation of the exec statement. by Georg Brandl · 17 years ago
  52. a00f123 Fix for bug 1148: str/bytes issue in httplib's _safe_read(). by Guido van Rossum · 17 years ago
  53. 138bcb5 Document inspect.getfullargspec(). Fixes #1121. by Georg Brandl · 17 years ago
  54. 546e2d6 New documentation for the bdb module. Forward-port from rev. 58112, with a few 3k-specific changes. by Georg Brandl · 17 years ago
  55. 894d35e Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() by Guido van Rossum · 17 years ago
  56. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  57. 54d6874 Merged revisions 58091-58094 via svnmerge from by Thomas Wouters · 17 years ago
  58. bca5480 Merged revisions 58053-58090 via svnmerge from by Thomas Wouters · 17 years ago
  59. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  60. 954c31b merge of r58091 from trunk: by Gregory P. Smith · 17 years ago
  61. da86fcc Drop convert_binop. by Martin v. Löwis · 17 years ago
  62. 4633448 Change instances of 'while 1:' in the docs into 'while True:'. by Collin Winter · 17 years ago
  63. 4c6a140 General clean-up in socket howto. by Collin Winter · 17 years ago
  64. 58721bc Fix more raise statments in the docs. by Collin Winter · 17 years ago
  65. c7526f5 More two-argument raise cleanup in the tutorial. by Collin Winter · 17 years ago
  66. 1fc035f Fix docs that imply that tuples in except clauses must be parenthesized. by Collin Winter · 17 years ago
  67. 596d99a Fix more two-arg raise statements. by Collin Winter · 17 years ago
  68. bbc9712 Update tutorial/classes.rst to remove references to the old two-argument form of the raise statement. by Collin Winter · 17 years ago
  69. 0ec3477 Patch # 1094 by Serge Julien. Fix some bytes/str comparisons. by Guido van Rossum · 17 years ago
  70. 19ab2bd Remove yet more references to has_key() methods. by Collin Winter · 17 years ago
  71. 6fe2a6c Fix a legacy raise statement in pickle's docs. by Collin Winter · 17 years ago
  72. f6b8121 Remove two lingering references to now-gone has_key() methods from the library docs. by Collin Winter · 17 years ago
  73. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  74. c411918 email address update by Gregory P. Smith · 17 years ago
  75. b2c3a53 openssl 0.9.6 is too old to use, use our own modules by Gregory P. Smith · 17 years ago
  76. 2f21eb3 Adds stand alone _md5 and _sha1 modules for use by hashlib on systems by Gregory P. Smith · 17 years ago
  77. b3b4dbe Cleanup test_thread. CDB (Concurrent Database) support in BerkeleyDB is only by Gregory P. Smith · 17 years ago
  78. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  79. 4a625c3 Add REPORT_NDIFF option to o test that was hard to debug recently. by Guido van Rossum · 17 years ago
  80. f8c37d1 Restore caching of unicode hash value. This apparently was broken by Neil Schemenauer · 17 years ago
  81. 02c3056 Finish the first pass of the language reference update. by Georg Brandl · 17 years ago
  82. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  83. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  84. aaaef11 Add a test for fail*AlmostEqual, including the new support for complex numbers. by Jeffrey Yasskin · 17 years ago
  85. 96593ed Continue going through the language reference, bringing it up-to-date. by Georg Brandl · 17 years ago
  86. 44fa8f6 Make IDLE's file decode more robust. by Kurt B. Kaiser · 17 years ago
  87. 504d885 Fix docstring for getfullargspec(). by Brett Cannon · 17 years ago
  88. a5e8ab5 merge r58023 to fix issue1112 on windows. make this test more robust by Gregory P. Smith · 17 years ago
  89. 1cc5544 Extend unittest's fail*AlmostEqual methods to work on complex numbers. by Jeffrey Yasskin · 17 years ago
  90. d3f6c9d I think we can just dump the else clause, per the comment I just deleted. by Skip Montanaro · 17 years ago
  91. 22291c5 #1116: reference to old filename fixed. by Georg Brandl · 17 years ago
  92. dff1c31 In response to issue 1101, place vastly more emphasis on the new print() by Guido van Rossum · 17 years ago
  93. 67ced42 hashlib operates on bytes, not strings. by Georg Brandl · 17 years ago
  94. 0068e2c New exception catching syntax. by Georg Brandl · 17 years ago
  95. 105f60e 1. Fail gracefully if the file fails to decode when loaded. by Kurt B. Kaiser · 17 years ago
  96. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  97. fdc1a56 Cast away const qualifier to silence a compiler warning about it. by Brett Cannon · 17 years ago
  98. 65ea9bd Bug #1684991: explain __special__ lookup semantics. by Georg Brandl · 17 years ago
  99. 08898b4 Proof read/editing of abc. Added table of collections.Hashable etc. to by Mark Summerfield · 17 years ago
  100. fd4a7de Fix doctest failure introduced by r57949. by Guido van Rossum · 17 years ago