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
e52ac045
Commit
e52ac045
authored
Mar 28, 2018
by
Ned Deily
Committed by
GitHub
Mar 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-32872: Avoid regrtest compatibility issue with namespace packages. (GH-6276)
parent
65a34709
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
Lib/test/libregrtest/setup.py
Lib/test/libregrtest/setup.py
+1
-1
Misc/NEWS.d/next/Tests/2018-03-28-01-35-02.bpo-32872.J5NDUj.rst
...EWS.d/next/Tests/2018-03-28-01-35-02.bpo-32872.J5NDUj.rst
+1
-0
No files found.
Lib/test/libregrtest/setup.py
View file @
e52ac045
...
...
@@ -57,7 +57,7 @@ def setup_tests(ns):
if
hasattr
(
module
,
'__path__'
):
for
index
,
path
in
enumerate
(
module
.
__path__
):
module
.
__path__
[
index
]
=
os
.
path
.
abspath
(
path
)
if
hasattr
(
module
,
'__file__'
):
if
getattr
(
module
,
'__file__'
,
None
):
module
.
__file__
=
os
.
path
.
abspath
(
module
.
__file__
)
# MacOSX (a.k.a. Darwin) has a default stack size that is too small
...
...
Misc/NEWS.d/next/Tests/2018-03-28-01-35-02.bpo-32872.J5NDUj.rst
0 → 100644
View file @
e52ac045
Avoid regrtest compatibility issue with namespace packages.
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