From 20ecb1f2bfd48f5a41529d7ef6c0408ca238f2d2 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Sat, 22 Oct 2011 14:53:45 -0400
Subject: [PATCH] Doc generation fix.

---
 doc/make_constants.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/make_constants.py b/doc/make_constants.py
index 962b4924..f4e540c6 100644
--- a/doc/make_constants.py
+++ b/doc/make_constants.py
@@ -196,7 +196,7 @@ def doc_class(cls):
 
     cls_const_ext = const_ext_lookup.get(cls, {})
     for i in sorted(dir(cls)):
-        if not i.startswith("_")  and not i == "to_string":
+        if not i.startswith("_")  and not i in ["to_string", "names", "values"]:
             print "    .. attribute :: %s" % i
             value = getattr(cls, i)
 
-- 
GitLab