| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #1717, stage 2: remove uses of tp_compare in Modules and most | Mark Dickinson | 2009-02-01 | 15 | -113/+385 |
|
|
* | Simplify write_bytecode for importlib. | Brett Cannon | 2009-02-01 | 1 | -30/+7 |
|
|
* | Update importlib notes. | Brett Cannon | 2009-02-01 | 1 | -12/+11 |
|
|
* | Ditch read_source() and read_bytecode() and replace with *_path() and | Brett Cannon | 2009-02-01 | 2 | -40/+8 |
|
|
* | Expose source_path and bytecode_path on _PyFileLoader. | Brett Cannon | 2009-02-01 | 2 | -11/+13 |
|
|
* | Remove an outdated todo item from importlib. | Brett Cannon | 2009-02-01 | 1 | -6/+0 |
|
|
* | Move import semantic util code to importlib.test.import_.util. | Brett Cannon | 2009-02-01 | 10 | -92/+99 |
|
|
* | Rename importlib.test.support to importlib.test.util. | Brett Cannon | 2009-02-01 | 22 | -191/+163 |
|
|
* | Do not execute the .pyc/.pyo files as well as the .py files. | Brett Cannon | 2009-02-01 | 1 | -1/+4 |
|
|
* | Split out support code that is specific to source tests out of | Brett Cannon | 2009-02-01 | 8 | -113/+123 |
|
|
* | Move source loader tests (including reload tests) over to | Brett Cannon | 2009-02-01 | 3 | -77/+72 |
|
|
* | Fix importlib.machinery.FrozenImporter.load_module() to set __package__ | Brett Cannon | 2009-02-01 | 3 | -20/+57 |
|
|
* | Move extension module loader tests over to importlib.test.abc.LoaderTests. | Brett Cannon | 2009-02-01 | 2 | -4/+22 |
|
|
* | Move built-in loader tests to importlib.test.abc.LoaderTests. | Brett Cannon | 2009-02-01 | 2 | -5/+24 |
|
|
* | documentation wording fix for issue4903 | Gregory P. Smith | 2009-02-01 | 2 | -6/+6 |
|
|
* | Blocked revisions 69146,69149 via svnmerge | Benjamin Peterson | 2009-01-31 | 0 | -0/+0 |
|
|
* | fix indentation again | Benjamin Peterson | 2009-01-31 | 1 | -2497/+2497 |
|
|
* | Blocked revisions 69134 via svnmerge | Benjamin Peterson | 2009-01-31 | 0 | -0/+0 |
|
|
* | detabify Objects/unicodeobject.c | Benjamin Peterson | 2009-01-31 | 1 | -3092/+3092 |
|
|
* | Make Python/makeopcodetargets runnable with Python 2.3. With any luck, this | Mark Dickinson | 2009-01-31 | 1 | -1/+4 |
|
|
* | comprehrensions now have proper scoping #5106 | Benjamin Peterson | 2009-01-31 | 1 | -2/+2 |
|
|
* | Merged revisions 68840,68881,68943,68945 via svnmerge from | Benjamin Peterson | 2009-01-30 | 2 | -13/+91 |
|
|
* | Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from | Benjamin Peterson | 2009-01-30 | 6 | -37/+89 |
|
|
* | Issue #5041: Fixed memory leak. | Hirokazu Yamamoto | 2009-01-30 | 1 | -2/+4 |
|
|
* | Blocked revisions 68772,68892,69039 via svnmerge | Benjamin Peterson | 2009-01-30 | 0 | -0/+0 |
|
|
* | fix a case of set_daemon #5087 | Benjamin Peterson | 2009-01-30 | 1 | -1/+1 |
|
|
* | The trace module was trying to turn ints into ints since co_lnotab was changed | Brett Cannon | 2009-01-30 | 2 | -1/+4 |
|
|
* | Merge testing ABCs for importlib into importlib.test.abc. | Brett Cannon | 2009-01-30 | 6 | -47/+45 |
|
|
* | Merged revisions 69106 via svnmerge from | Tarek Ziadé | 2009-01-29 | 1 | -9/+6 |
|
|
* | Fix error in docs. The source says proto 2 is the default. | Raymond Hettinger | 2009-01-29 | 1 | -1/+1 |
|
|
* | Merged revisions 69100 via svnmerge from | Antoine Pitrou | 2009-01-29 | 3 | -1/+33 |
|
|
* | Fix issue5076: bdist_wininst fails on py3k | Mark Hammond | 2009-01-29 | 3 | -7/+40 |
|
|
* | Merged revisions 69094 via svnmerge from | Mark Hammond | 2009-01-29 | 4 | -91/+92 |
|
|
* | Merged revisions 69078-69080 via svnmerge from | Brett Cannon | 2009-01-29 | 2 | -2/+4 |
|
|
* | Blocked revisions 69085,69087 via svnmerge | Benjamin Peterson | 2009-01-29 | 0 | -0/+0 |
|
|
* | Fix typo. | Raymond Hettinger | 2009-01-29 | 1 | -6/+6 |
|
|
* | Update itertools.__doc__ to include all tools. | Raymond Hettinger | 2009-01-29 | 1 | -4/+11 |
|
|
* | Blocked revisions 68521 via svnmerge | Benjamin Peterson | 2009-01-29 | 0 | -0/+0 |
|
|
* | Blocked revisions 69070,69074 via svnmerge | Benjamin Peterson | 2009-01-29 | 0 | -0/+0 |
|
|
* | Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the t... | Raymond Hettinger | 2009-01-29 | 1 | -15/+13 |
|
|
* | Beef-up tests for collections ABCs. | Raymond Hettinger | 2009-01-28 | 2 | -3/+64 |
|
|
* | Issue #4707: round(x, n) now returns an integer when x is an integer. | Mark Dickinson | 2009-01-28 | 5 | -33/+217 |
|
|
* | Merged revisions 69060-69063 via svnmerge from | Guilherme Polo | 2009-01-28 | 6 | -9/+49 |
|
|
* | Merged revisions 69053 via svnmerge from | Guilherme Polo | 2009-01-28 | 16 | -0/+1196 |
|
|
* | Merged revisions 69050 via svnmerge from | Guilherme Polo | 2009-01-28 | 15 | -2/+5074 |
|
|
* | Merged revisions 69038 via svnmerge from | Mark Hammond | 2009-01-27 | 2 | -2/+76 |
|
|
* | Blocked revisions 69001,69010,69012,69014,69018,69023 via svnmerge | Benjamin Peterson | 2009-01-27 | 0 | -0/+0 |
|
|
* | Fix an occurrence of cmp that was missed in r69025 | Mark Dickinson | 2009-01-27 | 1 | -5/+9 |
|
|
* | Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from | Mark Dickinson | 2009-01-27 | 32 | -216/+210 |
|
|
* | Add more tests for the powerset() recipe. | Raymond Hettinger | 2009-01-27 | 1 | -0/+6 |
|
|