| Commit message (Expand) | Author | Age | Files | Lines |
* | port the queue change r70405 | Benjamin Peterson | 2009-03-21 | 1 | -8/+8 |
|
|
* | Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-... | Benjamin Peterson | 2009-03-21 | 2 | -9/+13 |
|
|
* | - Issue #5463: In struct module, remove deprecated overflow wrapping | Mark Dickinson | 2009-03-21 | 1 | -11/+1 |
|
|
* | Document import's semantics for the language reference. This includes filling | Brett Cannon | 2009-03-21 | 1 | -7/+0 |
|
|
* | stringio doesn't have an encoding | Benjamin Peterson | 2009-03-21 | 2 | -1/+5 |
|
|
* | Fix typo | Raymond Hettinger | 2009-03-19 | 1 | -2/+2 |
|
|
* | Forward port 70475: Add implementation notes. Put methods in more readable ... | Raymond Hettinger | 2009-03-19 | 1 | -13/+25 |
|
|
* | Forward port r70470 and r70473 for OrderedDict to use a doubly linked list. | Raymond Hettinger | 2009-03-19 | 2 | -15/+34 |
|
|
* | svnmerge from trunk for r70457 (sorry, I accidentally deleted the commit mess... | Antoine Pitrou | 2009-03-18 | 1 | -1/+1 |
|
|
* | Issue #4258: Make it possible to use 30-bit digits for PyLongs: | Mark Dickinson | 2009-03-18 | 2 | -10/+44 |
|
|
* | Merged revisions 70444 via svnmerge from | Mark Dickinson | 2009-03-18 | 2 | -2/+23 |
|
|
* | 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 |
|
|