mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
Fixed doc generation
This commit is contained in:
@@ -12,3 +12,13 @@ pycmx Classes
|
|||||||
.. autoclass:: pycmx.edit.Edit
|
.. autoclass:: pycmx.edit.Edit
|
||||||
:members:
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
.. autoclass:: pycmx.transition.Transition
|
||||||
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
.. autoclass:: pycmx.channel_map.ChannelMap
|
||||||
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
7
docs/source/function.rst
Normal file
7
docs/source/function.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
Parse Function
|
||||||
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
.. autofunction:: pycmx.parse_cmx_events.parse_cmx3600
|
||||||
|
|
||||||
|
|
||||||
@@ -10,11 +10,11 @@ Welcome to pycmx's documentation!
|
|||||||
:maxdepth: 5
|
:maxdepth: 5
|
||||||
:caption: API Reference:
|
:caption: API Reference:
|
||||||
|
|
||||||
|
function
|
||||||
classes
|
classes
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
==================
|
==================
|
||||||
|
|
||||||
* :ref:`genindex`
|
* :ref:`genindex`
|
||||||
* :ref:`modindex`
|
|
||||||
* :ref:`search`
|
* :ref:`search`
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ def parse_cmx3600(f):
|
|||||||
f : a file-like object, anything that's readlines-able.
|
f : a file-like object, anything that's readlines-able.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
An :class:`EditList`.
|
An :class:`pycmx.edit_list.EditList`.
|
||||||
"""
|
"""
|
||||||
statements = parse_cmx3600_statements(f)
|
statements = parse_cmx3600_statements(f)
|
||||||
return EditList(statements)
|
return EditList(statements)
|
||||||
|
|||||||
Reference in New Issue
Block a user