Add __all__ to util package

This commit is contained in:
Johannes Schönberger
2013-04-28 23:20:01 +02:00
parent 4da0084604
commit c10f8d300b
+13 -2
View File
@@ -1,2 +1,13 @@
from .dtype import *
from .shape import *
from .dtype import (img_as_float, img_as_int, img_as_uint, img_as_ubyte,
img_as_bool, dtype_limits)
from .shape import view_as_blocks, view_as_windows
__all__ = ['img_as_float',
'img_as_int',
'img_as_uint',
'img_as_ubyte',
'img_as_bool',
'dtype_limits',
'view_as_blocks',
'view_as_windows']