Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.math
Commits
f0b72ed1
Commit
f0b72ed1
authored
Mar 17, 2014
by
André Anjos
💬
Browse files
Fix python3 compatibility issues with doc fix
parent
20b90220
Changes
1
Hide whitespace changes
Inline
Side-by-side
xbob/math/__init__.py
View file @
f0b72ed1
...
...
@@ -2,5 +2,4 @@ from ._library import __version__
from
._library
import
*
# gets sphinx autodoc done right - don't remove it
__all__
=
[
k
for
k
in
dir
()
if
not
k
.
startswith
(
'_'
)]
del
k
__all__
=
[
_
for
_
in
dir
()
if
not
_
.
startswith
(
'_'
)]
Write
Preview
Supports
Markdown
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