We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8360ed6 commit 82c671bCopy full SHA for 82c671b
clr_loader/netfx.py
@@ -18,7 +18,7 @@ def __init__(
18
else:
19
config_file_s = ffi.NULL
20
21
- self._domain = domain
+ self._domain_name = domain
22
self._config_file = config_file
23
self._domain = _FW.pyclr_create_appdomain(domain or ffi.NULL, config_file_s)
24
@@ -29,7 +29,7 @@ def info(self) -> RuntimeInfo:
29
initialized=True,
30
shutdown=_FW is None,
31
properties=dict(
32
- domain=self._domain or "", config_file=str(self._config_file)
+ domain=self._domain_name or "", config_file=str(self._config_file)
33
),
34
)
35
0 commit comments