Python: document CTFStringEncoding
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Sat, 6 Dec 2014 01:03:20 +0000 (20:03 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 13 Feb 2015 21:28:32 +0000 (16:28 -0500)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
bindings/python/bt.py

index c1a9b3e82e704d4c7660ad63594037c4722588cd..55c11eb6d3c3f9cf3a957e8f4a1aaabb2008db9e 100644 (file)
@@ -327,9 +327,20 @@ class TraceHandle:
 
 
 class CTFStringEncoding:
+    """
+    CTF string encodings.
+    """
+
+    #: None
     NONE = 0
+
+    #: UTF-8
     UTF8 = 1
+
+    #: ASCII
     ASCII = 2
+
+    #: Unknown
     UNKNOWN = 3
 
 
This page took 0.026678 seconds and 4 git commands to generate.