| Commit message (Expand) | Author | Age | Files | Lines |
* | revert 69416; it didn't help much | Benjamin Peterson | 2009-02-08 | 1 | -1/+1 |
|
|
* | fix typo and test_urllib failures | Benjamin Peterson | 2009-02-07 | 1 | -1/+1 |
|
|
* | Add the missing importlib.test.extension.util. | Brett Cannon | 2009-02-07 | 1 | -0/+21 |
|
|
* | Merged revisions 69404 via svnmerge from | Guilherme Polo | 2009-02-07 | 2 | -37/+42 |
|
|
* | Update NOTES for importlib now that a replacement for functools.wraps is | Brett Cannon | 2009-02-07 | 1 | -1/+1 |
|
|
* | Create a simple substitute for functools.wraps to use in importlib._bootstrap. | Brett Cannon | 2009-02-07 | 2 | -5/+10 |
|
|
* | Factor out helper code from importlib.test.extension.test_path_hook. | Brett Cannon | 2009-02-07 | 6 | -42/+21 |
|
|
* | Add a note for importlib about backporting some of functools.wraps functional... | Brett Cannon | 2009-02-07 | 1 | -1/+4 |
|
|
* | Move importlib completely over to using rpartition and accepting the empty | Brett Cannon | 2009-02-07 | 4 | -15/+22 |
|
|
* | Move importlib's built-in importer to use rpartition for __package__. | Brett Cannon | 2009-02-07 | 2 | -2/+4 |
|
|
* | Move importlib's frozen importer over to rpartition for setting __package__. | Brett Cannon | 2009-02-07 | 2 | -5/+4 |
|
|
* | Rewrite the code implementing __import__ for importlib. Now it is much simpler | Brett Cannon | 2009-02-07 | 8 | -495/+106 |
|
|
* | long -> int | Guilherme Polo | 2009-02-07 | 1 | -1/+1 |
|
|
* | Merged revisions 69385 via svnmerge from | Tarek Ziadé | 2009-02-07 | 2 | -16/+47 |
|
|
* | Fixing changes from the last merge. | Guilherme Polo | 2009-02-06 | 2 | -2/+3 |
|
|
* | Make test_build_ext.py use sysconfig "srcdir" to find the source for | Neil Schemenauer | 2009-02-06 | 2 | -5/+23 |
|
|
* | Merged revisions 69366 via svnmerge from | Tarek Ziadé | 2009-02-06 | 1 | -0/+6 |
|
|
* | Merged revisions 69360 via svnmerge from | Tarek Ziadé | 2009-02-06 | 2 | -1/+39 |
|
|
* | Merged revisions 69141,69211-69212 via svnmerge from | Benjamin Peterson | 2009-02-06 | 2 | -9/+6 |
|
|
* | Initial, untested stab at writing a common denominator function for __import__ | Brett Cannon | 2009-02-06 | 2 | -0/+56 |
|
|
* | Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,... | Benjamin Peterson | 2009-02-06 | 5 | -10/+47 |
|
|
* | Merged revisions 69331 via svnmerge from | Eric Smith | 2009-02-06 | 1 | -1/+13 |
|
|
* | Merged revisions 69342 via svnmerge from | Tarek Ziadé | 2009-02-06 | 2 | -3/+28 |
|
|
* | Merged revisions 69332 via svnmerge from | Tarek Ziadé | 2009-02-06 | 2 | -6/+6 |
|
|
* | Merged revisions 69330 via svnmerge from | Tarek Ziadé | 2009-02-06 | 1 | -16/+5 |
|
|
* | Merged revisions 69324 via svnmerge from | Tarek Ziadé | 2009-02-06 | 4 | -24/+185 |
|
|
* | Finish implementing tests for importlib.machinery.PathFinder by testing that | Brett Cannon | 2009-02-06 | 2 | -14/+31 |
|
|
* | Add tests for using sys.path_hooks by importlib.machinery.PathFinder. | Brett Cannon | 2009-02-05 | 2 | -3/+11 |
|
|
* | Merged revisions 69316 via svnmerge from | Tarek Ziadé | 2009-02-05 | 2 | -3/+26 |
|
|
* | Implement test for sys.path_importer_cache having None for | Brett Cannon | 2009-02-05 | 1 | -2/+14 |
|
|
* | Since sysconfig.get_python_inc() now works when building in a | Neil Schemenauer | 2009-02-05 | 1 | -21/+4 |
|
|
* | Fix get_python_inc() to work when building in a directory separate from | Neil Schemenauer | 2009-02-05 | 1 | -5/+8 |
|
|
* | Merged revisions 69285 via svnmerge from | Tarek Ziadé | 2009-02-05 | 1 | -6/+1 |
|
|
* | Update NOTES for importlib about PathFinder. | Brett Cannon | 2009-02-05 | 1 | -0/+2 |
|
|
* | Begin writing tests for importlib.machinery.PathFinder. | Brett Cannon | 2009-02-05 | 1 | -1/+57 |
|
|
* | Check in the fact that importlib.machinery.PathFinder now exists. | Brett Cannon | 2009-02-05 | 1 | -0/+1 |
|
|
* | Rename importlib._bootstrap.SysPathFinder to PathFinder and expose off of | Brett Cannon | 2009-02-05 | 1 | -18/+16 |
|
|
* | Minor doc fixes. | Raymond Hettinger | 2009-02-04 | 1 | -3/+6 |
|
|
* | r69209 caused the fp of HTTPResponse objects to be a io.BufferedReader instea... | Kristján Valur Jónsson | 2009-02-03 | 1 | -4/+4 |
|
|
* | The default shelve pickle protocol should have been 3. | Raymond Hettinger | 2009-02-03 | 1 | -1/+1 |
|
|
* | Register decimals as numbers.Number | Raymond Hettinger | 2009-02-03 | 2 | -0/+14 |
|
|
* | Validate that __length_hint__ returns a usable result. | Raymond Hettinger | 2009-02-03 | 1 | -0/+10 |
|
|
* | Issue 1242657: list(obj) can swallow KeyboardInterrupt. | Raymond Hettinger | 2009-02-02 | 1 | -0/+24 |
|
|
* | Add some notes for importlib to package up what is in Python 2.7 as well as m... | Brett Cannon | 2009-02-02 | 1 | -0/+8 |
|
|
* | To prevent another screw-up on my part where my prototype gets lost thanks to | Brett Cannon | 2009-02-02 | 1 | -0/+76 |
|
|
* | merging / reimplementing r68532 from the trunk to Py3k | Kristján Valur Jónsson | 2009-02-02 | 2 | -24/+7 |
|
|
* | Note to move __package__ stuff over to rpartition to make Nick happy. Also make | Brett Cannon | 2009-02-02 | 1 | -0/+4 |
|
|
* | Recorded merge of revisions 69195 via svnmerge from | Guilherme Polo | 2009-02-02 | 4 | -16/+34 |
|
|
* | Issue #1717: remove the cmp builtin function, the C-API functions | Mark Dickinson | 2009-02-01 | 1 | -3/+1 |
|
|
* | Issue #1717, stage 2: remove uses of tp_compare in Modules and most | Mark Dickinson | 2009-02-01 | 3 | -2/+103 |
|
|