summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2011-11-28 15:34:47 (GMT)
committerMeador Inge <meadori@gmail.com>2011-11-28 15:34:47 (GMT)
commit31b798d3c8592c84d36c7c9134a0bcbcb39dd92e (patch)
tree87bd63049b10be3c646131d626c417736caf2cae /Misc/NEWS
parentd1b097f8844d5e711c55874baba45b792cf46055 (diff)
parent22b9b379159f953ad4805980644414354030624f (diff)
downloadcpython-31b798d3c8592c84d36c7c9134a0bcbcb39dd92e.zip
cpython-31b798d3c8592c84d36c7c9134a0bcbcb39dd92e.tar.gz
cpython-31b798d3c8592c84d36c7c9134a0bcbcb39dd92e.tar.bz2
Issue #12618: py_compile cannot create files in current directory
Initial patch by Sjoerd de Vries.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ceb3582..8ef9e13 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -395,6 +395,9 @@ Core and Builtins
Library
-------
+- Issue #12618: Fix a bug that prevented py_compile from creating byte
+ compiled files in the current directory. Initial patch by Sjoerd de Vries.
+
- Issue #13444: When stdout has been closed explicitly, we should not attempt
to flush it at shutdown and print an error.