summaryrefslogtreecommitdiff
path: root/silx/io/__init__.py
diff options
context:
space:
mode:
authorPicca Frédéric-Emmanuel <picca@debian.org>2017-10-07 07:59:01 +0200
committerPicca Frédéric-Emmanuel <picca@debian.org>2017-10-07 07:59:01 +0200
commitbfa4dba15485b4192f8bbe13345e9658c97ecf76 (patch)
treefb9c6e5860881fbde902f7cbdbd41dc4a3a9fb5d /silx/io/__init__.py
parentf7bdc2acff3c13a6d632c28c4569690ab106eed7 (diff)
New upstream version 0.6.0+dfsg
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"]