From 31576864a5c3983321e723335e9d88b9fa71058a Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 5 Dec 2014 20:03:20 -0500 Subject: [PATCH] Python: document CTFStringEncoding MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- bindings/python/bt.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bindings/python/bt.py b/bindings/python/bt.py index c1a9b3e82..55c11eb6d 100644 --- a/bindings/python/bt.py +++ b/bindings/python/bt.py @@ -327,9 +327,20 @@ class TraceHandle: class CTFStringEncoding: + """ + CTF string encodings. + """ + + #: None NONE = 0 + + #: UTF-8 UTF8 = 1 + + #: ASCII ASCII = 2 + + #: Unknown UNKNOWN = 3 -- 2.34.1