hmr 0.4.0.3__py3-none-any.whl → 0.4.0.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hmr-0.4.0.3.dist-info → hmr-0.4.0.4.dist-info}/METADATA +1 -1
- {hmr-0.4.0.3.dist-info → hmr-0.4.0.4.dist-info}/RECORD +6 -6
- reactivity/hmr/api.py +3 -2
- reactivity/hmr/core.py +3 -2
- {hmr-0.4.0.3.dist-info → hmr-0.4.0.4.dist-info}/WHEEL +0 -0
- {hmr-0.4.0.3.dist-info → hmr-0.4.0.4.dist-info}/entry_points.txt +0 -0
@@ -1,14 +1,14 @@
|
|
1
|
-
hmr-0.4.0.
|
2
|
-
hmr-0.4.0.
|
3
|
-
hmr-0.4.0.
|
1
|
+
hmr-0.4.0.4.dist-info/METADATA,sha256=LUEgpV4DByNJUiBfSXLxwdbI0W1GcxaZlemWOA6BX7M,260
|
2
|
+
hmr-0.4.0.4.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
3
|
+
hmr-0.4.0.4.dist-info/entry_points.txt,sha256=g_T0uJ43WgsdG14kkkdaBQuIL0HO-m1qvtjXMP6d060,59
|
4
4
|
reactivity/__init__.py,sha256=pX-RUzkezCC1x4eOWGxNhXbwrbvBLP_3pQuZr9eZz1Y,300
|
5
5
|
reactivity/functional.py,sha256=U06vshcVhZ0sb218gcmHtEhfgTNAGtQ7zyvPz2w5qKM,1292
|
6
6
|
reactivity/helpers.py,sha256=1KCpre2HTFZrngEKkI2HwSFMkCmsUCq2aPEbp0y3kKg,5140
|
7
7
|
reactivity/hmr/__init__.py,sha256=S5ZIHqCRpevdzWuhS0aCua_S8F0LkK0YNg6IgeTScFQ,177
|
8
8
|
reactivity/hmr/__main__.py,sha256=uIcyjR5gMFIXH_3hS0B3SD00RirVf7GIct-uItx675o,64
|
9
|
-
reactivity/hmr/api.py,sha256=
|
10
|
-
reactivity/hmr/core.py,sha256=
|
9
|
+
reactivity/hmr/api.py,sha256=7_NitUF3MA8lepS3p_uTbPxZhFIGIXGxPu6iyRZP7o0,1916
|
10
|
+
reactivity/hmr/core.py,sha256=CB0QRElWIRMZGe4iDVJrH9B7vKM4R57_hOVh-EDRfqI,11679
|
11
11
|
reactivity/hmr/hooks.py,sha256=-yLr5ktiyqPb1nDbHsgv6-c_ZkziBjNqCU-0PCfXGYU,592
|
12
12
|
reactivity/hmr/utils.py,sha256=-PO-LMP4sc3IP-Bn_baq2w9IFWBZ3zGesgRn5wR6bS0,1555
|
13
13
|
reactivity/primitives.py,sha256=mB6cbHKDqtilOfgaEhshtRWJq9s0nPEKqRK0hfCoyFE,5671
|
14
|
-
hmr-0.4.0.
|
14
|
+
hmr-0.4.0.4.dist-info/RECORD,,
|
reactivity/hmr/api.py
CHANGED
@@ -1,14 +1,15 @@
|
|
1
|
-
from .core import AsyncReloader, BaseReloader, SyncReloader
|
1
|
+
from .core import AsyncReloader, BaseReloader, SyncReloader, create_effect
|
2
2
|
from .hooks import call_post_reload_hooks, call_pre_reload_hooks
|
3
3
|
|
4
4
|
|
5
5
|
class LifecycleMixin(BaseReloader):
|
6
6
|
def run_with_hooks(self):
|
7
7
|
call_pre_reload_hooks()
|
8
|
-
self.run_entry_file
|
8
|
+
self.effect = create_effect(self.run_entry_file)
|
9
9
|
call_post_reload_hooks()
|
10
10
|
|
11
11
|
def clean_up(self):
|
12
|
+
self.effect.dispose()
|
12
13
|
self.entry_module.load.dispose()
|
13
14
|
self.entry_module.load.invalidate()
|
14
15
|
|
reactivity/hmr/core.py
CHANGED
@@ -122,7 +122,8 @@ class ReactiveModule(ModuleType):
|
|
122
122
|
try:
|
123
123
|
return self.__namespace_proxy[name]
|
124
124
|
except KeyError as e:
|
125
|
-
|
125
|
+
caller = currentframe().f_back.f_globals["__name__"] # type: ignore
|
126
|
+
if caller != "importlib._bootstrap" and (getattr := self.__namespace_proxy.get("__getattr__")):
|
126
127
|
return getattr(name)
|
127
128
|
raise AttributeError(*e.args) from e
|
128
129
|
|
@@ -339,4 +340,4 @@ def cli():
|
|
339
340
|
SyncReloader(entry).keep_watching_until_interrupt()
|
340
341
|
|
341
342
|
|
342
|
-
__version__ = "0.4.0.
|
343
|
+
__version__ = "0.4.0.4"
|
File without changes
|
File without changes
|