Files
RustPython/vm
Dean Li d99f4038e1 os: Fix open keyword arguments
Following code used to fail due to the way used to define
os.open in rust. To fix this, we need to use `FromArgs`
to define `struct OpenArgs {...}`.
```
f = os.open(path=__file__, flags=os.O_RDONLY, mode=0o777, dir_fd=None)
```

Noted that the original `open` is now rename to `os_open`
and is exported as `open`.

Related to #1175
2021-04-26 19:51:24 +08:00
..
2021-04-11 17:38:44 -05:00
2021-04-26 19:51:24 +08:00
2018-07-07 17:14:45 +02:00
2021-04-20 10:21:16 +02:00