summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-07-11 17:01:17 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-07-11 17:01:17 (GMT)
commite3ed4edb94cadaef747f6032c52cd903a169883e (patch)
tree10c8894b3db87f6104d0148e60c1f83e51dcff27 /Misc
parente173d0123171adc1b5145ef7613364e14ccbd945 (diff)
downloadcpython-e3ed4edb94cadaef747f6032c52cd903a169883e.zip
cpython-e3ed4edb94cadaef747f6032c52cd903a169883e.tar.gz
cpython-e3ed4edb94cadaef747f6032c52cd903a169883e.tar.bz2
Issue #18338: `python --version` now prints version string to stdout, and
not to stderr. Patch by Berker Peksag and Michael Dickens.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 96e51e3..e62f05a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #18338: `python --version` now prints version string to stdout, and
+ not to stderr. Patch by Berker Peksag and Michael Dickens.
+
- Issue #18426: Fix NULL pointer dereference in C extension import when
PyModule_GetDef() returns an error.