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
d65018b1
Commit
d65018b1
authored
May 10, 2016
by
Eric Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #19711: Add tests for reloading namespace packages.
parent
c499f302
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
1 deletion
+35
-1
Lib/test/test_importlib/test_namespace_pkgs.py
Lib/test/test_importlib/test_namespace_pkgs.py
+33
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_importlib/test_namespace_pkgs.py
View file @
d65018b1
import
contextlib
import
contextlib
import
importlib
import
os
import
os
import
sys
import
sys
import
unittest
import
unittest
...
@@ -67,6 +68,7 @@ class NamespacePackageTest(unittest.TestCase):
...
@@ -67,6 +68,7 @@ class NamespacePackageTest(unittest.TestCase):
# TODO: will we ever want to pass exc_info to __exit__?
# TODO: will we ever want to pass exc_info to __exit__?
self
.
ctx
.
__exit__
(
None
,
None
,
None
)
self
.
ctx
.
__exit__
(
None
,
None
,
None
)
class
SingleNamespacePackage
(
NamespacePackageTest
):
class
SingleNamespacePackage
(
NamespacePackageTest
):
paths
=
[
'portion1'
]
paths
=
[
'portion1'
]
...
@@ -83,7 +85,7 @@ class SingleNamespacePackage(NamespacePackageTest):
...
@@ -83,7 +85,7 @@ class SingleNamespacePackage(NamespacePackageTest):
self
.
assertEqual
(
repr
(
foo
),
"<module 'foo' (namespace)>"
)
self
.
assertEqual
(
repr
(
foo
),
"<module 'foo' (namespace)>"
)
class
DynamicPath
e
NamespacePackage
(
NamespacePackageTest
):
class
DynamicPathNamespacePackage
(
NamespacePackageTest
):
paths
=
[
'portion1'
]
paths
=
[
'portion1'
]
def
test_dynamic_path
(
self
):
def
test_dynamic_path
(
self
):
...
@@ -285,5 +287,35 @@ class ModuleAndNamespacePackageInSameDir(NamespacePackageTest):
...
@@ -285,5 +287,35 @@ class ModuleAndNamespacePackageInSameDir(NamespacePackageTest):
self
.
assertEqual
(
a_test
.
attr
,
'in module'
)
self
.
assertEqual
(
a_test
.
attr
,
'in module'
)
class
ReloadTests
(
NamespacePackageTest
):
paths
=
[
'portion1'
]
def
test_simple_package
(
self
):
import
foo.one
foo
=
importlib
.
reload
(
foo
)
self
.
assertEqual
(
foo
.
one
.
attr
,
'portion1 foo one'
)
def
test_cant_import_other
(
self
):
import
foo
with
self
.
assertRaises
(
ImportError
):
import
foo.two
foo
=
importlib
.
reload
(
foo
)
with
self
.
assertRaises
(
ImportError
):
import
foo.two
def
test_dynamic_path
(
self
):
import
foo.one
with
self
.
assertRaises
(
ImportError
):
import
foo.two
# Now modify sys.path and reload.
sys
.
path
.
append
(
os
.
path
.
join
(
self
.
root
,
'portion2'
))
foo
=
importlib
.
reload
(
foo
)
# And make sure foo.two is now importable
import
foo.two
self
.
assertEqual
(
foo
.
two
.
attr
,
'portion2 foo two'
)
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
unittest
.
main
()
unittest
.
main
()
Misc/NEWS
View file @
d65018b1
...
@@ -52,6 +52,8 @@ Core and Builtins
...
@@ -52,6 +52,8 @@ Core and Builtins
- Issue #26581: If coding cookie is specified multiple times on a line in
- Issue #26581: If coding cookie is specified multiple times on a line in
Python source code file, only the first one is taken to account.
Python source code file, only the first one is taken to account.
- Issue #19711: Add tests for reloading namespace packages.
- Issue #26563: Debug hooks on Python memory allocators now raise a fatal
- Issue #26563: Debug hooks on Python memory allocators now raise a fatal
error if functions of the :c:func:`PyMem_Malloc` family are called without
error if functions of the :c:func:`PyMem_Malloc` family are called without
holding the GIL.
holding the GIL.
...
...
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