changeset: 71978:800d45e51dd7 branch: 3.2 parent: 71975:5ef1d0eb2f54 user: Victor Stinner date: Sat Aug 20 14:01:05 2011 +0200 files: Misc/NEWS configure configure.in description: Issue #12326: sys.platform is now always 'linux2' on Linux Even if Python is compiled on Linux 3. diff -r 5ef1d0eb2f54 -r 800d45e51dd7 Misc/NEWS --- a/Misc/NEWS Fri Aug 19 22:54:50 2011 +0200 +++ b/Misc/NEWS Sat Aug 20 14:01:05 2011 +0200 @@ -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. diff -r 5ef1d0eb2f54 -r 800d45e51dd7 configure --- a/configure Fri Aug 19 22:54:50 2011 +0200 +++ b/configure Sat Aug 20 14:01:05 2011 +0200 @@ -2997,6 +2997,7 @@ MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in + linux*) MACHDEP="linux2";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; irix646) MACHDEP="irix6";; diff -r 5ef1d0eb2f54 -r 800d45e51dd7 configure.in --- a/configure.in Fri Aug 19 22:54:50 2011 +0200 +++ b/configure.in Sat Aug 20 14:01:05 2011 +0200 @@ -290,6 +290,7 @@ MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in + linux*) MACHDEP="linux2";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; irix646) MACHDEP="irix6";;