From: Georg Brandl Date: Sun, 24 Jun 2012 20:17:23 +0000 (+0200) Subject: Closes #11678: support Arch linux in the platform module. X-Git-Tag: v3.3.0b1~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=488fccfaaf0afb432c9131ad40eb81e517316fbc;p=thirdparty%2FPython%2Fcpython.git Closes #11678: support Arch linux in the platform module. --- diff --git a/Lib/platform.py b/Lib/platform.py index b7dbcca78aa3..62553538566d 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -260,7 +260,7 @@ _release_version = re.compile(r'([^0-9]+)' _supported_dists = ( 'SuSE', 'debian', 'fedora', 'redhat', 'centos', 'mandrake', 'mandriva', 'rocks', 'slackware', 'yellowdog', 'gentoo', - 'UnitedLinux', 'turbolinux') + 'UnitedLinux', 'turbolinux', 'arch') def _parse_release_file(firstline): diff --git a/Misc/NEWS b/Misc/NEWS index da574b0bf219..98cb258f2bc4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -59,6 +59,8 @@ Core and Builtins Library ------- +- Issue #11678: Support Arch linux in the platform module. + - Issue #15118: Change return value of os.uname() and os.times() from plain tuples to immutable iterable objects with named attributes (structseq objects).