summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-07-23 12:36:59 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2010-07-23 12:36:59 (GMT)
commit7180d4878114f8e427764b29a781b7c0a7e1f2dc (patch)
treecf597f99efd506129b682330efc6a522f9982364 /Misc
parentb0a3074d92cd31639ee985cf8293be9034f9b8bc (diff)
downloadcpython-7180d4878114f8e427764b29a781b7c0a7e1f2dc.zip
cpython-7180d4878114f8e427764b29a781b7c0a7e1f2dc.tar.gz
cpython-7180d4878114f8e427764b29a781b7c0a7e1f2dc.tar.bz2
Merged revisions 83075 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83075 | ronald.oussoren | 2010-07-23 12:54:59 +0100 (Fri, 23 Jul 2010) | 5 lines Fix for issue 7895. Avoid crashing the interpreter when calling platform.mac_ver after calling os.fork by reading from a system configuration file instead of using OSX APIs. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5c25c6c..4756daf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -78,6 +78,8 @@ C-API
Library
-------
+- Issue #7895: platform.mac_ver() no longer crashes after calling os.fork()
+
- Issue #9323: Fixed a bug in trace.py that resulted in loosing the
name of the script being traced. Patch by Eli Bendersky.