commit | 0c17d0d96e9684e29a731227452355da79b14b5b | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Sat Aug 20 14:01:05 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Sat Aug 20 14:01:05 2011 +0200 |
tree | 2556bef8b91a6b5942d0af3eee8303042bdf6c00 | |
parent | 6a633bb87837fb8da42f6ba81e9fa86fdab61a5a [diff] [blame] |
Issue #12326: sys.platform is now always 'linux2' on Linux Even if Python is compiled on Linux 3.
diff --git a/Misc/NEWS b/Misc/NEWS index a62b485..a4251e3 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Library ------- +- Issue #12326: sys.platform is now always 'linux2' on Linux, even if Python + is compiled on Linux 3. + - Issue #12650: Fix a race condition where a subprocess.Popen could leak resources (FD/zombie) when killed at the wrong time.