Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
64f6c2fc
Commit
64f6c2fc
authored
Apr 23, 2010
by
Florent Xicluna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove ImportWarnings filters. They become obsolete after r79310, issue #8205.
parent
04f4347d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
Lib/test/regrtest.py
Lib/test/regrtest.py
+0
-8
No files found.
Lib/test/regrtest.py
View file @
64f6c2fc
...
...
@@ -181,14 +181,6 @@ for module in sys.modules.itervalues():
module
.
__file__
=
os
.
path
.
abspath
(
module
.
__file__
)
# 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"
,
"zipfile"
,
"tarfile"
,
"encodings.zlib_codec"
,
"test.test_zipimport"
,
"test.test_zlib"
,
"test.test_zipfile"
,
"test.test_codecs"
,
"test.string_tests"
):
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment