- 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).
diff --git a/Misc/NEWS b/Misc/NEWS
index e74d4ac..09d07f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,8 +32,13 @@
Library
-------
-- Issue #3135: Add inspect.getcallargs, which binds arguments to a function like
- a normal call.
+- 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).
+
+- Issue #3135: Add inspect.getcallargs, which binds arguments to a function
+ like a normal call.
- Backwards incompatible change: Unicode codepoints line tabulation (0x0B) and
form feed (0x0C) are now considered linebreaks, as specified in Unicode