index.rst 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .. mypyc documentation master file, created by
  2. sphinx-quickstart on Sun Apr 5 14:01:55 2020.
  3. You can adapt this file completely to your liking, but it should at least
  4. contain the root `toctree` directive.
  5. Welcome to mypyc documentation!
  6. ===============================
  7. Mypyc compiles Python modules to C extensions. It uses standard Python
  8. `type hints
  9. <https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html>`_ to
  10. generate fast code.
  11. .. toctree::
  12. :maxdepth: 2
  13. :caption: First steps
  14. introduction
  15. getting_started
  16. .. toctree::
  17. :maxdepth: 2
  18. :caption: Using mypyc
  19. using_type_annotations
  20. native_classes
  21. differences_from_python
  22. compilation_units
  23. .. toctree::
  24. :maxdepth: 2
  25. :caption: Native operations reference
  26. native_operations
  27. int_operations
  28. bool_operations
  29. float_operations
  30. str_operations
  31. list_operations
  32. dict_operations
  33. set_operations
  34. tuple_operations
  35. .. toctree::
  36. :maxdepth: 2
  37. :caption: Advanced topics
  38. performance_tips_and_tricks
  39. .. toctree::
  40. :hidden:
  41. :caption: Project Links
  42. GitHub <https://github.com/python/mypy>
  43. Indices and tables
  44. ==================
  45. * :ref:`genindex`
  46. * :ref:`modindex`
  47. * :ref:`search`