Commit 3b2ee9b5 authored by peastman's avatar peastman
Browse files

Merge pull request #72 from peastman/master

__all__ should not include symbols that start with _
parents b788fdd6 73fdc083
...@@ -69,7 +69,7 @@ using namespace OpenMM; ...@@ -69,7 +69,7 @@ using namespace OpenMM;
# actual classes, and not the swigregistration methods, which have already # actual classes, and not the swigregistration methods, which have already
# been called, and are now unneeded by the user code, and only pollute the # been called, and are now unneeded by the user code, and only pollute the
# namespace # 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