| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | test_nis would fail if test.test_support.verbose was true but NIS was not set | Brett Cannon | 2008-03-19 | 1 | -0/+3 |
|
|
* | Import lib2to3. | Martin v. Löwis | 2008-03-19 | 1 | -0/+3 |
|
|
* | Issue #2400: Allow relative imports to "import *". | Martin v. Löwis | 2008-03-19 | 1 | -0/+2 |
|
|
* | Added my name to ACKS | David Wolever | 2008-03-19 | 1 | -0/+1 |
|
|
* | Add Jeff Rush | Andrew M. Kuchling | 2008-03-19 | 1 | -0/+2 |
|
|
* | Backport of the print function, using a __future__ import. | Eric Smith | 2008-03-18 | 2 | -0/+4 |
|
|
* | news entry for the chown fix | Gregory P. Smith | 2008-03-18 | 1 | -0/+3 |
|
|
* | Issue 1577: shutil.move() where destination is a directory was doing a | Sean Reifscheider | 2008-03-18 | 1 | -0/+3 |
|
|
* | Issue 2332: add new attribute names for instance method objects | Neal Norwitz | 2008-03-18 | 1 | -0/+3 |
|
|
* | - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on | Guido van Rossum | 2008-03-18 | 1 | -0/+3 |
|
|
* | Issue #2341: Add a Py3k warning when raising an exception that doesn't | Guido van Rossum | 2008-03-18 | 1 | -1/+2 |
|
|
* | The output directory for tests that compare against stdout is now gone! | Brett Cannon | 2008-03-18 | 1 | -0/+2 |
|
|
* | Remove our implementation of memmove() and strerror(); both are in the C89 | Brett Cannon | 2008-03-18 | 1 | -0/+3 |
|
|
* | test_errno was a no-op test; now it actually tests things and uses unittest. | Brett Cannon | 2008-03-18 | 1 | -0/+2 |
|
|
* | - Issue #2371: Add a Py3k warning when catching an exception that | Guido van Rossum | 2008-03-18 | 2 | -0/+4 |
|
|
* | Move test_extcall to doctest. | Brett Cannon | 2008-03-18 | 1 | -0/+2 |
|
|
* | Convert test_dummy_threading and test_dbm to unittest. | Brett Cannon | 2008-03-18 | 1 | -0/+2 |
|
|
* | Convert test_strftime, test_getargs, and test_pep247 to use unittest. | Brett Cannon | 2008-03-18 | 1 | -0/+2 |
|
|
* | Add David Wolever. | Martin v. Löwis | 2008-03-17 | 1 | -0/+3 |
|
|
* | Issue 2321: reduce memory usage (increase the memory that is returned | Neal Norwitz | 2008-03-17 | 1 | -0/+3 |
|
|
* | Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. | Eric Smith | 2008-03-17 | 1 | -0/+4 |
|
|
* | Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms | Gregory P. Smith | 2008-03-17 | 1 | -0/+4 |
|
|
* | Add Trent Nelson. | Martin v. Löwis | 2008-03-17 | 1 | -0/+3 |
|
|
* | Allow Gnu gcc's to build python on OSX by removing -Wno-long-double, | Jeffrey Yasskin | 2008-03-17 | 1 | -0/+4 |
|
|
* | Add a warning for code like: | Neal Norwitz | 2008-03-15 | 1 | -0/+2 |
|
|
* | . | Skip Montanaro | 2008-03-15 | 1 | -0/+4 |
|
|
* | Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently | Mark Dickinson | 2008-03-14 | 1 | -0/+4 |
|
|
* | Patch #2284: add -x64 option to rt.bat. | Martin v. Löwis | 2008-03-14 | 1 | -0/+4 |
|
|
* | Convert test_fcntl to unittest. | Brett Cannon | 2008-03-13 | 1 | -0/+2 |
|
|
* | Move test_gdbm to use unittest. | Brett Cannon | 2008-03-13 | 2 | -0/+3 |
|
|
* | Convert test_contains, test_crypt, and test_select to unittest. | Brett Cannon | 2008-03-13 | 2 | -0/+3 |
|
|
* | Move test_tokenize to doctest. | Brett Cannon | 2008-03-13 | 2 | -0/+3 |
|
|
* | Move test_thread over to unittest. Commits GHOP 237. | Brett Cannon | 2008-03-13 | 1 | -0/+2 |
|
|
* | Issue 2274: Add heapq.heappushpop(). | Raymond Hettinger | 2008-03-13 | 1 | -0/+2 |
|
|
* | Issue 1106316. post_mortem()'s parameter, traceback, is now | Facundo Batista | 2008-03-08 | 1 | -0/+5 |
|
|
* | Speed up with statements by storing the __exit__ method on the stack instead ... | Nick Coghlan | 2008-03-07 | 1 | -0/+3 |
|
|
* | Progress on issue #1193577 by adding a polling .shutdown() method to | Jeffrey Yasskin | 2008-03-07 | 1 | -0/+3 |
|
|
* | Bug #2220: handle rlcompleter attribute match failure more gracefully. | Georg Brandl | 2008-03-06 | 1 | -0/+2 |
|
|
* | #2225: return nonzero status code from py_compile if not all files could be c... | Georg Brandl | 2008-03-06 | 1 | -0/+3 |
|
|
* | Add missing NEWS entry for r61263. | Georg Brandl | 2008-03-06 | 1 | -0/+3 |
|
|
* | Patch #2232: os.tmpfile might fail on Windows if the user has no | Martin v. Löwis | 2008-03-06 | 1 | -0/+6 |
|
|
* | C implementation of itertools.permutations(). | Raymond Hettinger | 2008-03-05 | 1 | -1/+1 |
|
|
* | Issue 1872: Changed the struct module typecode from 't' to '?', for | Thomas Heller | 2008-03-05 | 1 | -0/+3 |
|
|
* | News entry for yesterdays commit. | Thomas Heller | 2008-03-05 | 1 | -0/+10 |
|
|
* | test_smtplib sometimes reports leaks too, suppress it | Neal Norwitz | 2008-03-05 | 1 | -1/+1 |
|
|
* | Use -u urlfetch to run more tests | Neal Norwitz | 2008-03-05 | 1 | -3/+3 |
|
|
* | Tabs -> spaces | Neal Norwitz | 2008-03-05 | 1 | -13/+13 |
|
|
* | Issue#2238: some syntax errors from *args or **kwargs expressions | Amaury Forgeot d'Arc | 2008-03-05 | 1 | -0/+6 |
|
|
* | Typo fix | Andrew M. Kuchling | 2008-03-04 | 1 | -1/+1 |
|
|
* | Typo fix | Andrew M. Kuchling | 2008-03-04 | 1 | -1/+1 |
|
|