mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
gh-136066: simplify platform._platform()
(#136069)
This commit is contained in:
parent
30ba03ea8e
commit
bd928a3035
2 changed files with 21 additions and 17 deletions
|
@ -612,6 +612,9 @@ def system_alias(system, release, version):
|
|||
|
||||
### Various internal helpers
|
||||
|
||||
# Table for cleaning up characters in filenames.
|
||||
_SIMPLE_SUBSTITUTIONS = str.maketrans(r' /\:;"()', r'_-------')
|
||||
|
||||
def _platform(*args):
|
||||
|
||||
""" Helper to format the platform string in a filename
|
||||
|
@ -621,28 +624,13 @@ def _platform(*args):
|
|||
platform = '-'.join(x.strip() for x in filter(len, args))
|
||||
|
||||
# Cleanup some possible filename obstacles...
|
||||
platform = platform.replace(' ', '_')
|
||||
platform = platform.replace('/', '-')
|
||||
platform = platform.replace('\\', '-')
|
||||
platform = platform.replace(':', '-')
|
||||
platform = platform.replace(';', '-')
|
||||
platform = platform.replace('"', '-')
|
||||
platform = platform.replace('(', '-')
|
||||
platform = platform.replace(')', '-')
|
||||
platform = platform.translate(_SIMPLE_SUBSTITUTIONS)
|
||||
|
||||
# No need to report 'unknown' information...
|
||||
platform = platform.replace('unknown', '')
|
||||
|
||||
# Fold '--'s and remove trailing '-'
|
||||
while True:
|
||||
cleaned = platform.replace('--', '-')
|
||||
if cleaned == platform:
|
||||
break
|
||||
platform = cleaned
|
||||
while platform and platform[-1] == '-':
|
||||
platform = platform[:-1]
|
||||
|
||||
return platform
|
||||
return re.sub(r'-{2,}', '-', platform).rstrip('-')
|
||||
|
||||
def _node(default=''):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue