Not sure if this should be a new issue, but [`platform.uname` docs for 3.12][1] still say: > ... Returns a [namedtuple()](https://docs.python.org/3.12/library/collections.html#collections.namedtuple) containing **six attributes**: [system](https://docs.python.org/3.12/library/platform.html#platform.system), [node](https://docs.python.org/3.12/library/platform.html#platform.node), [release](https://docs.python.org/3.12/library/platform.html#platform.release), [version](https://docs.python.org/3.12/library/platform.html#platform.version), [machine](https://docs.python.org/3.12/library/platform.html#platform.machine), and [**processor**](https://docs.python.org/3.12/library/platform.html#platform.processor). (my emphasis) I've got python 3.10.6 installed, which returns 5 attributes, not including `processor`, as expected from the discussion above: ``` uname_result( system='Linux', node='MyName', release='5.15.0-48-generic', version='#54-Ubuntu SMP Fri Aug 26 13:26:29 UTC 2022', machine='x86_64' ) ``` [1]: https://docs.python.org/3.12/library/platform.html#platform.uname _Originally posted by @dennisvang in https://github.com/python/cpython/issues/84750#issuecomment-1270085689_ <!-- gh-linked-prs --> ### Linked PRs * gh-99793 * gh-99794 <!-- /gh-linked-prs -->
Not sure if this should be a new issue, but
platform.unamedocs for 3.12 still say:(my emphasis)
I've got python 3.10.6 installed, which returns 5 attributes, not including
processor, as expected from the discussion above:Originally posted by @dennisvang in #84750 (comment)
Linked PRs