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
caf5a22c
Commit
caf5a22c
authored
Oct 06, 2011
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #7367: Add test case to test_pkgutil for walking path with
an unreadable directory.
parent
92a81a1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
Lib/test/test_pkgutil.py
Lib/test/test_pkgutil.py
+11
-0
No files found.
Lib/test/test_pkgutil.py
View file @
caf5a22c
...
...
@@ -84,6 +84,17 @@ class PkgutilTests(unittest.TestCase):
del
sys
.
modules
[
pkg
]
def
test_unreadable_dir_on_syspath
(
self
):
# issue7367 - walk_packages failed if unreadable dir on sys.path
package_name
=
"unreadable_package"
d
=
os
.
path
.
join
(
self
.
dirname
,
package_name
)
# this does not appear to create an unreadable dir on Windows
# but the test should not fail anyway
os
.
mkdir
(
d
,
0
)
for
t
in
pkgutil
.
walk_packages
(
path
=
[
self
.
dirname
]):
self
.
fail
(
"unexpected package found"
)
os
.
rmdir
(
d
)
class
PkgutilPEP302Tests
(
unittest
.
TestCase
):
class
MyTestLoader
(
object
):
...
...
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