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