summaryrefslogtreecommitdiff
path: root/silx/io/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/io/__init__.py')
-rw-r--r--silx/io/__init__.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/silx/io/__init__.py b/silx/io/__init__.py
index 4e3cace..96f6708 100644
--- a/silx/io/__init__.py
+++ b/silx/io/__init__.py
@@ -1,7 +1,7 @@
# coding: utf-8
# /*##########################################################################
#
-# Copyright (c) 2016 European Synchrotron Radiation Facility
+# Copyright (c) 2016-2017 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -26,20 +26,16 @@
__authors__ = ["P. Knobel"]
__license__ = "MIT"
-__date__ = "20/01/2017"
+__date__ = "15/05/2017"
-import logging
-
-
-# Init logging once for the whole module
-logging.basicConfig()
-
from .utils import open # pylint:disable=redefined-builtin
from .utils import save1D
from .utils import is_dataset
from .utils import is_file
from .utils import is_group
+from .utils import is_softlink
-__all__ = ["save1D", "is_dataset", "is_file", "is_group"] # avoid to import open with "import *"
+# avoid to import open with "import *"
+__all__ = ["save1D", "is_dataset", "is_file", "is_group", "is_softlink"]