Commit 73fdc083 authored by peastman's avatar peastman
Browse files

__all__ should not include symbols that start with _

parent b788fdd6
......@@ -69,7 +69,7 @@ using namespace OpenMM;
# actual classes, and not the swigregistration methods, which have already
# been called, and are now unneeded by the user code, and only pollute the
# namespace
__all__ = [k for k in locals().keys() if not k.endswith('_swigregister')]
__all__ = [k for k in locals().keys() if not (k.endswith('_swigregister') or k.startswith('_'))]
%}
/*
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment