index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_import.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #14637: Fix the UNC import test under Windows to actually use
Brett Cannon
2012-04-21
1
-4/+8
*
Fix a cleanup.
Brett Cannon
2012-04-20
1
-1/+1
*
Use a skipUnless decorator instead of conditional renaming.
Brett Cannon
2012-04-20
1
-3/+1
*
Issue #14585: test_import now runs all tests under
Brett Cannon
2012-04-20
1
-15/+10
*
Issue #14599: Generalize a test for ImportError.path and add support
Brett Cannon
2012-04-20
1
-22/+0
*
Try to debug a Windows failure on the buildbots.
Brett Cannon
2012-04-20
1
-1/+4
*
Issue #14599: Fix an import caching race condition.
Brett Cannon
2012-04-17
1
-0/+1
*
Fix #10854. Make use of the new path and name attributes on ImportError
Brian Curtin
2012-04-16
1
-0/+18
*
Try to fix a sporadic test failure from what is probably a caching race condi...
Brett Cannon
2012-04-14
1
-0/+1
*
Issue #2377: Make importlib the implementation of __import__().
Brett Cannon
2012-04-14
1
-1/+6
*
Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new ...
Antoine Pitrou
2012-02-20
1
-0/+8
*
Port import fixes from 2.7.
Antoine Pitrou
2012-01-25
1
-1/+1
|
\
|
*
Port import fixes from 2.7.
Antoine Pitrou
2012-01-25
1
-1/+1
*
|
Port remaining test fixes, and fix test_importlib too.
Antoine Pitrou
2012-01-25
1
-8/+21
|
\
\
|
|
/
|
*
Port remaining test fixes, and fix test_importlib too.
Antoine Pitrou
2012-01-25
1
-0/+5
|
*
Make test work under 32-bit systems, and when invoked through Lib/test/regrte...
Antoine Pitrou
2012-01-25
1
-8/+16
*
|
Issue #11235: Fix OverflowError when trying to import a source file whose mod...
Antoine Pitrou
2012-01-24
1
-0/+12
|
\
\
|
|
/
|
*
Issue #11235: Fix OverflowError when trying to import a source file whose mod...
Antoine Pitrou
2012-01-24
1
-0/+12
*
|
Issue #13645: pyc files now contain the size of the corresponding source
Antoine Pitrou
2012-01-13
1
-1/+11
*
|
Issue #13645: fix test_import failure when run immediately after test_coding.
Antoine Pitrou
2011-12-21
1
-1/+2
|
\
\
|
|
/
|
*
Issue #13645: fix test_import failure when run immediately after test_coding.
Antoine Pitrou
2011-12-21
1
-1/+2
*
|
Issue #13303: Fix bytecode file default permission.
Charles-François Natali
2011-11-10
1
-10/+7
*
|
Back out changeset b6336ba796d4 until fix for #13303.
Charles-François Natali
2011-11-08
1
-3/+4
*
|
test_import: test_execute_bit_not_copied() was actually a no-op: enable it.
Charles-François Natali
2011-11-08
1
-4/+3
|
\
\
|
|
/
|
*
test_import: test_execute_bit_not_copied() was actually a no-op: fix it.
Charles-François Natali
2011-11-08
1
-4/+3
*
|
os.geteuid() may not be available...
Charles-François Natali
2011-10-04
1
-1/+1
|
\
\
|
|
/
|
*
os.geteuid() may not be available...
Charles-François Natali
2011-10-04
1
-1/+1
*
|
Issue #11956: Always skip test_import.test_unwritable_directory when run as
Charles-François Natali
2011-10-04
1
-2/+2
|
\
\
|
|
/
|
*
Issue #11956: Always skip test_import.test_unwritable_directory when run as
Charles-François Natali
2011-10-04
1
-2/+2
*
|
Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
Charles-François Natali
2011-10-04
1
-0/+3
|
\
\
|
|
/
|
*
Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
Charles-François Natali
2011-10-04
1
-0/+3
*
|
Merge 3.2: Issue #7732: Don't open a directory as a file anymore while
Victor Stinner
2011-09-23
1
-0/+9
|
\
\
|
|
/
|
*
Issue #7732: Don't open a directory as a file anymore while importing a
Victor Stinner
2011-09-23
1
-0/+9
*
|
Issue #12451: Add support.create_empty_file()
Victor Stinner
2011-06-30
1
-2/+2
*
|
Try to make test_import a bit more robust
Antoine Pitrou
2011-03-21
1
-0/+3
|
\
\
|
|
/
|
*
Try to make test_import a bit more robust
Antoine Pitrou
2011-03-21
1
-0/+3
*
|
Remove an overly specific exception message test.
Brett Cannon
2011-03-17
1
-2/+0
|
/
*
#4236: avoid possible Fatal Error when import is called from __del__
R. David Murray
2010-12-14
1
-0/+13
*
close open file from find_module()
Benjamin Peterson
2010-10-30
1
-0/+1
*
condense
Benjamin Peterson
2010-10-30
1
-5/+1
*
kill pointless function imports
Benjamin Peterson
2010-10-30
1
-1/+0
*
remove useless assignment
Benjamin Peterson
2010-10-30
1
-1/+1
*
Better check for "any optimize option given".
Georg Brandl
2010-10-14
1
-1/+1
*
#9964: fix running test_import under -O or -OO.
Georg Brandl
2010-10-14
1
-1/+2
*
I get it wrong in r84097: s/relative/absolute/
Florent Xicluna
2010-08-16
1
-1/+2
*
Use test.support and unittest features. Fix duplicated test (bad merge in r7...
Florent Xicluna
2010-08-16
1
-26/+9
*
Issue #9425: skip tests if a filename is not encodable
Victor Stinner
2010-08-07
1
-0/+5
*
Stop shadowing a test class.
Brett Cannon
2010-07-23
1
-2/+2
*
Explicitly test relative imports by reusing importlib tests.
Brett Cannon
2010-07-23
1
-1/+14
*
Make test_import a little bit more robust for cleaning up after itself in the
Brett Cannon
2010-07-03
1
-6/+8
[next]