summaryrefslogtreecommitdiff
path: root/test/data
diff options
context:
space:
mode:
authorPhilippe Pepiot <philippe.pepiot@logilab.fr>2017-01-20 16:02:24 +0100
committerPhilippe Pepiot <philippe.pepiot@logilab.fr>2017-01-20 16:02:24 +0100
commit846950d49aca16fb3d848bf7e5851985377a3f73 (patch)
treea957a71de4bb9077e0913b617d5313178a3f337f /test/data
parent742fe7dda53fc4fbe5ccf8e1827ab6bbe5af95f0 (diff)
downloadlogilab-common-846950d49aca16fb3d848bf7e5851985377a3f73.tar.gz
[registry] RegistrableInstance should be instantiated with __module__=__name__
To detect in whih module the instance was created we previously detect the filename in python stack and then use modpath_from_file(). Since the later is now deprecated, we should force passing the module at instantiation with __module__=__name__. Deprecate old usage
Diffstat (limited to 'test/data')
-rw-r--r--test/data/regobjects2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/regobjects2.py b/test/data/regobjects2.py
index 5c28b51..091b9f7 100644
--- a/test/data/regobjects2.py
+++ b/test/data/regobjects2.py
@@ -5,4 +5,4 @@ class MyRegistrableInstance(RegistrableInstance):
__select__ = yes()
__registry__ = 'zereg'
-instance = MyRegistrableInstance()
+instance = MyRegistrableInstance(__module__=__name__)