1. aa86e35 - bool() called without arguments now returns False rather than by Guido van Rossum · 21 years ago
  2. 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 21 years ago
  3. b4cb664 New file. by Martin v. Löwis · 21 years ago
  4. 53d93ad Patch #681152: Support escaped Unicode characters in classes. Fixes #612074. by Martin v. Löwis · 21 years ago
  5. 1e91d8e Make _strptime escape regex syntax in format string to prevent use in internal regex. by Brett Cannon · 21 years ago
  6. b5c4b7b Skip nameprep test 3.43, as we do allow unassigned characters. The test by Martin v. Löwis · 22 years ago
  7. 2548c73 Implement IDNA (Internationalized Domain Names in Applications). by Martin v. Löwis · 22 years ago
  8. bbb931b Delete the 'h' test -- 'h' is no longer unsigned so the machinery here by Guido van Rossum · 22 years ago
  9. aa1ac54 Get test to work under regrtest when running whole suite by Neal Norwitz · 22 years ago
  10. fafd56f Add test that demonstrates SGML-style handling of processing instructions. by Fred Drake · 22 years ago
  11. 68d8cef Implemented posix-mode parsing support in shlex.py, as dicussed in by Gustavo Niemeyer · 22 years ago
  12. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 22 years ago
  13. a4541a3 - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 22 years ago
  14. a95eab5 Test SystemEvents too. by Jack Jansen · 22 years ago
  15. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 22 years ago
  16. 357981e Add a few errors tests for range(). by Walter Dörwald · 22 years ago
  17. 64976e7 Fix copy & paste error in comment. by Walter Dörwald · 22 years ago
  18. 43bc1f1 Fix the test so that it works even when /etc/group has two entries by Walter Dörwald · 22 years ago
  19. 66e1e50 Fix the test so that it works even when /etc/passwd has two entries by Walter Dörwald · 22 years ago
  20. 299b3df test_range(): The C code changed to raise TypeError in one of these by Tim Peters · 22 years ago
  21. b1ded1e Port test_pwd.py to PyUnit. Check that getpwall() and by Walter Dörwald · 22 years ago
  22. 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 22 years ago
  23. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 22 years ago
  24. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 22 years ago
  25. 41c99e7 SF patch #720991 by Gary Herron: by Guido van Rossum · 22 years ago
  26. ae32319 Get test working if gzip support is not available by Neal Norwitz · 22 years ago
  27. efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 22 years ago
  28. a1ce93f From http://mail.python.org/pipermail/i18n-sig/2003-April/001557.html by Barry Warsaw · 22 years ago
  29. 7f2588c SF patch #706707, time.tzset standards compliance update by Stuart Bishop by Neal Norwitz · 22 years ago
  30. 126f2b7 Avoid creating one of the TestSuite objects. by Fred Drake · 22 years ago
  31. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 22 years ago
  32. 594adac hoist contents of csv submodule up to the package level by Skip Montanaro · 22 years ago
  33. 11d204c Add test for MessageBeep() by Guido van Rossum · 22 years ago
  34. 8805e66 New tests identical to boom and boom2, except using new-style classes. by Tim Peters · 22 years ago
  35. 730f553 s/referrents/referents/g. Gotta love that referrers remains rife with rs. by Tim Peters · 22 years ago
  36. 0f81ab6 Finished implementing gc.get_referrents(): dealt with error and end by Tim Peters · 22 years ago
  37. f6b8045 Reworked has_finalizer() to use the new _PyObject_Lookup() instead by Tim Peters · 22 years ago
  38. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  39. ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 22 years ago
  40. bf384c2 Reworked move_finalizer_reachable() to create two distinct lists: by Tim Peters · 22 years ago
  41. 2f74fdd test_boom: More comments. Also check that len(gc.garbage) doesn't by Tim Peters · 22 years ago
  42. dee38ac Add Tim's gc boom test to the test suite. by Jeremy Hylton · 22 years ago
  43. 7fb697b Revert Patch #670715: iconv support. by Martin v. Löwis · 22 years ago
  44. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 22 years ago
  45. 56fbcb5 Remove duplicate test. by Walter Dörwald · 22 years ago
  46. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
  47. 3163a3b Patch #545300: Support marked sections. by Martin v. Löwis · 22 years ago
  48. 89feabc The socket module now always uses the _socketobject wrapper class, even on by Skip Montanaro · 22 years ago
  49. 7035c98 Move Mac/Windows specific expected skips from each platform list by Neal Norwitz · 22 years ago
  50. c2a7f22 Minimal test suite of the generated packages in plat-mac/lib-scriptpackages. by Jack Jansen · 22 years ago
  51. 97951de Add two tests for simple error cases. by Walter Dörwald · 22 years ago
  52. 590fe02 CommandTests.testgetoutput(): by Thomas Wouters · 22 years ago
  53. 3e0196c Adding unicode filename support to FSRefs broke things on MacOS9. "Fixed" by disabling unicode filenames on OS9. by Jack Jansen · 22 years ago
  54. 7d81452 Prevent the pty test from hanging by setting an alarm. by Neal Norwitz · 22 years ago
  55. e3d1df0 The message "*** skipping leakage tests ***" was causing the test to by Guido van Rossum · 22 years ago
  56. b4a0417 new CSV file processing module - see PEP 305 by Skip Montanaro · 22 years ago
  57. d50ade6 SF bug 705836: struct.pack of floats in non-native endian order by Tim Peters · 22 years ago
  58. 26f42f6 Skip the ioctl test if we can't open /dev/tty. This happens on by Neal Norwitz · 22 years ago
  59. 6e54f57 Fix SF bug #697556, test_posix fails: getlogin by Neal Norwitz · 22 years ago
  60. c2ca32d Test for UnicodeError instead of ImportError to determine whether by Martin v. Löwis · 22 years ago
  61. 9e1c192 binascii_a2b_base64: Properly return an empty string if the input was all by Thomas Wouters · 22 years ago
  62. d2b738e If time.tzset doesn't exist, don't test it. by Guido van Rossum · 22 years ago
  63. d11b62e - New function time.tzset() provides access to the C library tzet() by Guido van Rossum · 22 years ago
  64. 0834d77 Accept commas in unquoted attribute values. This closes SF patch #669683. by Fred Drake · 22 years ago
  65. 43ed43b Take out my (long since disabled) POSIX signal mask handling code. by Michael W. Hudson · 22 years ago
  66. b1fbf85 Filter out the depracation warning for macfs. by Jack Jansen · 22 years ago
  67. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  68. dded848 Allow unicode pathnames where FSRefs are expected. Fixes 696253. by Jack Jansen · 22 years ago
  69. 315aa36 Add 'audio' resource. by Guido van Rossum · 22 years ago
  70. 1fdb633 SF patch #691928: Use datetime in _strptime Contributed by Brett Cannon. by Raymond Hettinger · 22 years ago
  71. 2c2d322 SF patch #667730: More DictMixin by Raymond Hettinger · 22 years ago
  72. c49435c Skip the test if TESTFN_ENCODING is None. Fixes #699386. by Martin v. Löwis · 22 years ago
  73. 61cd0db Don't quote the path to Python unless the path contains an embedded space. by Tim Peters · 22 years ago
  74. 669454e Whitespace normalization. by Tim Peters · 22 years ago
  75. eabafeb This test relied on significant trailing whitespace in a string literal. Evil. by Tim Peters · 22 years ago
  76. c4d6bdd Test_ioctl and test_tarfile are skipped on MacOS9. by Jack Jansen · 22 years ago
  77. 149a899 The filename fix of the previous checkin was complete bogus, the problem is elsewhere. Retracting. by Jack Jansen · 22 years ago
  78. c7fcc2d Two fixes to make this test pass on MacOS9: by Jack Jansen · 22 years ago
  79. a3e1e4c SF patch #693753: fix for bug 639806: default for dict.pop by Raymond Hettinger · 22 years ago
  80. 73d538b Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, by Martin v. Löwis · 22 years ago
  81. fd8e6e5 test_ioctl is an expected skip on Windows. by Tim Peters · 22 years ago
  82. f008998 Fix bug by Michael W. Hudson · 22 years ago
  83. 206b9a7 MyComplex now works. by Guido van Rossum · 22 years ago
  84. fc27375 test_load_from_canned_string(): Created a DATA2 string to test a canned by Tim Peters · 22 years ago
  85. 6cca754 TestOnlySetsInBinaryOps: Simplified the non-inplace tests by using by Tim Peters · 22 years ago
  86. b7bfe4b Typo repairs in new code. by Tim Peters · 22 years ago
  87. 44f14b0 SF bug 693121: Set == non-Set is a TypeError. by Tim Peters · 22 years ago
  88. 3ba491e The doctest was printing Sets, but that's unreliable because set by Tim Peters · 22 years ago
  89. d6473d1 Reindent the new code properly. by Guido van Rossum · 22 years ago
  90. 46d3dc3 - New function sys.exc_clear() clears the current exception. This is by Guido van Rossum · 22 years ago
  91. 55b61d2 Fix SF bugs #692951 and 692988, test_timeout.py needs 'network' resource by Neal Norwitz · 22 years ago
  92. 98fc683 Getting rid of macfs. by Jack Jansen · 22 years ago
  93. add0ccc simple test case for dis module by Skip Montanaro · 22 years ago
  94. 68468eb Get rid of many apply() calls. by Guido van Rossum · 22 years ago
  95. f389c77 Use floor division (// and __[r]floordiv__ in right-dispatch test. by Guido van Rossum · 22 years ago
  96. f359410 Use floor division (//). by Guido van Rossum · 22 years ago
  97. 479d280 The macfs, macostools, and plistlib should not be expected to run by Fred Drake · 22 years ago
  98. 37c4728 Port test_ucn and test_unicodedata to PyUnit. Add a few tests for error by Walter Dörwald · 22 years ago
  99. 838e76a Test suite for the plistlib module. by Jack Jansen · 22 years ago
  100. 0c44c04 sys.executable can contain spaces, cater for this when passing it to by Jack Jansen · 22 years ago