summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2010-03-31 21:36:22 (GMT)
committerBarry Warsaw <barry@python.org>2010-03-31 21:36:22 (GMT)
commitd5f9bf5ecfcab58605d8070b285b47ffb18b99a2 (patch)
tree07d9eeeb72c1ef11205d25028d5a880d1ba0b8cd /Misc
parentfd2bfb02db1a5b4d06b054ce578b565cca1fd085 (diff)
downloadcpython-d5f9bf5ecfcab58605d8070b285b47ffb18b99a2.zip
cpython-d5f9bf5ecfcab58605d8070b285b47ffb18b99a2.tar.gz
cpython-d5f9bf5ecfcab58605d8070b285b47ffb18b99a2.tar.bz2
- Issue #8233: When run as a script, py_compile.py optionally takes a single
argument `-` which tells it to read files to compile from stdin. Each line is read on demand and the named file is compiled immediately. (Original patch by Piotr Ożarowski).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e6bc50b..6b645c8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -293,6 +293,11 @@ C-API
Library
-------
+- Issue #8233: When run as a script, py_compile.py optionally takes a single
+ argument `-` which tells it to read files to compile from stdin. Each line
+ is read on demand and the named file is compiled immediately. (Original
+ patch by Piotr Ożarowski).
+
- Backwards incompatible change: Unicode codepoints line tabulation (0x0B) and
form feed (0x0C) are now considered linebreaks, as specified in Unicode
Standard Annex #14. See issue #7643.