1. 07aec08 reapply of r57378 to fix bug 1725856 by Gregory P. Smith · 17 years ago
  2. fc5fafc Fix logic bug that triggered assert. by Guido van Rossum · 17 years ago
  3. 37410aa Make uuid.py thread-safe. Fix by Yuri Ginsburg. by Guido van Rossum · 17 years ago
  4. fd53fd6 Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away. by Guido van Rossum · 17 years ago
  5. eda12ec Patch by Ero Carrera to get rid of PyString in timemodule.c. by Guido van Rossum · 17 years ago
  6. 28bbe42 math.floor(<int>) now returns the argument, by Guido van Rossum · 17 years ago
  7. 9cfc62c cPickle was removed by Neal Norwitz · 17 years ago
  8. 15d3d04 Before calling _PyType_Lookup() the type needs to be initialized. by Guido van Rossum · 17 years ago
  9. 0d94203 Use unicode for the errno.errorcode names by Neal Norwitz · 17 years ago
  10. 9af3ae4 Return unicode for a key name from a wide character by Neal Norwitz · 17 years ago
  11. c1786ea Use UTF-8 for a docstring that contains non-ASCII chars. by Neal Norwitz · 17 years ago
  12. 10ab4ae Patch by Keir Mierle so that sets can be compared to other objects that know by Guido van Rossum · 17 years ago
  13. 928115a CFunctions' doc strings should be Unicode. by Guido van Rossum · 17 years ago
  14. 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
  15. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  16. 0f3cff5 Fix test_shelve when it uses dumbdbm. Found and fixed by Larry Hastings. by Neal Norwitz · 17 years ago
  17. 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
  18. d6d2f2f Use unicode. by Neal Norwitz · 17 years ago
  19. fe096d2 Remove unused variable. by Guido van Rossum · 17 years ago
  20. f9e115a Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  21. 56dc955 Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  22. 361ed15 Require strict bytes objects for all bsddb.db input values. by Gregory P. Smith · 17 years ago
  23. e5a8dc6 docstring cut n paste correction by Gregory P. Smith · 17 years ago
  24. 9a3b014 os.getcwd() is returning str8; sys.path items are str. by Kurt B. Kaiser · 17 years ago
  25. e071277 Conform to py3k dict.{keys, items, values} with some advice from 2b3 by Kurt B. Kaiser · 17 years ago
  26. 460add4 Correction to the xmlrpc docs by John Reese and Jacques Frechet. by Guido van Rossum · 17 years ago
  27. ad66742 Fix raise with 2to3 by Kurt B. Kaiser · 17 years ago
  28. e45be28 Convert raise statements in Lib/plat-{mac,os2emx}. by Collin Winter · 17 years ago
  29. cfe02a4 Fixes by John Reese and Jacques Frechet that make test_xmlrpc pass. by Guido van Rossum · 17 years ago
  30. 2523621 Change the error reporting when an invalid string is encountered to avoid by Guido van Rossum · 17 years ago
  31. ae211f9 Implement the round functionality for PEP 3141, and add tests for it. by Alex Martelli · 17 years ago
  32. 1dd46a0 Convert raise statements in Mac/. by Collin Winter · 17 years ago
  33. a817e58 Convert raise statements in Tools/. by Collin Winter · 17 years ago
  34. 2d7f6a0 Switch to absolute imports to support direct execution of modules. Many by Kurt B. Kaiser · 17 years ago
  35. 86d8b34 Implement the trunc builtin for PEP 3141 by Alex Martelli · 17 years ago
  36. a62b45c Use python -E instead of undef PYTHONPATH. by Guido van Rossum · 17 years ago
  37. a65e94c Convert raise statements in bsddb. by Collin Winter · 17 years ago
  38. 865ea89 Fix raise statements in hotshot. by Collin Winter · 17 years ago
  39. e405037 Fix typo in comment by Kurt B. Kaiser · 17 years ago
  40. 7a4dbaf Replace file() with open() by Kurt B. Kaiser · 17 years ago
  41. 2d726df Use buffer of type 'bytes' to accumulate from socket. by Kurt B. Kaiser · 17 years ago
  42. e20a2c1 stop leaving log.0000001 __db.00* and xxx.db turds in developer by Gregory P. Smith · 17 years ago
  43. d5a5f5d Patch #1774414: make it possible to use SVK to develop Python. by Collin Winter · 17 years ago
  44. 4d9620a Fix bug introduced at r54854 to mass replace string fcns with methods :-) by Kurt B. Kaiser · 17 years ago
  45. 0e6012c Eat some low hanging fruit... let the test suite run. by Gregory P. Smith · 17 years ago
  46. ea03c11 Fix some debugging print statements by Kurt B. Kaiser · 17 years ago
  47. b7f136e Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass, by Guido van Rossum · 17 years ago
  48. bfc672b Remove some old comments adequately covered in the code. by Kurt B. Kaiser · 17 years ago
  49. 3a4e24b 1. Fix File Open: don't encode filename to UTF-8 bytes by Kurt B. Kaiser · 17 years ago
  50. 23cfc98 Convert sunaudio.py to bytes. (It has no unit test of its own!) by Guido van Rossum · 17 years ago
  51. 003b098 eliminate "from ... import *" in a function. by Kurt B. Kaiser · 17 years ago
  52. 3741eff Fall back to 'ascii' encoding if sys.getfilesystemencoding() returns by Lars Gustäbel · 17 years ago
  53. 4566c71 Fix fallout from making __private variables in threading.py _protected. by Guido van Rossum · 17 years ago
  54. 360f2f8 Make runtests.py a little more versatile: support -x, and arbitrary flags by Guido van Rossum · 17 years ago
  55. c1e315d Rename __whatever variables defined by ABCMeta to _abc_whatever, so as by Guido van Rossum · 17 years ago
  56. d064899 Get rid of all __private variables and methods in the threading module. by Guido van Rossum · 17 years ago
  57. 61e21b5 Merged revisions 57152-57220 via svnmerge from by Guido van Rossum · 17 years ago
  58. 7d6068e Remove note about compatibility layer, as the compatibility layer was removed. by Jeremy Hylton · 17 years ago
  59. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  60. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  61. 666bb41 SF #1777057, fix memoryview('test') so it works in debug mode too. by Neal Norwitz · 17 years ago
  62. 9604286 Fix xmlrpc unittest. While it now passes on Linux, it still fails by Hye-Shik Chang · 17 years ago
  63. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  64. 1836358 Fix an unfinished though in my own test code. by Guido van Rossum · 17 years ago
  65. 8358db2 New I/O code from Tony Lownds implement newline feature correctly, by Guido van Rossum · 17 years ago
  66. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  67. 3de862d Make the cleanup between -R passes deal better with ABC registries, by Guido van Rossum · 17 years ago
  68. 787794f Fix _dump_registry() to use the correct prefix for the private by Guido van Rossum · 17 years ago
  69. ba9c9ac Force PYTHON = python2.5. by Guido van Rossum · 17 years ago
  70. 2673de5 Allow -R4:3 instead of -R4:3: -- I never use the 3rd arg. by Guido van Rossum · 17 years ago
  71. 4e7eba7 Change the usage() function. Don't print the entire multi-page by Guido van Rossum · 17 years ago
  72. f10aa98 Another merge. Only doc stuff was affected (but this aligns the UTF-32 by Guido van Rossum · 17 years ago
  73. eb1cf4e Print warning when openssl is too old; it's pretty essential at this point. by Guido van Rossum · 17 years ago
  74. 19e6238 Fix stupid typo in Lib/encodings/utf_32.py which led to failing tests by Walter Dörwald · 17 years ago
  75. 8d991ed Move some declarations before code, to compile with GCC 2.95. by Guido van Rossum · 17 years ago
  76. 76f2b24 Fix refcount leak, courtesy Christian Heines. by Guido van Rossum · 17 years ago
  77. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  78. e9af284 No need to define raw_input(), input() does the same. by Georg Brandl · 17 years ago
  79. ed44a1a Merged revisions 57125-57128 via svnmerge from by Neal Norwitz · 17 years ago
  80. 5ef262c Simplify expression by Neal Norwitz · 17 years ago
  81. 540d987 Fix the IPv6 pton/ntop tests. Why weren't these failing on Linux? No IPv6? by Guido van Rossum · 17 years ago
  82. da97cd0 Merged revisions 57113-57124 via svnmerge from by Guido van Rossum · 17 years ago
  83. 62e3a9a Remove output file for test that was already removed by Neal Norwitz · 17 years ago
  84. 289bc05 some RiscOS stuff I missed before (was only looking for "RISCOS") by Skip Montanaro · 17 years ago
  85. ceaafa6 forgot this when removing RISCOS stuff by Skip Montanaro · 17 years ago
  86. da27fd2 Manually patched a few things that didn't get merged in, but should. by Guido van Rossum · 17 years ago
  87. af554a0 First merge from the trunk straight into the py3k branch. I'm not by Guido van Rossum · 17 years ago
  88. 10c17ba Initialized merge tracking via "svnmerge" with revisions "1-56846" from by Guido van Rossum · 17 years ago
  89. aa44796 Delete svnmerge properties (temporarily). by Guido van Rossum · 17 years ago
  90. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  91. 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
  92. 5f22af1 Remove last(?) use of httplib.HTTPS, which caused test_socket_ssl to fail. by Jeremy Hylton · 17 years ago
  93. d9a1579 Complete truncated sentence. by Walter Dörwald · 17 years ago
  94. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  95. c5aba17 Remove license of the md5 module which is no longer part of Python. by Georg Brandl · 17 years ago
  96. eb08df2 Remove a bogus comment based on the code above. by Neal Norwitz · 17 years ago
  97. cb44f26 Support the new doc system. Also test_compiler was removed in 3k by Neal Norwitz · 17 years ago
  98. 116aa62 Move the 3k reST doc tree in place. by Georg Brandl · 17 years ago
  99. 739c01d Delete the LaTeX doc tree. by Georg Brandl · 17 years ago
  100. 2d16490 Tag last revision with LaTeX docs. by Georg Brandl · 17 years ago