Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
73fdc083
Commit
73fdc083
authored
Jul 23, 2013
by
peastman
Browse files
__all__ should not include symbols that start with _
parent
b788fdd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
wrappers/python/src/swig_doxygen/OpenMM.i
wrappers/python/src/swig_doxygen/OpenMM.i
+1
-1
No files found.
wrappers/python/src/swig_doxygen/OpenMM.i
View file @
73fdc083
...
...
@@ -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
(
'_'
))
]
%
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment