1. 1a72852 yet another cache to clear when leak hunting. by Michael W. Hudson · 19 years ago
  2. a002159 Port test_long.py to unittest. by Walter Dörwald · 19 years ago
  3. f2ca5af Fix bug by Michael W. Hudson · 19 years ago
  4. f9d88ab SF bug #1219361 Fix typo by Raymond Hettinger · 19 years ago
  5. ca7329c 1. Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with by Kurt B. Kaiser · 19 years ago
  6. df506ea 1. Patch 1196895 Jeff Shute: by Kurt B. Kaiser · 19 years ago
  7. e537d6e Patch #1171150: add a newline to py_compile error output by Georg Brandl · 19 years ago
  8. 68c0453 Add untokenize() function to allow full round-trip tokenization. by Raymond Hettinger · 19 years ago
  9. ca69f02 [Patch #1002763] Allow long ints as terminator values; also, treat a terminator of 0 like the empty string or None by Andrew M. Kuchling · 19 years ago
  10. 5ac2534 Convert asynchat test to unittest; exercise the client using a numeric value as the terminator by Andrew M. Kuchling · 19 years ago
  11. 01cb47b [Bug #1074261, patch #1074381] Restrict the size of chunks read from the file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin by Andrew M. Kuchling · 19 years ago
  12. a6f68e1 Convert gzip test suite to use unittest by Andrew M. Kuchling · 19 years ago
  13. 6564ca7 fix import to work with either module name. by Gregory P. Smith · 19 years ago
  14. 6e57c2a [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a single null byte; test a null byte in all encodings to be sure it works by Andrew M. Kuchling · 19 years ago
  15. 422b10f fix broken (unexecuted) test by Anthony Baxter · 19 years ago
  16. 95a2a4e Tools/scripts/reindent.py _is_ your friend by Anthony Baxter · 19 years ago
  17. ecdad85 [Bug #1172763] dumbdbm uses eval() on lines, so it chokes if there's an extra \r on the end of a line; fixed by stripping off trailing whitespace. by Andrew M. Kuchling · 19 years ago
  18. eb26084 Minor namespace clean-up. by Raymond Hettinger · 19 years ago
  19. 7e87a8a fix more Errors (not Failures) when run using BerkeleyDB <= 4.0 by Gregory P. Smith · 19 years ago
  20. c9321cc fix Errors (not Failures) in test cases when running with BerkeleyDB<4.2 by Gregory P. Smith · 19 years ago
  21. 889bca0 make the tests that expect uncatchable exceptions from a callback test by Gregory P. Smith · 19 years ago
  22. 9e28205 test case for pybsddb SF bug id 1215432 by Gregory P. Smith · 19 years ago
  23. 48796c3 test DB.associate using transactions. somewhat related to SF pybsddb by Gregory P. Smith · 19 years ago
  24. 4c1423b Documentation clarified re. config socket listener protocol by Vinay Sajip · 19 years ago
  25. 61aa630 Fix missing assignments of marshal.load() values. Closes #1214662. by Skip Montanaro · 19 years ago
  26. 9166e1a Bug #1196315: fix weakref.WeakValueDictionary constructor. by Georg Brandl · 19 years ago
  27. e947706 pybsddb 4.3.2: by Gregory P. Smith · 19 years ago
  28. 5d36a55 Whitespace normalization. by Tim Peters · 19 years ago
  29. 6b95f1d Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. by Georg Brandl · 19 years ago
  30. 451ae18 [ 1197218 ] test_locale fix on modern linux by Anthony Baxter · 19 years ago
  31. df88846 This is my patch: by Michael W. Hudson · 19 years ago
  32. 268e61c Bug #1213894: os.path.realpath didn't resolve symlinks that were the first by Georg Brandl · 19 years ago
  33. e7fa1af M-x untabify by Michael W. Hudson · 19 years ago
  34. e4ed2de pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparison by Gregory P. Smith · 19 years ago
  35. 3554cad [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one by Andrew M. Kuchling · 19 years ago
  36. c30faa8 [Bug #1177831] Fix generation of code for GROUPREF_EXISTS. Thanks to Andre Malo for the fix. by Andrew M. Kuchling · 19 years ago
  37. f369470 Fix compiler.ast.flatten function so that it works on lists. by Neil Schemenauer · 19 years ago
  38. 7627617 [Bug #1152762] Ensure _end_of_line() returns an x-coordinate that's within the text box by Andrew M. Kuchling · 19 years ago
  39. d80ef02 added GET/SETANNOTATION methods by Piers Lauder · 19 years ago
  40. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  41. ff52286 Fix test_site to not call open('...', 'wU'), as that now raises an error. by Michael W. Hudson · 19 years ago
  42. bbf12ba Disallow opening files with modes 'aU' or 'wU' as specified by PEP by Skip Montanaro · 19 years ago
  43. fffc4b7 Whitespace normalization. by Tim Peters · 19 years ago
  44. 57179fe This test relied on short-circuiting details of dictobject.py to avoid by Armin Rigo · 19 years ago
  45. 174dd22 Add better datetime support to xmlrpclib module. Closes patch #1120353. by Skip Montanaro · 19 years ago
  46. 935ea9a Improve subprocess link error notification M NEWS.txt M PyShell.py M rpc.py by Kurt B. Kaiser · 19 years ago
  47. 77d08bc SF bug #1193890: calendar.weekheader not found in __all__ by Raymond Hettinger · 19 years ago
  48. 20345fb Use Queue's blocking feature instead of sleeping in the main by Kurt B. Kaiser · 19 years ago
  49. abb103b Don't use 'is not' to compare strings. (spotted by reading pypy-svn :) by Michael W. Hudson · 19 years ago
  50. 42406e6 SF patch #1191489: Simplify logic in random.py by Raymond Hettinger · 19 years ago
  51. 53e9a8b Fix error in a docstring where a single quote started the docstring but triple by Brett Cannon · 19 years ago
  52. ebbffd4 Fixed a typo in docstring I happened upon. by Guido van Rossum · 19 years ago
  53. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  54. d7c795e Make parse_makefile fallback to environment variables if nothing is by Martin v. Löwis · 19 years ago
  55. 08cd598 Introduced EXTRA_CFLAGS as an environment variable used by the Makefile. Meant by Brett Cannon · 19 years ago
  56. 43148c8 Update test to the current readline() behaviour. by Walter Dörwald · 19 years ago
  57. a4eb2d5 Fix comment. by Walter Dörwald · 19 years ago
  58. bc8e642 If the data read from the bytestream in readline() ends in a '\r' read one more by Walter Dörwald · 19 years ago
  59. b180c06 Fix tests dependent on the exception raised by non-settable descriptors. by Barry Warsaw · 19 years ago
  60. e890682 Whitespace normalization. by Tim Peters · 19 years ago
  61. fa7e6b4 typo fix, thanks Jeremy Sanders by Anthony Baxter · 19 years ago
  62. f418991 Flush out support for ``class B(): pass`` syntax by adding support to the by Brett Cannon · 19 years ago
  63. 4ebc7e3 Add test for ``class B1(): pass``. by Brett Cannon · 19 years ago
  64. f754f5f test_default_encoding_issues(): Fully restore sys.setdefaultencoding. by Tim Peters · 19 years ago
  65. c88a6c7 SF bug #1168983: ftplib.py string index out of range by Raymond Hettinger · 19 years ago
  66. 714f878 Fix typos. by Walter Dörwald · 19 years ago
  67. 7a6dc13 Fix for SF bug #1175396: readline() will now read one more character, if by Walter Dörwald · 19 years ago
  68. ac89f6e Fix testcase for 64bit BSD systems: long is 8 bytes for those systems by Hye-Shik Chang · 19 years ago
  69. 4a70486 Added threadName and now using re-entrant lock by Vinay Sajip · 19 years ago
  70. a6e8a4a Since PyPI only accepts UTF-8 encoded data now, make sure that the data is by Walter Dörwald · 19 years ago
  71. e2749cb Fix for rather inaccurately titled bug by Michael W. Hudson · 19 years ago
  72. b7e99b6 SF patch 1167316: doctest.py fails self-test if run directly. by Tim Peters · 19 years ago
  73. eba28be Whitespace normalization. by Tim Peters · 19 years ago
  74. 700f36c Two lines in this file had unbalanced parentheses -- couldn't possibly by Tim Peters · 19 years ago
  75. fdf3bd6 SF patch #1171417: bug fix for islice() in docs by Raymond Hettinger · 19 years ago
  76. 267b868 * Fix decimal's handling of foreign types. Now returns NotImplemented by Raymond Hettinger · 19 years ago
  77. e6c470f SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 19 years ago
  78. ca5d8fe Add missing socket import by Martin v. Löwis · 19 years ago
  79. c6699b7 minor cleanup by Fred Drake · 19 years ago
  80. 8efd904 Make SRPMs pyversion 'any'. by Martin v. Löwis · 19 years ago
  81. 98da562 Make dist_files a triple, with the Python target version included, by Martin v. Löwis · 19 years ago
  82. 8d12158 Make the signature detached. by Martin v. Löwis · 19 years ago
  83. 09a3f2c Add tests for tuple, list and UserList that initialize the object from by Walter Dörwald · 19 years ago
  84. 24ff83d Fix registration of output file. by Martin v. Löwis · 19 years ago
  85. be435bf Don't set the Python version for sdist uploads. by Martin v. Löwis · 19 years ago
  86. f74b923 Upload GPG signature. by Martin v. Löwis · 19 years ago
  87. c448a91 Fix typo. by Walter Dörwald · 19 years ago
  88. abc1566 fix Python style guide conformance by Fred Drake · 19 years ago
  89. 7355e81 Add list tests that ensure that remove() removes the first occurrence. by Walter Dörwald · 19 years ago
  90. 98858c9 Actually add the implementation of the command. by Martin v. Löwis · 19 years ago
  91. 55f1bb8 Add the upload command. Make all dist commands register their by Martin v. Löwis · 19 years ago
  92. 227e8ff - rename check_provision() to split_revision() by Fred Drake · 19 years ago
  93. db7b002 PEP 314 implementation (client side): by Fred Drake · 19 years ago
  94. 54398d6 helper code, mostly from Andy Harrington, for PEP 314 completion by Fred Drake · 19 years ago
  95. d73202c Apply remove's mutation test after every equality test. by Raymond Hettinger · 19 years ago
  96. 4aec61e Add a remove() method to collections.deque objects. by Raymond Hettinger · 19 years ago
  97. 9f5f9d9 typo by Skip Montanaro · 19 years ago
  98. 7ce7515 add two more extensions: by Fred Drake · 19 years ago
  99. bea3f6f Bug #1163325: "special" decimals aren't hashable by Raymond Hettinger · 19 years ago
  100. 71fd90d Add default value for "whence" argument. by Walter Dörwald · 19 years ago