1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
API Reference (in progress)
***************************
**NOTE: This page is still a work in progress... We need to go through our
docstrings and make them sphinx-compliant, and figure out how to improve
formatting with the sphinx-bootstrap-theme plugin. Pull requests would be
very welcome.**
.. contents::
:local:
:depth: 2
future.builtins Interface
=========================
.. automodule:: future.builtins
:members:
.. Docs are also in future-builtins.rst. Extract these and put them into the
.. relevant docstrings.
Backported types from Python 3
==============================
.. automodule:: future.types
:members:
future.standard_library Interface
=================================
.. automodule:: future.standard_library
:members:
future.utils Interface
======================
.. automodule:: future.utils
:members:
past.builtins Interface
=========================
.. automodule:: past.builtins
:members:
.. Docs are also in future-builtins.rst. Extract these and put them into the
.. relevant docstrings.
Forward-ported types from Python 2
==================================
.. automodule:: past.types
:members:
.. bytes
.. -----
.. .. automodule:: future.types.newbytes
..
.. dict
.. -----
.. .. automodule:: future.types.newdict
..
.. int
.. ---
.. .. automodule:: future.builtins.backports.newint
..
.. range
.. -----
.. .. automodule:: future.types.newrange
..
.. str
.. ---
.. .. automodule:: future.types.newstr
|