mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
- Add new Warning class, ImportWarning
- Warn-raise ImportWarning when importing would have picked up a directory as package, if only it'd had an __init__.py. This swaps two tests (for case-ness and __init__-ness), but case-test is not really more expensive, and it's not in a speed-critical section. - Test for the new warning by importing a common non-package directory on sys.path: site-packages - In regrtest.py, silence warnings generated by the build-environment because Modules/ (which is added to sys.path for Setup-created modules) has 'zlib' and '_ctypes' directories without __init__.py's.
This commit is contained in:
parent
2c1e63f8a4
commit
9df4e6f673
6 changed files with 60 additions and 7 deletions
|
@ -138,6 +138,12 @@ if sys.maxint > 0x7fffffff:
|
|||
warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
|
||||
"<string>")
|
||||
|
||||
# Ignore ImportWarnings that only occur in the source tree,
|
||||
# (because of modules with the same name as source-directories in Modules/)
|
||||
for mod in ("ctypes", "gzip", "test.test_zipimport", "test.test_zlib"):
|
||||
warnings.filterwarnings(module=".*%s$" % (mod,),
|
||||
action="ignore", category=ImportWarning)
|
||||
|
||||
# MacOSX (a.k.a. Darwin) has a default stack size that is too small
|
||||
# for deeply recursive regular expressions. We see this as crashes in
|
||||
# the Python test suite when running test_re.py and test_sre.py. The
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue