diff options
author | Sanyam Khurana <CuriousLearner@users.noreply.github.com> | 2017-06-13 17:11:14 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2017-06-13 17:11:14 (GMT) |
commit | b9c3da5c89c66dcccf382e8f196746da2a06d4cc (patch) | |
tree | cc99f575ae032c7e98b7cc5d1cc707e4b52dc4a2 /Misc/NEWS | |
parent | 1eb6c0074d17f4fd425cacfdda893d65f5f77f0a (diff) | |
download | cpython-b9c3da5c89c66dcccf382e8f196746da2a06d4cc.zip cpython-b9c3da5c89c66dcccf382e8f196746da2a06d4cc.tar.gz cpython-b9c3da5c89c66dcccf382e8f196746da2a06d4cc.tar.bz2 |
bpo-24744: Raises error in pkgutil.walk_packages if path is str (#1926)
bpo-24744: Raise error in pkgutil.walk_packages if path is str
Previously an empty result list was accidentallly returned, since the
code iterated over the string as if it were the expected list of paths,
and of course found nothing.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -362,6 +362,9 @@ Extension Modules Library ------- +- bpo-24744: pkgutil.walk_packages function now raises ValueError if *path* + is a string. Patch by Sanyam Khurana. + - bpo-24484: Avoid race condition in multiprocessing cleanup. - bpo-30589: Fix multiprocessing.Process.exitcode to return the opposite |