## Feature <!-- What Python feature is missing from RustPython? Give a short description of the feature and how you ran into its absence. --> Changed in version 3.11: Added default argument value for byteorder. Remove unnecessary parameter in "random.py" ```python a = int.from_bytes(a + _sha512(a).digest()) ``` TypeError: Expected at least 1 arguments (2 given) ## Python Documentation <!-- Give a link to the feature in the CPython documentation (https://docs.python.org/3/) in order to assist in its implementation. --> documentation: [CPython v3.11.2 from_bytes issue](https://docs.python.org/3.11/library/stdtypes.html?highlight=from_bytes#int.from_bytes) source code: [ref](https://github.com/RustPython/RustPython/pull/4748/commits/822c764d6d8754d738daa4ba2608ac80fafe98e1#diff-851cf2d8d99b6d8dee26acc31319431dce51dbe26e3e56494d9b4c45edd8e11fL170)