summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-02-28 15:44:45 (GMT)
committerBrett Cannon <brett@python.org>2014-02-28 15:44:45 (GMT)
commit298bb967767d666fca8177f8c2352c2134490565 (patch)
treea8e92ef700a9abdfb843d8d7cde40c6382245ac6 /Misc
parent815b41b1cdb98686fc3f9cdf995b6983c12c04b3 (diff)
downloadcpython-298bb967767d666fca8177f8c2352c2134490565.zip
cpython-298bb967767d666fca8177f8c2352c2134490565.tar.gz
cpython-298bb967767d666fca8177f8c2352c2134490565.tar.bz2
Issue #20778: Fix modulefinder to work with bytecode-only modules.
Bug filed and initial attempt at a patch by Bohuslav Kabrda.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3b70783..58b6c36 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,8 @@ Core and Builtins
Library
-------
+- Issue #20778: Fix modulefinder to work with bytecode-only modules.
+
- Issue #20791: copy.copy() now doesn't make a copy when the input is
a bytes object. Initial patch by Peter Otten.