File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " asyncgui-ext-clock"
3
- version = " 0.5.2.dev0 "
3
+ version = " 0.5.2"
4
4
description = " An event scheduler for asyncgui programs"
5
5
authors = [
" Nattōsai Mitō <[email protected] >" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ ReadMe |ja|
16
16
print("Hello")
17
17
18
18
asyncgui.start(async_fn())
19
- clock.tick(10) # 時間が10進む 。
19
+ clock.tick(10) # 時間を10進める 。
20
20
clock.tick(10) # 合計で20進むのでタスクが再開し 'Hello' が表示される。
21
21
22
- この様に ``clock.tick() `` を呼ぶ事で時計内部の時が進み停止中のタスクが再開するわけです 。
22
+ この様に ``clock.tick() `` を呼ぶ事で時計内部の時が進み停止中のタスクが再開します 。
23
23
また :mod: `sched ` と同じで時間の単位が決まってない事に気付いたと思います。
24
24
APIに渡す時間の単位は統一さえされていれば何でも構いません。
25
25
@@ -64,6 +64,8 @@ APIに渡す時間の単位は統一さえされていれば何でも構いま
64
64
* CPython 3.10
65
65
* CPython 3.11
66
66
* CPython 3.12
67
+ * CPython 3.13
68
+ * PyPy 3.10
67
69
68
70
その他
69
71
-----------------------
You can’t perform that action at this time.
0 commit comments