summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-03-22 15:55:09 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-03-22 15:55:09 (GMT)
commitc9d1a7845ba18466ee048666239c6b969c9acd33 (patch)
tree210da589b2775dba41f8eaad367b5de072fe5118 /Misc
parent804899b4ab873144ffc12c145fc4266489454c21 (diff)
downloadcpython-c9d1a7845ba18466ee048666239c6b969c9acd33.zip
cpython-c9d1a7845ba18466ee048666239c6b969c9acd33.tar.gz
cpython-c9d1a7845ba18466ee048666239c6b969c9acd33.tar.bz2
Issue #7860: platform.uname now reports the correct 'machine' type
when Python is running in WOW64 mode on 64 bit Windows. Patch by Brian Curtin.
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 f2876d6..c5424c8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #7860: platform.uname now reports the correct 'machine' type
+ when Python is running in WOW64 mode on 64 bit Windows.
+
- logging: Added getChild utility method to Logger and added isEnabledFor
method to LoggerAdapter.