1. a5573b3 The output directory for tests that compare against stdout is now gone! by Brett Cannon · 17 years ago
  2. b7ec8e5 test_errno was a no-op test; now it actually tests things and uses unittest. by Brett Cannon · 17 years ago
  3. 0bb7950 Move test_extcall to doctest. by Brett Cannon · 17 years ago
  4. ba17cfc Convert test_dummy_threading and test_dbm to unittest. by Brett Cannon · 17 years ago
  5. 6eeaddc Convert test_strftime, test_getargs, and test_pep247 to use unittest. by Brett Cannon · 17 years ago
  6. 0aed07a Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. by Eric Smith · 17 years ago
  7. f48f9d3 Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms by Gregory P. Smith · 17 years ago
  8. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 17 years ago
  9. b9e15f7 Make isinstance(OldstyleClass, NewstyleClass) return False instead of raising by Jeffrey Yasskin · 17 years ago
  10. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 17 years ago
  11. 6b46762 Removed Exact/Inexact after discussion with Yasskin. by Raymond Hettinger · 17 years ago
  12. fc070d2 add %f format to datetime - issue 1158 by Skip Montanaro · 17 years ago
  13. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 17 years ago
  14. 6119540 Remove a bad test. by Brett Cannon · 17 years ago
  15. 1f5182b Convert test_fcntl to unittest. by Brett Cannon · 17 years ago
  16. 4a6e8d6 Move test_gdbm to use unittest. by Brett Cannon · 17 years ago
  17. 2e0f9f3 Convert test_contains, test_crypt, and test_select to unittest. by Brett Cannon · 17 years ago
  18. b8d3735 Move test_tokenize to doctest. by Brett Cannon · 17 years ago
  19. 66865d2 Move test_thread over to unittest. Commits GHOP 237. by Brett Cannon · 17 years ago
  20. 53bdf09 Issue 2274: Add heapq.heappushpop(). by Raymond Hettinger · 17 years ago
  21. e8b4b60 Add recipe to docs. by Raymond Hettinger · 17 years ago
  22. 0098c9d Introduce a lock to fix a race condition which caused an exception in the test. by Neal Norwitz · 17 years ago
  23. e75f59a Progress on issue #1193577 by adding a polling .shutdown() method to by Jeffrey Yasskin · 17 years ago
  24. 38fb9be Tweak recipes and tests by Raymond Hettinger · 17 years ago
  25. a1ca94a Issue 2246: itertools grouper object did not participate in GC (should be backported). by Raymond Hettinger · 17 years ago
  26. ad47fa1 More tests. by Raymond Hettinger · 17 years ago
  27. d2bbe52 Patch #2232: os.tmpfile might fail on Windows if the user has no by Martin v. Löwis · 17 years ago
  28. 66f91ea C implementation of itertools.permutations(). by Raymond Hettinger · 17 years ago
  29. f3c0559 Issue 1872: Changed the struct module typecode from 't' to '?', for by Thomas Heller · 17 years ago
  30. f28896d Fix test_socketserver on Windows after r61099 added several signal.alarm() by Jeffrey Yasskin · 17 years ago
  31. 48309d5 Make the timeout longer to give slow machines a chance to pass the test by Neal Norwitz · 17 years ago
  32. 2180725 Get this test to pass even when there is no sound card in the system. by Neal Norwitz · 17 years ago
  33. d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 17 years ago
  34. d553d85 Beef-up docs and tests for itertools. Fix-up end-case for product(). by Raymond Hettinger · 17 years ago
  35. 26bc177 15 -> 16, the 2nd by Georg Brandl · 17 years ago
  36. 728bee8 15 -> 16 by Christian Heimes · 17 years ago
  37. 608c1d8 Since abc._Abstract was replaces by a new type flags the regression test suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too? by Christian Heimes · 17 years ago
  38. 7dbd918 Add test_main() functions to various tests where it was simple to do. Done so by Brett Cannon · 17 years ago
  39. 963c80f Add a note in the main test class' docstring that the order of execution of the by Brett Cannon · 17 years ago
  40. bfbf5b3 Add a note in the main test class' docstring that the order of execution of the by Brett Cannon · 17 years ago
  41. 6382ffc Move test_largefile over to using 'with' statements for open files. by Brett Cannon · 17 years ago
  42. 56c4deb Refactor test_logging to use unittest. This should finally solve the flakiness by Brett Cannon · 17 years ago
  43. 1cc60ed Updated to pysqlite 2.4.1. Documentation additions will come later. by Gerhard Häring · 17 years ago
  44. 08ff682 Handle the repeat keyword argument for itertools.product(). by Raymond Hettinger · 17 years ago
  45. 1ddf1d8 Add __format__ method to Decimal, to support PEP 3101 by Mark Dickinson · 17 years ago
  46. b4cbc98 Add alternate constructor for itertools.chain(). by Raymond Hettinger · 17 years ago
  47. 05bf633 Have itertools.chain() consume its inputs lazily instead of building a tuple of iterators at the outset. by Raymond Hettinger · 17 years ago
  48. acfd8ed Windows fix for signal test - skip it earlier by Christian Heimes · 17 years ago
  49. 392c159 Prevent SocketServer.ForkingMixIn from waiting on child processes that it by Jeffrey Yasskin · 17 years ago
  50. 180997b Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make by Jeffrey Yasskin · 17 years ago
  51. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 17 years ago
  52. 2ab0552 Larger test range by Raymond Hettinger · 17 years ago
  53. 93e804d Add itertools.combinations(). by Raymond Hettinger · 17 years ago
  54. ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 17 years ago
  55. 75992ed Speed up this test by about 99%. Remove sleeps and replace with events. by Neal Norwitz · 17 years ago
  56. b0917c1 Don't use a hard coded port. This test could hang/fail if the port is in use. by Neal Norwitz · 17 years ago
  57. 9d63837 Make sure the itertools filter functions give the same performance for func=bool as func=None. by Raymond Hettinger · 17 years ago
  58. aa5e3ce Move .setupterm() output so that we don't try to call endwin() if it fails by Andrew M. Kuchling · 17 years ago
  59. c6b5200 Fix a minor typo in a docstring. by Brett Cannon · 17 years ago
  60. 6057b2e Create a db_home directory with a unique name so multiple users can by Neal Norwitz · 17 years ago
  61. c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 17 years ago
  62. 8c460d5 #1627: httplib now ignores negative Content-Length headers. by Georg Brandl · 17 years ago
  63. 2363503 #900744: If an invalid chunked-encoding header is sent by a server, by Georg Brandl · 17 years ago
  64. ebcfd11 #1506171: added operator.methodcaller(). by Georg Brandl · 17 years ago
  65. e2065c6 #1826: allow dotted attribute paths in operator.attrgetter. by Georg Brandl · 17 years ago
  66. c12b988 Added simple test case. Thanks Benjamin Peterson. by Facundo Batista · 17 years ago
  67. 0bb8567 In test_heapq and test_bisect, test both the Python and the C implementation. by Georg Brandl · 17 years ago
  68. a885c15 Followup to r61011: Also avoid the reference cycle when the Thread's target by Jeffrey Yasskin · 17 years ago
  69. 3414ea9 Prevent classes like: by Jeffrey Yasskin · 17 years ago
  70. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  71. 19aff0c #1433694: minidom's .normalize() failed to set .nextSibling for last element. by Andrew M. Kuchling · 17 years ago
  72. 085f75a #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. by Andrew M. Kuchling · 17 years ago
  73. ad61bc8 #2067: file.__exit__() now calls subclasses' close() method. by Georg Brandl · 17 years ago
  74. 7e251e8 Issue 1089358. Adds the siginterrupt() function, that is just a by Facundo Batista · 17 years ago
  75. 57826cf #2165: fix test_logging failure on some machines. by Georg Brandl · 17 years ago
  76. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  77. b12f0b5 Issue 1781. Now ConfigParser.add_section does not let you add a by Facundo Batista · 17 years ago
  78. 1660933 Issue 1776581. Minor corrections to smtplib, and two small tests. by Facundo Batista · 17 years ago
  79. fc2d010 Issue 1881. Increased the stack limit from 500 to 1500. Also added by Facundo Batista · 17 years ago
  80. a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 17 years ago
  81. 73d7963 Improve the implementation of itertools.product() by Raymond Hettinger · 17 years ago
  82. fb0742f Tests for bin() builtin. These need to get merged into py3k, which has no tests for bin. by Eric Smith · 17 years ago
  83. 50986cc First draft for itertools.product(). Docs and other updates forthcoming. by Raymond Hettinger · 17 years ago
  84. ce584d4 Moved test_format into the correct TestCase. by Eric Smith · 17 years ago
  85. 7ef40bf Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description). by Eric Smith · 17 years ago
  86. bc32fee Added code to correct combining str and unicode in ''.format(). Added test case. by Eric Smith · 17 years ago
  87. d50a5f2 Temporarily removed float tests. See issue 1600. by Eric Smith · 17 years ago
  88. d14600e Issue 1224. Now we support again the double slash in the URL. by Facundo Batista · 17 years ago
  89. 759bfc6 Issue #1916. Added isgenerator() and isgeneratorfunction() to by Facundo Batista · 17 years ago
  90. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  91. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but by Facundo Batista · 17 years ago
  92. f9db8a3 Move test_logging over to doctest. by Brett Cannon · 17 years ago
  93. 632fad3 Prevent a crash with nested scopes, again caused by calling Py_DECREF when the pointer by Amaury Forgeot d'Arc · 17 years ago
  94. 64d6843 mmap.PROT_READ does not exists on win32; Skip this test created by r60830. by Amaury Forgeot d'Arc · 17 years ago
  95. d8bcbf2 Re-enable tests, they were failing since gc.collect() clears the various freelists. by Amaury Forgeot d'Arc · 17 years ago
  96. f67abcc Temporarily let these tests pass by Amaury Forgeot d'Arc · 17 years ago
  97. 60d6c7f Issue #2115: __slot__ attributes setting was 10x slower. by Amaury Forgeot d'Arc · 17 years ago
  98. 7adfad8 Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ by Christian Heimes · 18 years ago
  99. 2f0da53 Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them. by Christian Heimes · 18 years ago
  100. 1c214d6 Performance optimizations on Fraction's constructor. by Jeffrey Yasskin · 18 years ago