Skip to content
Snippets Groups Projects
Commit be87baf7 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix docs

parent 3e34e882
No related branches found
No related tags found
No related merge requests found
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
coolamqp\__init__.py
coolamqp\exceptions.py
coolamqp\objects.py
coolamqp\attaches\__init__.py
coolamqp\attaches\agroup.py
coolamqp\attaches\channeler.py
coolamqp\attaches\consumer.py
coolamqp\attaches\publisher.py
coolamqp\attaches\utils.py
coolamqp\clustering\__init__.py
coolamqp\clustering\cluster.py
coolamqp\clustering\events.py
coolamqp\clustering\single.py
coolamqp\framing\__init__.py
coolamqp\framing\base.py
coolamqp\framing\definitions.py
coolamqp\framing\field_table.py
coolamqp\framing\frames.py
coolamqp\framing\compilation\__init__.py
coolamqp\framing\compilation\compile_definitions.py
coolamqp\framing\compilation\content_property.py
coolamqp\framing\compilation\textcode_fields.py
coolamqp\framing\compilation\utilities.py
coolamqp\uplink\__init__.py
coolamqp\uplink\handshake.py
coolamqp\uplink\heartbeat.py
coolamqp\uplink\connection\__init__.py
coolamqp\uplink\connection\connection.py
coolamqp\uplink\connection\recv_framer.py
coolamqp\uplink\connection\send_framer.py
coolamqp\uplink\connection\states.py
coolamqp\uplink\connection\watches.py
coolamqp\uplink\listener\__init__.py
coolamqp\uplink\listener\epoll_listener.py
coolamqp\uplink\listener\socket.py
coolamqp\uplink\listener\thread.py
......@@ -156,6 +156,10 @@ texinfo_documents = [
from coolamqp.framing.definitions import BINARY_HEADER_TO_METHOD
with open('frames.rst', 'w') as f_out:
f_out.write('''===========================
Glossary of all AMQP frames
===========================
''')
for class_ in BINARY_HEADER_TO_METHOD.values():
f_out.write('.. autoclass:: coolamqp.framing.definitions.%s\n :members:\n\n' % (
class_.__qualname__,))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment