eventdispatch 0.1.23__tar.gz → 0.1.24__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.1.23 → eventdispatch-0.1.24}/PKG-INFO +1 -1
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch/composite_semaphore.py +4 -1
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch.egg-info/PKG-INFO +1 -1
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/pyproject.toml +1 -1
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/setup.py +1 -1
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/LICENSE +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/README.md +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch/__init__.py +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch/common1.py +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch/core.py +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch/example1.py +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch.egg-info/SOURCES.txt +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch.egg-info/dependency_links.txt +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch.egg-info/entry_points.txt +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/eventdispatch.egg-info/top_level.txt +0 -0
- {eventdispatch-0.1.23 → eventdispatch-0.1.24}/setup.cfg +0 -0
@@ -417,7 +417,7 @@ class Collector(object):
|
|
417
417
|
self.r = []
|
418
418
|
self.s = []
|
419
419
|
|
420
|
-
|
420
|
+
def main():
|
421
421
|
s = 4
|
422
422
|
|
423
423
|
sem1 = CompositeSemaphore([x for x in range(s)])
|
@@ -472,3 +472,6 @@ if __name__ == "__main__":
|
|
472
472
|
th.join()
|
473
473
|
for th in p_threads:
|
474
474
|
th.join()
|
475
|
+
|
476
|
+
if __name__ == "__main__":
|
477
|
+
main()
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "eventdispatch"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.24"
|
8
8
|
authors = [{name = "Charlie Yan", email = "cyanatg@gmail.com"}]
|
9
9
|
dynamic = ["scripts", "dependencies"]
|
10
10
|
description = "Event Dispatch: discrete time synchronization"
|
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
|