*.pyx: Add some rather laconic docstrings.
[mLib-python] / sym.pyx
diff --git a/sym.pyx b/sym.pyx
index eab6984..f456db8 100644 (file)
--- a/sym.pyx
+++ b/sym.pyx
@@ -28,6 +28,11 @@ cdef struct _sym_entry:
   PyObject *v
 
 cdef class SymTable (Mapping):
+  """
+  SymTable([DICT], **KW)
+
+  A mapping keyed by strings.
+  """
   cdef sym_table _t
   cdef int _init(me) except -1:
     sym_create(&me._t)