| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Convert test_strftime, test_getargs, and test_pep247 to use unittest. | Brett Cannon | 2008-03-18 | 3 | -198/+248 |
|
|
* | Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. | Eric Smith | 2008-03-17 | 2 | -4/+13 |
|
|
* | Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms | Gregory P. Smith | 2008-03-17 | 1 | -0/+9 |
|
|
* | Finished backporting PEP 3127, Integer Literal Support and Syntax. | Eric Smith | 2008-03-17 | 4 | -117/+243 |
|
|
* | Make isinstance(OldstyleClass, NewstyleClass) return False instead of raising | Jeffrey Yasskin | 2008-03-17 | 2 | -5/+16 |
|
|
* | Issue 2264: empty float presentation type needs to have at least one digit pa... | Eric Smith | 2008-03-17 | 1 | -0/+9 |
|
|
* | Zap one more use of Exact/Inexact. | Raymond Hettinger | 2008-03-15 | 1 | -1/+1 |
|
|
* | Removed Exact/Inexact after discussion with Yasskin. | Raymond Hettinger | 2008-03-15 | 2 | -63/+4 |
|
|
* | add %f format to datetime - issue 1158 | Skip Montanaro | 2008-03-15 | 3 | -44/+60 |
|
|
* | Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently | Mark Dickinson | 2008-03-14 | 1 | -1/+1 |
|
|
* | Remove a bad test. | Brett Cannon | 2008-03-14 | 1 | -1/+0 |
|
|
* | Convert test_fcntl to unittest. | Brett Cannon | 2008-03-13 | 1 | -63/+83 |
|
|
* | Move test_gdbm to use unittest. | Brett Cannon | 2008-03-13 | 1 | -42/+79 |
|
|
* | Convert test_contains, test_crypt, and test_select to unittest. | Brett Cannon | 2008-03-13 | 2 | -77/+65 |
|
|
* | Move test_tokenize to doctest. | Brett Cannon | 2008-03-13 | 2 | -845/+498 |
|
|
* | Move test_thread over to unittest. Commits GHOP 237. | Brett Cannon | 2008-03-13 | 2 | -165/+151 |
|
|
* | Simplify the nlargest() code using heappushpop(). | Raymond Hettinger | 2008-03-13 | 1 | -6/+2 |
|
|
* | Issue 2274: Add heapq.heappushpop(). | Raymond Hettinger | 2008-03-13 | 2 | -2/+37 |
|
|
* | Add recipe to docs. | Raymond Hettinger | 2008-03-11 | 1 | -0/+9 |
|
|
* | Introduce a lock to fix a race condition which caused an exception in the test. | Neal Norwitz | 2008-03-09 | 1 | -6/+16 |
|
|
* | Issue 1106316. post_mortem()'s parameter, traceback, is now | Facundo Batista | 2008-03-08 | 1 | -1/+10 |
|
|
* | Add new name for Mandrake: Mandriva. | Marc-André Lemburg | 2008-03-08 | 1 | -3/+4 |
|
|
* | Speed up with statements by storing the __exit__ method on the stack instead ... | Nick Coghlan | 2008-03-07 | 1 | -4/+1 |
|
|
* | Progress on issue #1193577 by adding a polling .shutdown() method to | Jeffrey Yasskin | 2008-03-07 | 2 | -74/+95 |
|
|
* | Tweak recipes and tests | Raymond Hettinger | 2008-03-07 | 1 | -7/+30 |
|
|
* | Issue 2246: itertools grouper object did not participate in GC (should be ba... | Raymond Hettinger | 2008-03-06 | 1 | -0/+7 |
|
|
* | More tests. | Raymond Hettinger | 2008-03-06 | 1 | -6/+144 |
|
|
* | #2220: handle matching failure more gracefully. | Georg Brandl | 2008-03-06 | 1 | -1/+1 |
|
|
* | #2225: return nonzero status code from py_compile if not all files could be c... | Georg Brandl | 2008-03-06 | 1 | -2/+6 |
|
|
* | Patch #2232: os.tmpfile might fail on Windows if the user has no | Martin v. Löwis | 2008-03-06 | 1 | -0/+38 |
|
|
* | #1725737: ignore other VC directories other than CVS and SVN's too. | Georg Brandl | 2008-03-06 | 1 | -2/+2 |
|
|
* | C implementation of itertools.permutations(). | Raymond Hettinger | 2008-03-05 | 1 | -13/+18 |
|
|
* | Issue 1872: Changed the struct module typecode from 't' to '?', for | Thomas Heller | 2008-03-05 | 2 | -15/+15 |
|
|
* | Fix test_socketserver on Windows after r61099 added several signal.alarm() | Jeffrey Yasskin | 2008-03-05 | 1 | -3/+7 |
|
|
* | Make the timeout longer to give slow machines a chance to pass the test | Neal Norwitz | 2008-03-05 | 1 | -1/+1 |
|
|
* | Catch OSError when trying to remove a file in case removal fails. This | Neal Norwitz | 2008-03-05 | 1 | -2/+5 |
|
|
* | Get this test to pass even when there is no sound card in the system. | Neal Norwitz | 2008-03-05 | 1 | -4/+16 |
|
|
* | Remove the files/dirs after closing the DB so the tests work on Windows. | Neal Norwitz | 2008-03-05 | 2 | -6/+3 |
|
|
* | Issue#2238: some syntax errors from *args or **kwargs expressions | Amaury Forgeot d'Arc | 2008-03-05 | 1 | -0/+4 |
|
|
* | fix typo | Fred Drake | 2008-03-04 | 1 | -1/+1 |
|
|
* | Close the file before trying to remove the directory so it works on Windows. | Neal Norwitz | 2008-03-04 | 1 | -1/+2 |
|
|
* | Beef-up docs and tests for itertools. Fix-up end-case for product(). | Raymond Hettinger | 2008-03-04 | 1 | -6/+112 |
|
|
* | Issue 2226: Callable checked for the wrong abstract method. | Raymond Hettinger | 2008-03-03 | 1 | -1/+1 |
|
|
* | Remove dependency on itertools -- a simple genexp suffices. | Raymond Hettinger | 2008-03-03 | 1 | -2/+2 |
|
|
* | Actually import itertools. | Georg Brandl | 2008-03-03 | 1 | -0/+1 |
|
|
* | 15 -> 16, the 2nd | Georg Brandl | 2008-03-03 | 1 | -1/+1 |
|
|
* | 15 -> 16 | Christian Heimes | 2008-03-03 | 1 | -2/+2 |
|
|
* | Since abc._Abstract was replaces by a new type flags the regression test suit... | Christian Heimes | 2008-03-03 | 3 | -4/+16 |
|
|
* | Add test_main() functions to various tests where it was simple to do. Done so | Brett Cannon | 2008-03-03 | 9 | -36/+63 |
|
|
* | Add a note in the main test class' docstring that the order of execution of the | Brett Cannon | 2008-03-03 | 1 | -2/+9 |
|
|