summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Clarify why test_import is failing under importlib.Brett Cannon2009-08-301-2/+3
* Loosen an exception test in test_import to not require an explicit message bu...Brett Cannon2009-08-301-2/+1
* Trying to import a submodule from another module and not a package was raisingBrett Cannon2009-08-303-4/+11
* test_pep3120 is no longer a problem for importlib as the test was tweaked.Brett Cannon2009-08-301-1/+0
* Make the exception message check for malformed UTF-8 source looser so that Sy...Brett Cannon2009-08-301-1/+2
* When the globals argument to importlib.__import__() contained any value forBrett Cannon2009-08-302-11/+17
* Turn on verbose2 for importlib.test.regrtest so as to see failures when they ...Brett Cannon2009-08-301-2/+1
* Raise TypeError if the name given to importlib.__import__() lacks an rpartitionBrett Cannon2009-08-303-1/+24
* Fix the importlib_only test decorator to work again; don't capture the flag v...Brett Cannon2009-08-301-1/+3
* Use the public API, not a private one.Brett Cannon2009-08-301-1/+1
* Allow importlib.__import__ to accept any iterable for fromlist. Discovered whenBrett Cannon2009-08-302-2/+10
* Provide module docstrings for the two main test drivers in importlib thatBrett Cannon2009-08-302-2/+11
* Tweak importlib.test.regrtest to only specify the implicit tests to excludeBrett Cannon2009-08-301-4/+6
* Have importlib raise ImportError if None is found in sys.modules. This matchesBrett Cannon2009-08-302-5/+20
* Merged revisions 74581 via svnmerge fromAmaury Forgeot d'Arc2009-08-291-0/+21
* Merged revisions 74571 via svnmerge fromLars Gustäbel2009-08-282-29/+82
* Merged revisions 74564 via svnmerge fromMark Dickinson2009-08-282-2/+21
* Add a test file to importlib that runs regrtest using importlib.__import__.Brett Cannon2009-08-271-0/+33
* Add support for a --builtin argument to importlib.test to trigger runningBrett Cannon2009-08-271-0/+5
* Move over to using assertRaises as a context manager for importlib tests.Brett Cannon2009-08-279-24/+36
* Make __package__ setting tests specific to importlib. Also move to assertRais...Brett Cannon2009-08-271-4/+5
* Move a test-skipping decorator over to unittest.skipIf.Brett Cannon2009-08-271-10/+3
* Merged revisions 74526 via svnmerge fromTarek Ziadé2009-08-202-36/+126
* Merged revisions 74507-74511,74517 via svnmerge fromGuilherme Polo2009-08-182-21/+125
* Merged revisions 74501 via svnmerge fromTarek Ziadé2009-08-182-3/+45
* Merged revisions 74495 via svnmerge fromTarek Ziadé2009-08-171-16/+20
* Merged revisions 74493 via svnmerge fromTarek Ziadé2009-08-172-8/+10
* Merged revisions 74479 via svnmerge fromGregory P. Smith2009-08-161-33/+33
* Merged revisions 74477 via svnmerge fromFrank Wierzbicki2009-08-161-0/+19
* Merged revisions 74475 via svnmerge fromGregory P. Smith2009-08-162-2/+11
* Fixing Issue6711 - macurl2path has typos that raise AttributeErrorSenthil Kumaran2009-08-161-3/+3
* Merged revisions 74457 via svnmerge fromBenjamin Peterson2009-08-151-0/+1
* Merged revisions 74446-74449 via svnmerge fromGuilherme Polo2009-08-146-150/+71
* Backport of r77429. Not merged/blocked as svnmerge.py is not liking me right ...Brett Cannon2009-08-131-1/+20
* #6126: fix pdb stepping and breakpoints by giving the executed code the corre...Georg Brandl2009-08-131-2/+3
* Merged revisions 74336 via svnmerge fromAntoine Pitrou2009-08-061-0/+20
* Issue #6622: Fix 'variable referenced before assignment' bug in POP3.apop.Mark Dickinson2009-08-062-4/+11
* Issue 5449: Fix io.BytesIO to not accept arbitrary keywordsAlexandre Vassalotti2009-08-041-0/+5
* Merged revisions 74312 via svnmerge fromMark Dickinson2009-08-041-0/+3
* Issue 6637: defaultdict.copy() failed with an empty factory.Raymond Hettinger2009-08-041-0/+7
* Merged revisions 74291 via svnmerge fromFrank Wierzbicki2009-08-021-0/+116
* Issues #2715, #6621: Remove unused and undefined references to FSSpecMark Dickinson2009-08-021-13/+0
* Merged revisions 74285 via svnmerge fromMark Dickinson2009-08-021-4/+0
* Issue #6595: Allow Decimal constructor to accept non-European decimal digits,...Mark Dickinson2009-08-022-20/+19
* Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge fromAlexandre Vassalotti2009-07-292-12/+15
* Merged revisions 74245 via svnmerge fromAmaury Forgeot d'Arc2009-07-282-1/+14
* Issue #6561: '\d' in a regular expression should match only UnicodeMark Dickinson2009-07-281-0/+21
* Issue 6573: Fix set.union() for cases where self is in the argument chain.Raymond Hettinger2009-07-271-0/+4
* - fix issue #6106, Telnet.process_rawq default handling of WILL/WONT/DO/DONTJack Diederich2009-07-262-1/+47
* Fixed Issue1424152 in Py3k: urllib2 fails with HTTPS over Proxy.Senthil Kumaran2009-07-253-3/+59