From b060cf7e0de69b6d27ef1d815b0b7f7a93b23608 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Fri, 11 Jul 2014 19:13:41 +0400 Subject: [PATCH] Refined pyuavcan docs --- pyuavcan/pyuavcan/dsdl/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyuavcan/pyuavcan/dsdl/__init__.py b/pyuavcan/pyuavcan/dsdl/__init__.py index 595be66e83..bdfef426f6 100644 --- a/pyuavcan/pyuavcan/dsdl/__init__.py +++ b/pyuavcan/pyuavcan/dsdl/__init__.py @@ -4,6 +4,7 @@ ''' This module implements a fully compliant UAVCAN DSDL parser. +Please read the specs at http://uavcan.org. ''' from .parser import Parser, parse_namespaces, \ @@ -11,3 +12,8 @@ from .parser import Parser, parse_namespaces, \ Attribute, Field, Constant from .common import DsdlException + +__all__ = ['Parser', 'parse_namespaces', + 'Type', 'PrimitiveType', 'ArrayType', 'CompoundType', + 'Attribute', 'Field', 'Constant', + 'DsdlException']