Commit e68ca5ae authored by Jason Madden's avatar Jason Madden Committed by Jim Fulton

Import warnings on demand. (#159)

Fixes #158.
parent b6a9fb41
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5.2.3 (unreleased) 5.2.3 (unreleased)
================== ==================
- Nothing changed yet. - Fix an import error. See `issue 158 <https://github.com/zopefoundation/ZODB/issues/158>`_.
5.2.2 (2017-04-11) 5.2.2 (2017-04-11)
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
- Fixed: A blob misfeature set blob permissions so that blobs and blob - Fixed: A blob misfeature set blob permissions so that blobs and blob
directories were only readable by the database process owner, rather directories were only readable by the database process owner, rather
than honoring user-controlled permissions (e.g. ``umask``). than honoring user-controlled permissions (e.g. ``umask``).
See `issue 155 <https://github.com/zopefoundation/ZODB/issues/155>`_.
5.2.1 (2017-04-08) 5.2.1 (2017-04-08)
================== ==================
...@@ -411,4 +411,3 @@ Bugs Fixed ...@@ -411,4 +411,3 @@ Bugs Fixed
.. note:: .. note::
Please see https://github.com/zopefoundation/ZODB/blob/master/HISTORY.rst Please see https://github.com/zopefoundation/ZODB/blob/master/HISTORY.rst
for older versions of ZODB. for older versions of ZODB.
...@@ -389,11 +389,13 @@ class FilesystemHelper: ...@@ -389,11 +389,13 @@ class FilesystemHelper:
(self.layout_name, self.base_dir, layout)) (self.layout_name, self.base_dir, layout))
def isSecure(self, path): def isSecure(self, path):
import warnings
warnings.warn( warnings.warn(
"isSecure is deprecated. Permissions are no longer set by ZODB", "isSecure is deprecated. Permissions are no longer set by ZODB",
DeprecationWarning, stacklevel=2) DeprecationWarning, stacklevel=2)
def checkSecure(self): def checkSecure(self):
import warnings
warnings.warn( warnings.warn(
"checkSecure is deprecated. Permissions are no longer set by ZODB", "checkSecure is deprecated. Permissions are no longer set by ZODB",
DeprecationWarning, stacklevel=2) DeprecationWarning, stacklevel=2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment