Update csv status (not supported)

master
Matt Trentini 2022-11-11 23:16:32 +11:00
rodzic 1c840c752f
commit 34fdfc2868
1 zmienionych plików z 1 dodań i 1 usunięć

@ -34,7 +34,7 @@
| [copy](https://docs.python.org/3/library/copy.html#module-copy) | Shallow and deep copy operations. | ✅ | [micropython-lib](https://github.com/micropython/micropython-lib/tree/master/python-stdlib/copy)
| [copyreg](https://docs.python.org/3/library/copyreg.html#module-copyreg) | Register pickle support functions. | ? |
| [cProfile](https://docs.python.org/3/library/profile.html#module-cProfile) | | ? |
| [csv](https://docs.python.org/3/library/csv.html#module-csv) | Write and read tabular data to and from delimited files. | ? | CPython splits the implementation into a Python module, [csv.py](https://github.com/python/cpython/blob/main/Lib/csv.py), and a C module, [_csv.c](https://github.com/python/cpython/blob/main/Modules/_csv.c). It might be possible to port _csv.c and use csv.py directly.
| [csv](https://docs.python.org/3/library/csv.html#module-csv) | Write and read tabular data to and from delimited files. | | CPython splits the implementation into a Python module, [csv.py](https://github.com/python/cpython/blob/main/Lib/csv.py), and a C module, [_csv.c](https://github.com/python/cpython/blob/main/Modules/_csv.c). It might be possible to port _csv.c and use csv.py directly.
| [ctypes](https://docs.python.org/3/library/ctypes.html#module-ctypes) | A foreign function library for Python. | ? |
| [curses](https://docs.python.org/3/library/curses.html#module-curses) | An interface to the curses library, providing portable terminal handling. | ? |
| [curses.ascii](https://docs.python.org/3/library/curses.ascii.html#module-curses.ascii) | Constants and set-membership functions for ASCII characters. | ✅ | [micropython-lib](https://github.com/micropython/micropython-lib/tree/master/python-stdlib/curses.ascii)