diff env/lib/python3.7/site-packages/boltons/deprutils.py @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/env/lib/python3.7/site-packages/boltons/deprutils.py	Sat May 02 07:14:21 2020 -0400
@@ -0,0 +1,41 @@
+# -*- coding: utf-8 -*-
+
+"""
+Note that DeprecationWarnings are ignored by default in Python
+2.7/3.2+, so be sure to either un-ignore them in your code, or run
+Python with the -Wd flag.
+"""
+
+import sys
+from warnings import warn
+
+ModuleType = type(sys)
+
+# todo: only warn once
+
+
+class DeprecatableModule(ModuleType):
+    def __init__(self, module):
+        name = module.__name__
+        super(DeprecatableModule, self).__init__(name=name)
+        self.__dict__.update(module.__dict__)
+
+    def __getattribute__(self, name):
+        get_attribute = super(DeprecatableModule, self).__getattribute__
+        try:
+            depros = get_attribute('_deprecated_members')
+        except AttributeError:
+            self._deprecated_members = depros = {}
+        ret = get_attribute(name)
+        message = depros.get(name)
+        if message is not None:
+            warn(message, DeprecationWarning, stacklevel=2)
+        return ret
+
+
+def deprecate_module_member(mod_name, name, message):
+    module = sys.modules[mod_name]
+    if not isinstance(module, DeprecatableModule):
+        sys.modules[mod_name] = module = DeprecatableModule(module)
+    module._deprecated_members[name] = message
+    return