summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-06-24 20:17:23 (GMT)
committerGeorg Brandl <georg@python.org>2012-06-24 20:17:23 (GMT)
commit488fccfaaf0afb432c9131ad40eb81e517316fbc (patch)
tree831731b77012cb7d549c80cd503894c1452e8d7c /Lib
parentbecb70c329eb7202cfb1cf2c9bbd8979e3662949 (diff)
downloadcpython-488fccfaaf0afb432c9131ad40eb81e517316fbc.zip
cpython-488fccfaaf0afb432c9131ad40eb81e517316fbc.tar.gz
cpython-488fccfaaf0afb432c9131ad40eb81e517316fbc.tar.bz2
Closes #11678: support Arch linux in the platform module.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/platform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py
index b7dbcca..6255353 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):