eventdispatch 0.2.23__tar.gz → 0.2.25__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.
- {eventdispatch-0.2.23/eventdispatch.egg-info → eventdispatch-0.2.25}/PKG-INFO +6 -2
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch/common1.py +1 -1
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch/example1.py +1 -1
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch/example2.py +1 -1
- {eventdispatch-0.2.23 → eventdispatch-0.2.25/eventdispatch.egg-info}/PKG-INFO +6 -2
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/pyproject.toml +1 -1
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/setup.py +1 -1
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/LICENSE +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/NOTICE +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/README.md +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch/__init__.py +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch/composite_semaphore.py +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch/core.py +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch.egg-info/SOURCES.txt +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch.egg-info/dependency_links.txt +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch.egg-info/entry_points.txt +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch.egg-info/requires.txt +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/eventdispatch.egg-info/top_level.txt +0 -0
- {eventdispatch-0.2.23 → eventdispatch-0.2.25}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: eventdispatch
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.25
|
|
4
4
|
Summary: Event Dispatch: discrete time synchronization
|
|
5
5
|
Home-page: http://github.com/cyan-at/python-eventdispatch
|
|
6
6
|
Author: Charlie Yan
|
|
@@ -216,6 +216,10 @@ Requires-Python: >=3.9
|
|
|
216
216
|
Description-Content-Type: text/markdown
|
|
217
217
|
License-File: LICENSE
|
|
218
218
|
License-File: NOTICE
|
|
219
|
+
Requires-Dist: argparse
|
|
220
|
+
Dynamic: author
|
|
221
|
+
Dynamic: home-page
|
|
222
|
+
Dynamic: license-file
|
|
219
223
|
|
|
220
224
|
# <a href="https://github.com/cyan-at/python-eventdispatch" target="_blank">python-eventdispatch</a>
|
|
221
225
|
Event Dispatch: discrete time synchronization, Markov control
|
|
@@ -194,7 +194,7 @@ class TimerWait(CommonEvent):
|
|
|
194
194
|
self.blackboard[event_dispatch.cv_name].release()
|
|
195
195
|
|
|
196
196
|
self.blackboard.pop(self.k)
|
|
197
|
-
elif self.blackboard[self.k]['status'] ==
|
|
197
|
+
elif self.blackboard[self.k]['status'] == TIMERWAIT_BAILED:
|
|
198
198
|
self.log("TimerWait bailed! noop")
|
|
199
199
|
|
|
200
200
|
class BlackboardQueueCVED(EventDispatch):
|
|
@@ -242,7 +242,7 @@ def main():
|
|
|
242
242
|
parser = argparse.ArgumentParser(description='eventdispatch example1')
|
|
243
243
|
parser.add_argument('--verbose',
|
|
244
244
|
help="verbose, default=True",
|
|
245
|
-
action='
|
|
245
|
+
action='store_true')
|
|
246
246
|
args = parser.parse_args()
|
|
247
247
|
|
|
248
248
|
print("###################")
|
|
@@ -200,7 +200,7 @@ def main():
|
|
|
200
200
|
parser = argparse.ArgumentParser(description='eventdispatch example2')
|
|
201
201
|
parser.add_argument('--verbose',
|
|
202
202
|
help="verbose, default=True",
|
|
203
|
-
action='
|
|
203
|
+
action='store_true')
|
|
204
204
|
args = parser.parse_args()
|
|
205
205
|
|
|
206
206
|
print("###################")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: eventdispatch
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.25
|
|
4
4
|
Summary: Event Dispatch: discrete time synchronization
|
|
5
5
|
Home-page: http://github.com/cyan-at/python-eventdispatch
|
|
6
6
|
Author: Charlie Yan
|
|
@@ -216,6 +216,10 @@ Requires-Python: >=3.9
|
|
|
216
216
|
Description-Content-Type: text/markdown
|
|
217
217
|
License-File: LICENSE
|
|
218
218
|
License-File: NOTICE
|
|
219
|
+
Requires-Dist: argparse
|
|
220
|
+
Dynamic: author
|
|
221
|
+
Dynamic: home-page
|
|
222
|
+
Dynamic: license-file
|
|
219
223
|
|
|
220
224
|
# <a href="https://github.com/cyan-at/python-eventdispatch" target="_blank">python-eventdispatch</a>
|
|
221
225
|
Event Dispatch: discrete time synchronization, Markov control
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|