hmr 0.4.0.2__tar.gz → 0.4.0.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hmr
3
- Version: 0.4.0.2
3
+ Version: 0.4.0.3
4
4
  Summary: Hot Module Reload for Python
5
5
  Project-URL: repository, https://github.com/promplate/pyth-on-line/tree/reactivity
6
6
  Requires-Python: >=3.12
@@ -6,7 +6,7 @@ description = "Hot Module Reload for Python"
6
6
  dependencies = [
7
7
  "watchfiles>=0.21,<2 ; sys_platform != 'emscripten'",
8
8
  ]
9
- version = "0.4.0.2"
9
+ version = "0.4.0.3"
10
10
 
11
11
  [project.scripts]
12
12
  hmr = "reactivity.hmr:cli"
@@ -2,19 +2,18 @@ from .core import AsyncReloader, BaseReloader, SyncReloader
2
2
  from .hooks import call_post_reload_hooks, call_pre_reload_hooks
3
3
 
4
4
 
5
- def _clean_up(r: BaseReloader):
6
- r.entry_module.load.dispose()
7
- r.entry_module.load.invalidate()
8
-
9
-
10
- class ReloadHooksMixin(BaseReloader):
5
+ class LifecycleMixin(BaseReloader):
11
6
  def run_with_hooks(self):
12
7
  call_pre_reload_hooks()
13
8
  self.run_entry_file()
14
9
  call_post_reload_hooks()
15
10
 
11
+ def clean_up(self):
12
+ self.entry_module.load.dispose()
13
+ self.entry_module.load.invalidate()
14
+
16
15
 
17
- class SyncReloaderAPI(SyncReloader, ReloadHooksMixin):
16
+ class SyncReloaderAPI(SyncReloader, LifecycleMixin):
18
17
  def __enter__(self):
19
18
  from threading import Thread
20
19
 
@@ -26,7 +25,7 @@ class SyncReloaderAPI(SyncReloader, ReloadHooksMixin):
26
25
  def __exit__(self, *_):
27
26
  self.stop_watching()
28
27
  self.thread.join()
29
- _clean_up(self)
28
+ self.clean_up()
30
29
 
31
30
  async def __aenter__(self):
32
31
  from asyncio import ensure_future, to_thread
@@ -38,10 +37,10 @@ class SyncReloaderAPI(SyncReloader, ReloadHooksMixin):
38
37
  async def __aexit__(self, *_):
39
38
  self.stop_watching()
40
39
  await self.future
41
- _clean_up(self)
40
+ self.clean_up()
42
41
 
43
42
 
44
- class AsyncReloaderAPI(AsyncReloader, ReloadHooksMixin):
43
+ class AsyncReloaderAPI(AsyncReloader, LifecycleMixin):
45
44
  def __enter__(self):
46
45
  from asyncio import run
47
46
  from threading import Thread
@@ -54,7 +53,7 @@ class AsyncReloaderAPI(AsyncReloader, ReloadHooksMixin):
54
53
  def __exit__(self, *_):
55
54
  self.stop_watching()
56
55
  self.thread.join()
57
- _clean_up(self)
56
+ self.clean_up()
58
57
 
59
58
  async def __aenter__(self):
60
59
  from asyncio import ensure_future, to_thread
@@ -66,4 +65,4 @@ class AsyncReloaderAPI(AsyncReloader, ReloadHooksMixin):
66
65
  async def __aexit__(self, *_):
67
66
  self.stop_watching()
68
67
  await self.future
69
- _clean_up(self)
68
+ self.clean_up()
@@ -339,4 +339,4 @@ def cli():
339
339
  SyncReloader(entry).keep_watching_until_interrupt()
340
340
 
341
341
 
342
- __version__ = "0.4.0.2"
342
+ __version__ = "0.4.0.3"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes