diff options
Diffstat (limited to 'arch/__init__.py')
| -rw-r--r-- | arch/__init__.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/__init__.py b/arch/__init__.py index 4943749..2926d20 100644 --- a/arch/__init__.py +++ b/arch/__init__.py @@ -1,7 +1,11 @@ from .arch import Arch from . import x86 -"""A dictionary containing all supported architectures at their names.""" +"""A dictionary containing all supported architectures at their names. + +The arch names (keys) should be compatible with the string returned from +`platform.machine()`. +""" supported_architectures: dict[str, Arch] = { - "X86": x86.ArchX86(), + "x86_64": x86.ArchX86(), } |