Generate attribute docs for exposed C++ attributes like properties.

This commit is contained in:
Robin Dunn
2016-06-17 16:01:38 -07:00
parent 3a3bfea166
commit 5983df8a5f
4 changed files with 43 additions and 12 deletions

View File

@@ -222,7 +222,7 @@ def pythonizeType(ptype, is_param):
if 'size_t' in ptype:
ptype = 'int'
elif 'wx.' in ptype:
ptype = ptype[3:]
ptype = ptype[3:] # ***
else:
ptype = wx2Sphinx(replaceCppItems(ptype))[1]