summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-07-05 02:33:45 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-07-05 02:33:45 (GMT)
commitf28fbabc7fa7cf1c4880ce39b507f600def35439 (patch)
tree80fb013697540a163409e6c972f35a38d309aaa4 /Misc
parent53089c6e91f6152bc43776587e82a0bbeb574fe0 (diff)
parentf01a337950bdcd6905d12b2335ba4d8773f6b8e5 (diff)
downloadcpython-f28fbabc7fa7cf1c4880ce39b507f600def35439.zip
cpython-f28fbabc7fa7cf1c4880ce39b507f600def35439.tar.gz
cpython-f28fbabc7fa7cf1c4880ce39b507f600def35439.tar.bz2
Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp
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 cba8c41..ab02a97 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 2?
Core and Builtins
-----------------
+- 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.
+
- Issue #15229: An OSError subclass whose __init__ doesn't call back
OSError.__init__ could produce incomplete instances, leading to crashes
when calling str() on them.