| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue 10899: Remove function type annotations from the stdlib | Raymond Hettinger | 2011-01-13 | 2 | -18/+24 |
|
|
* | Issue 10899: Remove function type annotations from the stdlib | Raymond Hettinger | 2011-01-13 | 2 | -15/+15 |
|
|
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 4 | -23/+23 |
|
|
* | Fix a minor inconsistency in capitalization for the 'No module named' exception | Brett Cannon | 2010-11-18 | 1 | -3/+5 |
|
|
* | Remove redundant context manager. | Florent Xicluna | 2010-09-03 | 1 | -15/+1 |
|
|
* | OSError is the exception raised when one tries to create a directory that | Brett Cannon | 2010-08-26 | 1 | -2/+5 |
|
|
* | Fix a bug where an attribute was lacking an object to work off of. | Brett Cannon | 2010-08-24 | 1 | -1/+1 |
|
|
* | One of the joys of having test_multiprocessing occasionally execute after | Brett Cannon | 2010-08-22 | 1 | -18/+26 |
|
|
* | Make sure that no __pycache__ directory is needlessly left behind when testing | Brett Cannon | 2010-08-22 | 1 | -7/+10 |
|
|
* | While not strictly necessary thanks to the odd ABC inheritance done through | Brett Cannon | 2010-08-22 | 1 | -0/+14 |
|
|
* | Add importlib benchmarks which try to be "realistic" by importing the decimal | Brett Cannon | 2010-07-22 | 1 | -7/+50 |
|
|
* | Add comma grouping to max result so it's easier to read. | Brett Cannon | 2010-07-16 | 1 | -1/+1 |
|
|
* | Add benchmarks for importing just source w/o writing bytecode, importing source | Brett Cannon | 2010-07-16 | 1 | -14/+57 |
|
|
* | Touch up comments and code along with outputting what the unit of measure is. | Brett Cannon | 2010-07-15 | 1 | -7/+10 |
|
|
* | Make importlib.abc.SourceLoader the primary mechanism for importlib. | Brett Cannon | 2010-07-03 | 2 | -27/+38 |
|
|
* | Make importlib.abc.SourceLoader the primary mechanism for importlib. | Brett Cannon | 2010-07-03 | 3 | -1/+32 |
|
|
* | Fix a spelling mistake in a comment. | Brett Cannon | 2010-07-03 | 1 | -1/+1 |
|
|
* | Make importlib.abc.SourceLoader the primary mechanism for importlib. | Brett Cannon | 2010-07-03 | 15 | -540/+406 |
|
|
* | Add an inheritance test for importlib.abc.SourceLoader. | Brett Cannon | 2010-06-28 | 1 | -0/+5 |
|
|
* | Move importlib.abc.SourceLoader to _bootstrap. | Brett Cannon | 2010-06-28 | 3 | -105/+141 |
|
|
* | fix test with more obviously incorrect bytecode | Benjamin Peterson | 2010-06-28 | 1 | -1/+1 |
|
|
* | Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader. | Brett Cannon | 2010-06-27 | 2 | -16/+654 |
|
|
* | Move over to assertIs. | Brett Cannon | 2010-06-21 | 1 | -2/+2 |
|
|
* | Repair test failure. Bug 8727. | Barry Warsaw | 2010-05-18 | 2 | -2/+13 |
|
|
* | Remove unnecessary XXX | Barry Warsaw | 2010-04-17 | 1 | -1/+0 |
|
|
* | PEP 3147 | Barry Warsaw | 2010-04-17 | 7 | -16/+56 |
|
|
* | Importlib was not matching import's handling of .pyc files where it had less | Brett Cannon | 2010-02-19 | 2 | -29/+109 |
|
|
* | Clarify importlib.abc.PyPycLoader.write_bytecode(). | Brett Cannon | 2009-12-12 | 1 | -2/+3 |
|
|
* | no need to translate newlines in python code anymore | Benjamin Peterson | 2009-11-13 | 1 | -15/+0 |
|
|
* | When trying to write new bytecode, importlib was not catching the IOError | Brett Cannon | 2009-11-07 | 2 | -2/+28 |
|
|
* | Use tempfile.mkdtemp() instead of tempfile.tempdir for where importlib places | Brett Cannon | 2009-11-05 | 1 | -11/+4 |
|
|
* | importlib.test.source.util referenced variables in the 'finally' part of a | Brett Cannon | 2009-11-05 | 1 | -2/+6 |
|
|
* | Rework importlib benchmarks so that they measure number of executions within a | Brett Cannon | 2009-09-03 | 1 | -51/+52 |
|
|
* | Clarify why test_import is failing under importlib. | Brett Cannon | 2009-08-30 | 1 | -2/+3 |
|
|
* | Trying to import a submodule from another module and not a package was raising | Brett Cannon | 2009-08-30 | 3 | -4/+11 |
|
|
* | test_pep3120 is no longer a problem for importlib as the test was tweaked. | Brett Cannon | 2009-08-30 | 1 | -1/+0 |
|
|
* | When the globals argument to importlib.__import__() contained any value for | Brett Cannon | 2009-08-30 | 2 | -11/+17 |
|
|
* | Turn on verbose2 for importlib.test.regrtest so as to see failures when they ... | Brett Cannon | 2009-08-30 | 1 | -2/+1 |
|
|
* | Raise TypeError if the name given to importlib.__import__() lacks an rpartition | Brett Cannon | 2009-08-30 | 3 | -1/+24 |
|
|
* | Fix the importlib_only test decorator to work again; don't capture the flag v... | Brett Cannon | 2009-08-30 | 1 | -1/+3 |
|
|
* | Use the public API, not a private one. | Brett Cannon | 2009-08-30 | 1 | -1/+1 |
|
|
* | Allow importlib.__import__ to accept any iterable for fromlist. Discovered when | Brett Cannon | 2009-08-30 | 2 | -2/+10 |
|
|
* | Provide module docstrings for the two main test drivers in importlib that | Brett Cannon | 2009-08-30 | 2 | -2/+11 |
|
|
* | Tweak importlib.test.regrtest to only specify the implicit tests to exclude | Brett Cannon | 2009-08-30 | 1 | -4/+6 |
|
|
* | Have importlib raise ImportError if None is found in sys.modules. This matches | Brett Cannon | 2009-08-30 | 2 | -5/+20 |
|
|
* | Add a test file to importlib that runs regrtest using importlib.__import__. | Brett Cannon | 2009-08-27 | 1 | -0/+33 |
|
|
* | Add support for a --builtin argument to importlib.test to trigger running | Brett Cannon | 2009-08-27 | 1 | -0/+5 |
|
|
* | Move over to using assertRaises as a context manager for importlib tests. | Brett Cannon | 2009-08-27 | 9 | -24/+36 |
|
|
* | Make __package__ setting tests specific to importlib. Also move to assertRais... | Brett Cannon | 2009-08-27 | 1 | -4/+5 |
|
|
* | Move a test-skipping decorator over to unittest.skipIf. | Brett Cannon | 2009-08-27 | 1 | -10/+3 |
|
|