summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-07-05 18:56:30 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-07-05 18:56:30 (GMT)
commit01cca5e45185474bdb3c621c5dec4bfc0b323483 (patch)
tree5c12e912541c290865385dcd679390c89b3a022a /Misc
parentf01a337950bdcd6905d12b2335ba4d8773f6b8e5 (diff)
downloadcpython-01cca5e45185474bdb3c621c5dec4bfc0b323483.zip
cpython-01cca5e45185474bdb3c621c5dec4bfc0b323483.tar.gz
cpython-01cca5e45185474bdb3c621c5dec4bfc0b323483.tar.bz2
Issue #15020: The program name used to search for Python's path is now "python3" under Unix, not "python".
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 5adf15e..563a7f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #15020: The program name used to search for Python's path is now
+ "python3" under Unix, not "python".
+
- Issue #15033: Fix the exit status bug when modules invoked using -m swith,
return the proper failure return value (1). Patch contributed by Jeff Knupp.