Don't use __code__

__code__ is a special method name used by python already
source:
https://docs.python.org/3/reference/datamodel.html#special-method-names
This commit is contained in:
Matthias
2020-09-26 16:33:48 +02:00
parent b38f68b3b0
commit 350fcc071e
3 changed files with 4 additions and 4 deletions

View File

@@ -98,7 +98,7 @@ class IResolver:
if obj:
obj[0].__file__ = str(entry)
if add_source:
obj[0].__code__ = obj[1]
obj[0].__source__ = obj[1]
return (obj[0], module_path)
return (None, None)

View File

@@ -608,7 +608,7 @@ class ApiServer(RPC):
return self.rest_dump({
'strategy': strategy_obj.get_strategy_name(),
'code': strategy_obj.__code__,
'code': strategy_obj.__source__,
})
@require_login