[Epydoc-commits] SF.net SVN: epydoc: [1387] trunk/epydoc/src/epydoc/docintrospecter.py
Brought to you by:
edloper
|
From: <dva...@us...> - 2006-09-13 03:04:05
|
Revision: 1387
http://svn.sourceforge.net/epydoc/?rev=1387&view=rev
Author: dvarrazzo
Date: 2006-09-12 20:04:00 -0700 (Tue, 12 Sep 2006)
Log Message:
-----------
- Added a filter to remove the class vtable generated by Pyrex for
extension modules.
Modified Paths:
--------------
trunk/epydoc/src/epydoc/docintrospecter.py
Modified: trunk/epydoc/src/epydoc/docintrospecter.py
===================================================================
--- trunk/epydoc/src/epydoc/docintrospecter.py 2006-09-11 16:12:51 UTC (rev 1386)
+++ trunk/epydoc/src/epydoc/docintrospecter.py 2006-09-13 03:04:00 UTC (rev 1387)
@@ -299,7 +299,8 @@
#: A list of class variables that should not be included in a
#: class's API documentation.
UNDOCUMENTED_CLASS_VARS = (
- '__doc__', '__module__', '__dict__', '__weakref__', '__slots__')
+ '__doc__', '__module__', '__dict__', '__weakref__', '__slots__',
+ '__pyx_vtable__')
def introspect_class(cls, class_doc):
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|