From 89f0c0c1b52618303e1eae2037004e7f65275440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sat, 27 Apr 2013 17:09:06 +0200 Subject: [PATCH] Add __all__ to data package --- skimage/data/__init__.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/skimage/data/__init__.py b/skimage/data/__init__.py index ac55557f..07d2688d 100644 --- a/skimage/data/__init__.py +++ b/skimage/data/__init__.py @@ -12,6 +12,20 @@ from ..io import imread from skimage import data_dir +__all__ = ['load', + 'camera', + 'lena', + 'text', + 'checkerboard', + 'coins', + 'moon', + 'page', + 'horse', + 'clock', + 'immunohistochemistry', + 'chelsea'] + + def load(f): """Load an image file located in the data directory.