summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_import.py
Commit message (Expand)AuthorAgeFilesLines
* #11420: make test suite pass with -B/DONTWRITEBYTECODE set. Initial patch by...Ezio Melotti2013-03-161-3/+10
* Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due...Mark Dickinson2012-12-241-0/+41
* No reason to use a generator hereNick Coghlan2012-10-191-9/+8
* Issue #6074: Actually delete the source file in the test as intendedNick Coghlan2012-10-191-1/+1
* Issue #6074: Restore the long-broken support for running with read-only sourc...Nick Coghlan2012-10-191-1/+47
* Issue #15338: skip test_UNC_path when the current user doesn't have enough pe...Antoine Pitrou2012-07-131-0/+7
* Moved symlink support into its own module. Ported can_symlink from Python 3.2...Jason R. Coombs2012-03-081-76/+5
* Improve the test case to avoid spurious errors about already existing symlinks.Jason R. Coombs2012-03-081-4/+14
* Adding regression test for issue6727Jason R. Coombs2012-01-151-2/+116
* Remove debug output, fix assert (hopefully) and exercise signedness issues a ...Antoine Pitrou2012-01-251-1/+1
* Skip test failure under OpenIndianaAntoine Pitrou2012-01-251-0/+5
* Make test work under 32-bit systems, and when invoked through Lib/test/regrte...Antoine Pitrou2012-01-251-9/+16
* Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-241-0/+13
* Fix test_import failure when run multiple times.Antoine Pitrou2011-12-211-1/+4
* Issue #7732: Try to fix the a failing test on WindowsVictor Stinner2011-11-141-1/+2
* Issue #7732: Fix a crash on importing a module if a directory has the same nameVictor Stinner2011-09-231-0/+8
* Merged revisions 87251 via svnmerge fromR. David Murray2010-12-151-1/+13
* This test was not expected in r84100 (not yet ready).Florent Xicluna2010-08-161-8/+0
* Merged revisions 84097,84099 via svnmerge fromFlorent Xicluna2010-08-161-12/+15
* Turned out that if you used explicit relative import syntaxBrett Cannon2010-05-201-0/+12
* Fix and check cgi module deprecation warnings. Revert an unwanted rename in ...Florent Xicluna2010-03-171-1/+1
* Cleanup in test_import and test_coding.Florent Xicluna2010-03-171-70/+50
* Delete unused import.Collin Winter2010-03-171-1/+0
* Style cleanup in test_import.Collin Winter2010-03-171-70/+73
* #7092: Silence more py3k warnings. Patch by Florent Xicluna.Ezio Melotti2010-02-031-12/+11
* use assert[Not]In where appropriateEzio Melotti2010-01-231-3/+3
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-9/+10
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-10/+9
* Using CleanImport to revert a reload of the os module doesn't work due to fun...Nick Coghlan2009-10-181-4/+16
* Avoid replacing existing modules and sys.path in import testsNick Coghlan2009-10-171-4/+5
* Curdir needs to be in the path for the test to work on all buildbots.R. David Murray2009-07-091-0/+2
* Specify umask in execute bit test to get consistent resultsR. David Murray2009-07-091-0/+2
* Make test work with -O.R. David Murray2009-07-091-2/+8
* Conditionalize test cleanup code to eliminate traceback, which willR. David Murray2009-07-091-1/+1
* Issue 6070: when creating a compiled file, after copying the mode bits, onR. David Murray2009-07-071-0/+19
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-7/+7
* Add a test for UNC import paths, see issue 3677Kristján Valur Jónsson2009-01-241-0/+21
* Use shutil.rmtree rather than os.rmdir.Antoine Pitrou2009-01-061-1/+1
* Issue #1180193: When importing a module from a .pyc (or .pyo) file withAntoine Pitrou2009-01-061-1/+93
* Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the te...Nick Coghlan2008-09-111-7/+7
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-8/+8
* Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError wh...Nick Coghlan2008-07-131-3/+33
* Allow test_import to work when it is invoked directlyBenjamin Peterson2008-04-251-0/+2
* Import relimport using a relative import.Martin v. Löwis2008-03-191-1/+1
* Issue #2400: Allow relative imports to "import *".Martin v. Löwis2008-03-191-1/+13
* Fixed #1776. __import__() no longer imports modules by file nameChristian Heimes2008-01-091-1/+11
* Removed non ASCII text from test as requested by Guido. Sorry :/Christian Heimes2007-11-011-20/+2
* Backport of import tests for bug http://bugs.python.org/issue1293 and bug htt...Christian Heimes2007-11-011-2/+43
* Remove test.test_support.guard_warnings_filter.Brett Cannon2007-08-141-2/+2
* Whitespace normalization.Tim Peters2007-03-121-2/+2