1. 9b69ed9 In test_site, correctly escape backslashes in path names. by Amaury Forgeot d'Arc · 17 years ago
  2. 8f40f06 test_macos can be skipped on non-mac platforms. by Amaury Forgeot d'Arc · 17 years ago
  3. b5d1740 Bumping to 2.6b1 by Barry Warsaw · 17 years ago
  4. da9c9be Fix test_socket_ssl the easy way and remove it per #1489 by Benjamin Peterson · 17 years ago
  5. 7248fd8 The ssl certificate at https://sf.net is not valid. by Amaury Forgeot d'Arc · 17 years ago
  6. a3b6baa Remove test_listener_client to remove possible race condition in the multiprocessing tests by Jesse Noller · 17 years ago
  7. 1862382 Attempt RLock creation prior to test execution on Linux, if it raises the OSError in issue 3111, skip the test suite by Jesse Noller · 17 years ago
  8. 09fc075 Fix the previous fix by Amaury Forgeot d'Arc · 17 years ago
  9. 19fc7f6 On windows, lib2to3 should accept / and \ in the fixer_dir argument by Amaury Forgeot d'Arc · 17 years ago
  10. aa4e47a add needed import by Benjamin Peterson · 17 years ago
  11. ed77f2e skip test_multiprocessing when /dev/shm doesn't exist. This seems to be a chroot problem in the buildbot env. by Benjamin Peterson · 17 years ago
  12. 21a45e1 Roll back Raymond's -r64098 while we think of something better. by Guido van Rossum · 17 years ago
  13. 8f96b8e Bug #3126: StreamHandler and FileHandler check before calling "flush" and "close" that the stream object has these, using hasattr (thanks to bobf for the patch). by Vinay Sajip · 17 years ago
  14. 59f3ade Issue 3048: Fixed sys.sizeof test fails with wide unicode. by Robert Schuppenies · 17 years ago
  15. da3a1b1 reduce the test_multiprocessing load to ones that shouldn't hang. These will be reenabled gradually as we find the problems. by Benjamin Peterson · 17 years ago
  16. a8919fe Issue 3110: Crash with weakref subclass, by Amaury Forgeot d'Arc · 17 years ago
  17. a161f60 Forward-port new test from r64300. by Georg Brandl · 17 years ago
  18. e607823 Merged revisions 63661,63666,63695,63711,63729,63769,63790,63880,63886 via svnmerge from by Benjamin Peterson · 17 years ago
  19. a0205d0 silence the test when it is skipped on some platforms. should fix a buildbot. by Gregory P. Smith · 17 years ago
  20. 3a44148 Revert eol-style to CRLF. by Martin v. Löwis · 17 years ago
  21. 06510b2 Run svneol.py on all sources. by Martin v. Löwis · 17 years ago
  22. 7f03ea7 darn! I converted half of the files the wrong way. by Benjamin Peterson · 17 years ago
  23. dfd7949 convert multiprocessing to unix line endings by Benjamin Peterson · 17 years ago
  24. 5c0be32 platform.uname now tries to fill empty values even when os.uname is present by Benjamin Peterson · 17 years ago
  25. 73e9ffc Fixed: sys.getsizeof does not take the actual length of the tuples into account. by Robert Schuppenies · 17 years ago
  26. 04097a6 Fix typo in method name. The LT class implemented less than. The LE class by Neal Norwitz · 17 years ago
  27. 26305a0 add py3k warnings to rfc822 by Benjamin Peterson · 17 years ago
  28. a03722f deprecated mimetools by Benjamin Peterson · 17 years ago
  29. ffae306 Sounds obvious, but I didn't even realize that you can put non-string by Armin Rigo · 17 years ago
  30. 13f7382 add old names back into __all__ by Benjamin Peterson · 17 years ago
  31. f439560 add aliases to threading module by Benjamin Peterson · 17 years ago
  32. 0fbcf69 give the threading API PEP 8 names by Benjamin Peterson · 17 years ago
  33. e29a103 Add test for heapq using both __lt__ and __le__. by Raymond Hettinger · 17 years ago
  34. e605e4f fix import of multiprocessing by juggling imports by Benjamin Peterson · 17 years ago
  35. 4267be6 Multi-arg form for set.difference() and set.difference_update(). by Raymond Hettinger · 17 years ago
  36. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 17 years ago
  37. 190d56e add the multiprocessing package to fulfill PEP 371 by Benjamin Peterson · 17 years ago
  38. d529986 convert test_struct to a unittest thanks to Giampaolo Rodola by Benjamin Peterson · 17 years ago
  39. 610a93e Handle the case with zero arguments. by Raymond Hettinger · 17 years ago
  40. caea65e Mini-PEP: Simplifying numbers.py by Raymond Hettinger · 17 years ago
  41. 31296c0 backport of 64096 by Benjamin Peterson · 17 years ago
  42. 8e8de4a Correct test_pydoc for win32 platforms, to account for normalized URLs: by Amaury Forgeot d'Arc · 17 years ago
  43. b67b53d Fixed test to reflect new filedispatcher semantics, as well as two by Josiah Carlson · 17 years ago
  44. 901c997 Issue 3048: Fixed sys.getsizeof for unicode objects. by Robert Schuppenies · 17 years ago
  45. 8509db5 Add the "ast" module, containing helpers to ease use of the "_ast" classes. by Georg Brandl · 17 years ago
  46. 1a72d88 Applying updated patch from Issue 1736190, which addresses partial by Josiah Carlson · 17 years ago
  47. 602d8db Added better pickling support to xrange objects. Cleaned up the unit test. by Alexandre Vassalotti · 17 years ago
  48. 1f2f61a Issue 2582: Fix pickling of xrange objects. by Alexandre Vassalotti · 17 years ago
  49. 5c4d3d0 Let set.intersection() and set.intersection_update() take multiple input arguments. by Raymond Hettinger · 17 years ago
  50. ee4bcad Let set.union() and set.update() accept multiple inputs. by Raymond Hettinger · 17 years ago
  51. ecbdd2e Issue #2138: Add math.factorial(). by Raymond Hettinger · 17 years ago
  52. e98839a Issue3065: Fixed pickling of named tuples. Added tests. by Raymond Hettinger · 17 years ago
  53. f4fcdb6 warn about parameter tuple unpacking by Benjamin Peterson · 17 years ago
  54. d5efd20 Warn about assigning to Py3k keywords (True and False) by Benjamin Peterson · 17 years ago
  55. 2fe3ef8 change Py3k backquote warning to a SyntaxWarning and add a test by Benjamin Peterson · 17 years ago
  56. 60fbf7f #3057: Fix the MutableMapping ABC to use the 2.6 dict interface. by Georg Brandl · 17 years ago
  57. 3bed4ae Register IterableUserDict as a MutableMapping. by Georg Brandl · 17 years ago
  58. bf0610a Revert unwanted changes. by Georg Brandl · 17 years ago
  59. 7be19aa Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc() by Georg Brandl · 17 years ago
  60. 6a5a177 Finished bug #2451. Fixed the retrying part to make it more robust. by Facundo Batista · 17 years ago
  61. fbb9c0b Issue #1798: Add ctypes calling convention that allows safe access of errno. by Thomas Heller · 17 years ago
  62. 8456f64 revert 63965 for preformance reasons by Benjamin Peterson · 17 years ago
  63. 30dc7b8 use the more idomatic while True by Benjamin Peterson · 17 years ago
  64. 2e75c45 Backport from py3k: Implement the new buffer interface from pep3118 by Thomas Heller · 17 years ago
  65. 5640ce2 MacOS X: Enable 4-way universal builds by Ronald Oussoren · 17 years ago
  66. 80af6da Fixed complex.__getnewargs__() to not emit another complex object. by Alexandre Vassalotti · 17 years ago
  67. d5bb921 Revert revisions 63943 and 63942 (Issue #1798: Add ctypes calling by Thomas Heller · 17 years ago
  68. e70c337 Issue #1798: Add ctypes calling convention that allows safe access to by Thomas Heller · 17 years ago
  69. 8718459 Patch #1513695: New turtle module, with demos. by Martin v. Löwis · 17 years ago
  70. 4ed3ed1 Fix Tkinter sequence passing. #2906. by Georg Brandl · 17 years ago
  71. c5393c6 make test_mutex more elegant by Benjamin Peterson · 17 years ago
  72. a2a89a8 Change all functions that expect one unicode character to accept a pair of by Walter Dörwald · 17 years ago
  73. 261b136 Fix the -x flag so that is does work. by Thomas Heller · 17 years ago
  74. 137d824 Fix issue 2782: be less strict about the format string type in strftime. by Gregory P. Smith · 17 years ago
  75. 8856dda Adds a Thread.getIdent() method to provide the _get_ident() value for by Gregory P. Smith · 17 years ago
  76. ac19d85 Deprecate htmllib and sgmllib for 3.0. by Georg Brandl · 17 years ago
  77. 681001e Generate pydoc's topic help from the reST docs via Sphinx' new text writer. by Georg Brandl · 17 years ago
  78. 9359aff Fix test_sys. by Robert Schuppenies · 17 years ago
  79. 12f8107 Fix test_descrtut. by Georg Brandl · 17 years ago
  80. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 17 years ago
  81. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 17 years ago
  82. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 17 years ago
  83. 7f7ca35 Fixed rowcount for SELECT statements. They're -1 now (again), for better DB-API 2.0 compliance. by Gerhard Häring · 17 years ago
  84. 5bd8833 Fix bdist_wininst --user-access-control for win2k by Mark Hammond · 17 years ago
  85. 6d7702e Implement heapq in terms of less-than (to match list.sort()). by Raymond Hettinger · 17 years ago
  86. adff65b Update the locale module alias table. by Marc-André Lemburg · 17 years ago
  87. 3c2523c Issue 2903: Add __name__ in globals for namedtuple namespace. by Raymond Hettinger · 17 years ago
  88. 8df4e22 Fix typo in testSum by Mark Dickinson · 17 years ago
  89. 9287acf ctypes NULL function pointers have a boolean False value now. by Thomas Heller · 17 years ago
  90. 4f1b1ed Fixed the semantic of timeout for socket.create_connection and by Facundo Batista · 17 years ago
  91. d0b592f #2985: allow i8 in XMLRPC responses. by Georg Brandl · 17 years ago
  92. 7943a32 #2906: accept lists for options, and some cosmetic fixes in Tkinter. by Georg Brandl · 17 years ago
  93. abb34fe UserString.MutableString has been removed in Python 3.0. by Brett Cannon · 17 years ago
  94. 88eeef3 bdist_wininst now works correctly when both --skip-build and --plat-name are specified. by Mark Hammond · 17 years ago
  95. dbd2f6d Better integration between Python testing and bsddb3 by Jesus Cea · 17 years ago
  96. b1a54a3 Do not close external file objects passed to tarfile.open(mode='w:bz2') by Lars Gustäbel · 17 years ago
  97. 1d31023 Improvements for test_py3kwarn by Benjamin Peterson · 17 years ago
  98. 838c7b3 remove some __getslice__ by Benjamin Peterson · 17 years ago
  99. c1c83bb remove duplication in test module by Benjamin Peterson · 17 years ago
  100. 9171bed take Brett's advice on a few warnings by Benjamin Peterson · 17 years ago