Files
RustPython/vm/src
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
2021-01-02 19:30:57 -06:00
2021-03-26 17:54:22 -05:00
2021-04-21 20:44:18 -05:00
2021-02-15 19:49:05 -06:00
2020-12-05 16:36:38 -06:00
2020-11-07 15:43:23 -06:00
2021-02-20 21:04:29 -06:00
2021-04-11 17:38:44 -05:00
2021-03-14 14:38:00 -05:00
2020-12-17 16:29:44 -06:00
2021-04-21 20:09:50 -05:00
2021-01-29 11:47:09 -06:00
2020-10-13 15:42:11 +09:00
2021-04-21 20:09:50 -05:00
2021-03-26 17:54:22 -05:00
2020-12-05 16:36:00 -06:00
2020-09-26 02:51:50 +09:00
2021-01-08 18:08:21 -06:00
2021-01-25 20:04:32 -06:00