This is an automated email from the ASF dual-hosted git repository.
niketanpansare pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemml.git
The following commit(s) were added to refs/heads/master by this push:
new bf4717f [MINOR] Allow access to classloaders methods
bf4717f is described below
commit bf4717f39aaf3cf70bf99648afd38cd8dd5c8ad3
Author: Niketan Pansare <[email protected]>
AuthorDate: Wed Feb 27 13:05:49 2019 -0800
[MINOR] Allow access to classloaders methods
---
src/main/python/systemml/__init__.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/main/python/systemml/__init__.py
b/src/main/python/systemml/__init__.py
index 74c8e50..f268642 100644
--- a/src/main/python/systemml/__init__.py
+++ b/src/main/python/systemml/__init__.py
@@ -22,7 +22,9 @@
from .mlcontext import *
from .defmatrix import *
from .converters import *
+from .classloader import *
__all__ = mlcontext.__all__
__all__ += defmatrix.__all__
__all__ += converters.__all__
+__all__ += classloader.__all__