'python platform.uname() - strange results for win11

I would expect when I run platform.uname() I would recieve release == 11, but it is 10.

Can someone tell, why?

within that, what actually is a node?

with win 11, python 3.7 executing:

import platform
x = platform.uname()

x == (
  system='Windows',
  node='w11fi',   # what is a node?
  release='10',   # Supposed to be 11?
  version='10.0.22000',
  machine='AMD64',
  processor='Intel64 Family 6 Model 94 Stepping 3, GenuineIntel')


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source