fcntl

    [RustPython] fcntl.ioctl 수정하기

    Merged PR PR Comment update ioctl first arg by tgsong827 · Pull Request #4140 · RustPython/RustPython #4070 add test_ioctl.py. update fn ioctl can take others having fileno method not only Integer. github.com 개요 CPython에서 ioctl 함수의 첫 번째 인자로 File Descriptor를 받는다. File Descriptor는 fileno()를 통해 구한 Integer 타입 fileno()를 갖고 있는 IOBase의 객체여야한다. RustPython은 ioctl 함수의 첫 번째 인자로 Integer 타입만 받도록 되어있었고, filen..