1. 9847000 Add tests for posix O_SHLOCK & O_EXLOCK. Missed checking this in with by Skip Montanaro · 19 years ago
  2. d1badac [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite by Andrew M. Kuchling · 19 years ago
  3. 1a72852 yet another cache to clear when leak hunting. by Michael W. Hudson · 19 years ago
  4. a002159 Port test_long.py to unittest. by Walter Dörwald · 19 years ago
  5. f2ca5af Fix bug by Michael W. Hudson · 19 years ago
  6. 68c0453 Add untokenize() function to allow full round-trip tokenization. by Raymond Hettinger · 19 years ago
  7. 5ac2534 Convert asynchat test to unittest; exercise the client using a numeric value as the terminator by Andrew M. Kuchling · 19 years ago
  8. 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
  9. a6f68e1 Convert gzip test suite to use unittest by Andrew M. Kuchling · 19 years ago
  10. 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
  11. 95a2a4e Tools/scripts/reindent.py _is_ your friend by Anthony Baxter · 19 years ago
  12. 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
  13. 61aa630 Fix missing assignments of marshal.load() values. Closes #1214662. by Skip Montanaro · 19 years ago
  14. 5d36a55 Whitespace normalization. by Tim Peters · 19 years ago
  15. 6b95f1d Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. by Georg Brandl · 19 years ago
  16. 451ae18 [ 1197218 ] test_locale fix on modern linux by Anthony Baxter · 19 years ago
  17. df88846 This is my patch: by Michael W. Hudson · 19 years ago
  18. 268e61c Bug #1213894: os.path.realpath didn't resolve symlinks that were the first by Georg Brandl · 19 years ago
  19. e7fa1af M-x untabify by Michael W. Hudson · 19 years ago
  20. 3554cad [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one by Andrew M. Kuchling · 19 years ago
  21. f369470 Fix compiler.ast.flatten function so that it works on lists. by Neil Schemenauer · 19 years ago
  22. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  23. ff52286 Fix test_site to not call open('...', 'wU'), as that now raises an error. by Michael W. Hudson · 19 years ago
  24. bbf12ba Disallow opening files with modes 'aU' or 'wU' as specified by PEP by Skip Montanaro · 19 years ago
  25. 57179fe This test relied on short-circuiting details of dictobject.py to avoid by Armin Rigo · 19 years ago
  26. 174dd22 Add better datetime support to xmlrpclib module. Closes patch #1120353. by Skip Montanaro · 19 years ago
  27. abb103b Don't use 'is not' to compare strings. (spotted by reading pypy-svn :) by Michael W. Hudson · 19 years ago
  28. 53e9a8b Fix error in a docstring where a single quote started the docstring but triple by Brett Cannon · 19 years ago
  29. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  30. 43148c8 Update test to the current readline() behaviour. by Walter Dörwald · 20 years ago
  31. b180c06 Fix tests dependent on the exception raised by non-settable descriptors. by Barry Warsaw · 20 years ago
  32. e890682 Whitespace normalization. by Tim Peters · 20 years ago
  33. f418991 Flush out support for ``class B(): pass`` syntax by adding support to the by Brett Cannon · 20 years ago
  34. 4ebc7e3 Add test for ``class B1(): pass``. by Brett Cannon · 20 years ago
  35. f754f5f test_default_encoding_issues(): Fully restore sys.setdefaultencoding. by Tim Peters · 20 years ago
  36. 7a6dc13 Fix for SF bug #1175396: readline() will now read one more character, if by Walter Dörwald · 20 years ago
  37. ac89f6e Fix testcase for 64bit BSD systems: long is 8 bytes for those systems by Hye-Shik Chang · 20 years ago
  38. e2749cb Fix for rather inaccurately titled bug by Michael W. Hudson · 20 years ago
  39. eba28be Whitespace normalization. by Tim Peters · 20 years ago
  40. fdf3bd6 SF patch #1171417: bug fix for islice() in docs by Raymond Hettinger · 20 years ago
  41. 267b868 * Fix decimal's handling of foreign types. Now returns NotImplemented by Raymond Hettinger · 20 years ago
  42. e6c470f SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 20 years ago
  43. 09a3f2c Add tests for tuple, list and UserList that initialize the object from by Walter Dörwald · 20 years ago
  44. c448a91 Fix typo. by Walter Dörwald · 20 years ago
  45. 7355e81 Add list tests that ensure that remove() removes the first occurrence. by Walter Dörwald · 20 years ago
  46. d73202c Apply remove's mutation test after every equality test. by Raymond Hettinger · 20 years ago
  47. 4aec61e Add a remove() method to collections.deque objects. by Raymond Hettinger · 20 years ago
  48. bea3f6f Bug #1163325: "special" decimals aren't hashable by Raymond Hettinger · 20 years ago
  49. 729c31f Reset internal buffers when seek() is called. This fixes SF bug #1156259. by Walter Dörwald · 20 years ago
  50. a5855d5 Patch #1159931/bug #1143895: inspect.getsource failed when functions, by Johannes Gijsbers · 20 years ago
  51. f77d033 Revised the itertools quantifier recipes to match the performance of the by Raymond Hettinger · 20 years ago
  52. 96229b1 Add two new functions, any() and all(). by Raymond Hettinger · 20 years ago
  53. 26e512a Test partial() with bound/unbound methods. by Raymond Hettinger · 20 years ago
  54. 01668a1 Fix test for socket.getfqdn() to also include the name returned by by Brett Cannon · 20 years ago
  55. 984f9bb operator.itemgetter() and operator.attrgetter() now support extraction by Raymond Hettinger · 20 years ago
  56. e2713be Build with --disable-unicode again. Fixes #1158607. Will backport to 2.4. by Martin v. Löwis · 20 years ago
  57. b60ae99 Convert file names of posix.access according to the file system encoding. by Martin v. Löwis · 20 years ago
  58. c8b6d1b Make functional.partial() more closely match the spec by emulating by Raymond Hettinger · 20 years ago
  59. 50682d0 SF #818006: merge from release24-maint branch: add useful read-only by Greg Ward · 20 years ago
  60. 78be7df Patch #918101: Add tarfile open mode r|* for auto-detection of the by Martin v. Löwis · 20 years ago
  61. 653a5ad Tweak test_communicate_stderr so that it works when run under a pydebug build. by Brett Cannon · 20 years ago
  62. 4040794 SF #1149508: ensure textwrap handles hyphenated numbers correctly, by Greg Ward · 20 years ago
  63. f7f1bb7 Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637 by Peter Astrand · 20 years ago
  64. cbac93c Added three more testcases: Using communicate with only one of by Peter Astrand · 20 years ago
  65. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 20 years ago
  66. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 20 years ago
  67. 7fe60c0 Patches #749830, #1144555: allow UNIX mmap size to default to current file size. by Martin v. Löwis · 20 years ago
  68. c5574e8 Patch #1117454: Remove code to special-case cookies without values by Martin v. Löwis · 20 years ago
  69. 4ea3ead Patch #1117339: Add cookielib special name tests. Backported to 2.4. by Martin v. Löwis · 20 years ago
  70. ff232d7 Clear internal call error in 'L' format. Fixes #723201. Backported to 2.4. by Martin v. Löwis · 20 years ago
  71. df24153 Patch #1107973: tarfile.ExFileObject iterators. by Martin v. Löwis · 20 years ago
  72. e94e74a Make test__locale more fine-grained. Now test localeconv and nl_langinfo by Brett Cannon · 20 years ago
  73. 9c323f8 SF patch #941881: PEP 309 Implementation (Partial Function Application). by Raymond Hettinger · 20 years ago
  74. c2a0ac2 Patch #1049151: adding bool support to xdrlib.py. by Martin v. Löwis · 20 years ago
  75. afd842f Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 20 years ago
  76. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 20 years ago
  77. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 20 years ago
  78. af3b39a Add support for negative indices in UserString.MutableString.__setitem__ by Walter Dörwald · 20 years ago
  79. 1fd4db9 Fix copy & paste error. by Walter Dörwald · 20 years ago
  80. 7f79152 Add tests for the methods added by UserString.MutableString. by Walter Dörwald · 20 years ago
  81. 5510f65 Avoid using items() in environ.update(). Fixes #1124513. Will backport to 2.4. by Martin v. Löwis · 20 years ago
  82. 3040b19 Add a basic test for UserString.MutableString. by Walter Dörwald · 20 years ago
  83. ee319f6 Fix by Michael W. Hudson · 20 years ago
  84. f0db38d Whitespace normalization. by Tim Peters · 20 years ago
  85. f058858 Test that SystemExits are handled properly by the exit machinery. I by Michael W. Hudson · 20 years ago
  86. a1fb4c8 Exceedingly minor tweak. by Michael W. Hudson · 20 years ago
  87. 22c0706 fix decoding in _stringify to not depend on the default encoding by Fred Drake · 20 years ago
  88. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 20 years ago
  89. ba613c3 accept datetime.datetime instances when marshalling; by Fred Drake · 20 years ago
  90. bfd7d6a Fix typo by Andrew M. Kuchling · 20 years ago
  91. a9620d1 Fix stupid typo: Don't read from a writer. by Walter Dörwald · 20 years ago
  92. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 20 years ago
  93. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 20 years ago
  94. 1f1d252 Add a test for UTF-16 reading where the byte sequence doesn't start with a BOM. by Walter Dörwald · 20 years ago
  95. 1d11de6 Revert os.py 1.75, and directly implement update. Fixes #1110478 and #1100235. by Martin v. Löwis · 20 years ago
  96. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 20 years ago
  97. 4d394df Truncate st_?time before comparing it with ST_?TIME in the tests. by Martin v. Löwis · 20 years ago
  98. 1083c24 Add a slice test with high < low. by Walter Dörwald · 20 years ago
  99. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  100. fee7b93 Use decorators. by Guido van Rossum · 20 years ago