Skip to content

Commit

Permalink
[SPARK-7208] [ML] [PYTHON] Added Matrix, SparseMatrix to __all__ list…
Browse files Browse the repository at this point in the history
… in linalg.py

Added Matrix, SparseMatrix to __all__ list in linalg.py

CC: mengxr

Author: Joseph K. Bradley <joseph@databricks.com>

Closes apache#5759 from jkbradley/SPARK-7208 and squashes the following commits:

deb51a2 [Joseph K. Bradley] Added Matrix, SparseMatrix to __all__ list in linalg.py
  • Loading branch information
jkbradley authored and jeanlyn committed May 28, 2015
1 parent 8cc98f9 commit c72bc78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/pyspark/mllib/linalg.py
Expand Up @@ -39,7 +39,8 @@
IntegerType, ByteType


__all__ = ['Vector', 'DenseVector', 'SparseVector', 'Vectors', 'DenseMatrix', 'Matrices']
__all__ = ['Vector', 'DenseVector', 'SparseVector', 'Vectors',
'Matrix', 'DenseMatrix', 'SparseMatrix', 'Matrices']


if sys.version_info[:2] == (2, 7):
Expand Down

0 comments on commit c72bc78

Please sign in to comment.