RustPython
What's Left

RustPython currently supports the full Python syntax. This is “what’s left” from the Python Standard Library.
For each module’s details, check the Python Module Index.

Note that not every module here is critical or feasible for RustPython to implement. For example, the readline Python module is heavily based around the API of GNU readline, but we use rustyline (a different readline implementation), so it probably wouldn’t be worth the effort to emulate GNU readline on top of rustyline just to implement an infrequently used module.

In addition, some modules may just be modules written in Python that we haven’t copied over to the stdlib yet; always be sure to check whether a module is implemented in Python before trying to rewrite it in Rust. You can follow these instructions for copying over files from CPython’s Lib.

What's Left: Public Modules
  1. cProfile
  2. curses
  3. readline
  4. xxlimited_35
What's Left: Private Modules
  1. _ctypes_test
  2. _curses
  3. _curses_panel
  4. _datetime
  5. _dbm
  6. _decimal
  7. _elementtree
  8. _gdbm
  9. _hmac
  10. _lsprof
  11. _pickle
  12. _sha2
  13. _sysconfigdata__linux_x86_64-linux-gnu
  14. _testclinic
  15. _testclinic_limited
  16. _testsinglephase
  17. _tkinter
  18. _tracemalloc
  19. _zoneinfo
  20. _zstd
What's left: Built-in Items

dict_items

  1. dict_items.__hash__ (inherited)