| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 70439 via svnmerge from | Mark Dickinson | 2009-03-17 | 2 | -86/+295 |
|
|
* | Merged revisions 70430 via svnmerge from | Mark Dickinson | 2009-03-17 | 2 | -2/+8 |
|
|
* | Implement InspectLoader for FrozenImporter. | Brett Cannon | 2009-03-15 | 4 | -9/+65 |
|
|
* | Implement InspectLoader for BuiltinImporter. | Brett Cannon | 2009-03-15 | 6 | -22/+80 |
|
|
* | A few more docstring/API cleanups for importlib. | Brett Cannon | 2009-03-15 | 4 | -53/+55 |
|
|
* | Clean up docstring from importlib.util.module_for_loader. | Brett Cannon | 2009-03-15 | 1 | -8/+8 |
|
|
* | Merged revisions 70364 via svnmerge from | Eric Smith | 2009-03-14 | 1 | -3/+33 |
|
|
* | Merged revisions 70356 via svnmerge from | Antoine Pitrou | 2009-03-14 | 2 | -33/+128 |
|
|
* | Issue #5016: FileIO.seekable() could return False if the file position | Antoine Pitrou | 2009-03-13 | 1 | -0/+10 |
|
|
* | The error detection code in FileIO.close() could fail to reflect the `errno` ... | Antoine Pitrou | 2009-03-13 | 1 | -0/+15 |
|
|
* | Issue #5392: when a very low recursion limit was set, the interpreter would | Antoine Pitrou | 2009-03-13 | 1 | -0/+42 |
|
|
* | Finish properly hiding importlib implementation code. | Brett Cannon | 2009-03-12 | 12 | -55/+43 |
|
|
* | Last big re-organization of importlib._bootstrap. Should actually be able to ... | Brett Cannon | 2009-03-12 | 1 | -172/+173 |
|
|
* | Do a little bit of reorganization on importlib._bootstrap. | Brett Cannon | 2009-03-12 | 1 | -58/+69 |
|
|
* | Make utility code in importlib._bootstrap private. | Brett Cannon | 2009-03-12 | 1 | -32/+32 |
|
|
* | Define importlib.__init__.__all__. | Brett Cannon | 2009-03-12 | 1 | -1/+3 |
|
|
* | Merged revisions 70308 via svnmerge from | Tarek Ziadé | 2009-03-11 | 1 | -0/+2 |
|
|
* | Add a NOTE for importlib to fill in the docstrings for the ABCs. | Brett Cannon | 2009-03-11 | 1 | -0/+2 |
|
|
* | For collections.deque() objects, expose the maxlen parameter as a read-only a... | Raymond Hettinger | 2009-03-10 | 1 | -0/+10 |
|
|
* | Small optimization for corner case where maxlen==0. | Raymond Hettinger | 2009-03-10 | 1 | -1/+18 |
|
|
* | Implement importlib.util.set_loader: a decorator to automatically set | Brett Cannon | 2009-03-10 | 6 | -11/+25 |
|
|
* | Implement get_source for importlib.abc.PyLoader using source_path and get_data. | Brett Cannon | 2009-03-10 | 3 | -10/+52 |
|
|
* | Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,... | Benjamin Peterson | 2009-03-09 | 1 | -4/+8 |
|
|
* | Clean up importlib NOTES so it only contains short term goals. | Brett Cannon | 2009-03-09 | 1 | -16/+0 |
|
|
* | Introduce importlib.abc. The module contains various ABCs related to imports | Brett Cannon | 2009-03-09 | 8 | -140/+555 |
|
|
* | Remove a dead XXX comment. | Brett Cannon | 2009-03-09 | 1 | -1/+0 |
|
|
* | Fix importlib._bootstrap.PyPycLoader.load_module() to better handle | Brett Cannon | 2009-03-09 | 1 | -3/+10 |
|
|
* | hack StringIO's repr, so it doesn't give an encoding | Benjamin Peterson | 2009-03-09 | 1 | -0/+5 |
|
|
* | give TextIOWrapper a repr that tells you the encoding | Benjamin Peterson | 2009-03-09 | 2 | -0/+9 |
|
|
* | Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode. | Brett Cannon | 2009-03-09 | 1 | -1/+5 |
|
|
* | Minor changes to Python source base loader. | Brett Cannon | 2009-03-08 | 1 | -3/+7 |
|
|
* | Skip case-sensitivity tests for extension modules if _testcapi cannot be found. | Brett Cannon | 2009-03-08 | 1 | -0/+2 |
|
|
* | Add notice about strange behaviour of the bigmem tests | Antoine Pitrou | 2009-03-07 | 1 | -0/+4 |
|
|
* | Issue #3700: make test_bigmem py3k-compatible, and add bytes/bytearray tests | Antoine Pitrou | 2009-03-07 | 2 | -278/+395 |
|
|
* | bump version to 3.1a1v3.1a1 | Benjamin Peterson | 2009-03-07 | 2 | -2/+2 |
|
|
* | Merged revisions 70223 via svnmerge from | Guilherme Polo | 2009-03-07 | 1 | -3/+6 |
|
|
* | Merged revisions 70218-70219 via svnmerge from | Guilherme Polo | 2009-03-07 | 1 | -1/+1 |
|
|
* | fixed except syntax for py3 | Tarek Ziadé | 2009-03-07 | 1 | -6/+6 |
|
|
* | Merged revisions 70212 via svnmerge from | Tarek Ziadé | 2009-03-07 | 2 | -16/+42 |
|
|
* | simplify and beautify code | Benjamin Peterson | 2009-03-06 | 1 | -23/+12 |
|
|
* | Document the suggested alternative to emtpy() and full(). | Raymond Hettinger | 2009-03-06 | 1 | -2/+19 |
|
|
* | Issue #5433: Excessive newline detection optimization in IncrementalNewlineDe... | Antoine Pitrou | 2009-03-06 | 1 | -0/+13 |
|
|
* | Issue #5334: array.fromfile() failed to insert values when EOFError was raised. | Hirokazu Yamamoto | 2009-03-06 | 1 | -2/+1 |
|
|
* | remove usage of the deprecated max_buffer_size | Benjamin Peterson | 2009-03-05 | 1 | -8/+5 |
|
|
* | Merged revisions 70193 via svnmerge from | Hirokazu Yamamoto | 2009-03-05 | 1 | -15/+5 |
|
|
* | Merged revisions 70189 via svnmerge from | Hirokazu Yamamoto | 2009-03-05 | 1 | -1/+33 |
|
|
* | rather pointless XXX | Benjamin Peterson | 2009-03-05 | 1 | -2/+0 |
|
|
* | rename | Benjamin Peterson | 2009-03-05 | 1 | -3/+3 |
|
|
* | fix #4862 in _pyio: reset the decoder on seek(0) | Benjamin Peterson | 2009-03-05 | 2 | -1/+5 |
|
|
* | These are present in the trunk but no longer in 3.x, which causes problems | Ronald Oussoren | 2009-03-04 | 2 | -0/+665 |
|
|