functionalthreading 1.0.2__tar.gz → 1.0.5__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.
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/PKG-INFO +10 -1
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/README.md +9 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading.egg-info/PKG-INFO +10 -1
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/pyproject.toml +1 -1
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/LICENSE +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading/__init__.py +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading/classes/__init__.py +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading/functions/__init__.py +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading.egg-info/SOURCES.txt +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading.egg-info/dependency_links.txt +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading.egg-info/top_level.txt +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/setup.cfg +0 -0
- {functionalthreading-1.0.2 → functionalthreading-1.0.5}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: Concurrent functional programming with thread-based parallelism
|
|
5
5
|
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
6
|
License-Expression: Unlicense
|
|
@@ -34,6 +34,12 @@ The functionalthreading module provides functions for concurrent functional prog
|
|
|
34
34
|
## Functional Programming
|
|
35
35
|
See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
|
|
36
36
|
|
|
37
|
+
## Locking
|
|
38
|
+
This module intentionally does not include any thread-locking mechanism, for example [Lock](https://docs.python.org/3/library/threading.html#threading.Lock). It is the responsibility of the programmer using this module to ensure that updates to shared state are atomic.
|
|
39
|
+
|
|
40
|
+
## Atomicity
|
|
41
|
+
Atomicity is the property of an update (transaction) that implies indivisible and irreducible. An atomic update to state is an indivisible and irreducible update to state. State could mean a log file, cache, database table, game engine physics state, operating system process tables, file system metadata, etc.
|
|
42
|
+
|
|
37
43
|
## Reference
|
|
38
44
|
|
|
39
45
|
### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
|
|
@@ -376,3 +382,6 @@ duplicates = my_flatmapping_func([1, 2, 3])
|
|
|
376
382
|
```
|
|
377
383
|
|
|
378
384
|
|
|
385
|
+
|
|
386
|
+
## LICENSE
|
|
387
|
+
functionalthreading is distributed under the [Unlicense](https://unlicense.org/).
|
|
@@ -19,6 +19,12 @@ The functionalthreading module provides functions for concurrent functional prog
|
|
|
19
19
|
## Functional Programming
|
|
20
20
|
See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
|
|
21
21
|
|
|
22
|
+
## Locking
|
|
23
|
+
This module intentionally does not include any thread-locking mechanism, for example [Lock](https://docs.python.org/3/library/threading.html#threading.Lock). It is the responsibility of the programmer using this module to ensure that updates to shared state are atomic.
|
|
24
|
+
|
|
25
|
+
## Atomicity
|
|
26
|
+
Atomicity is the property of an update (transaction) that implies indivisible and irreducible. An atomic update to state is an indivisible and irreducible update to state. State could mean a log file, cache, database table, game engine physics state, operating system process tables, file system metadata, etc.
|
|
27
|
+
|
|
22
28
|
## Reference
|
|
23
29
|
|
|
24
30
|
### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
|
|
@@ -361,3 +367,6 @@ duplicates = my_flatmapping_func([1, 2, 3])
|
|
|
361
367
|
```
|
|
362
368
|
|
|
363
369
|
|
|
370
|
+
|
|
371
|
+
## LICENSE
|
|
372
|
+
functionalthreading is distributed under the [Unlicense](https://unlicense.org/).
|
{functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: Concurrent functional programming with thread-based parallelism
|
|
5
5
|
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
6
|
License-Expression: Unlicense
|
|
@@ -34,6 +34,12 @@ The functionalthreading module provides functions for concurrent functional prog
|
|
|
34
34
|
## Functional Programming
|
|
35
35
|
See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
|
|
36
36
|
|
|
37
|
+
## Locking
|
|
38
|
+
This module intentionally does not include any thread-locking mechanism, for example [Lock](https://docs.python.org/3/library/threading.html#threading.Lock). It is the responsibility of the programmer using this module to ensure that updates to shared state are atomic.
|
|
39
|
+
|
|
40
|
+
## Atomicity
|
|
41
|
+
Atomicity is the property of an update (transaction) that implies indivisible and irreducible. An atomic update to state is an indivisible and irreducible update to state. State could mean a log file, cache, database table, game engine physics state, operating system process tables, file system metadata, etc.
|
|
42
|
+
|
|
37
43
|
## Reference
|
|
38
44
|
|
|
39
45
|
### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
|
|
@@ -376,3 +382,6 @@ duplicates = my_flatmapping_func([1, 2, 3])
|
|
|
376
382
|
```
|
|
377
383
|
|
|
378
384
|
|
|
385
|
+
|
|
386
|
+
## LICENSE
|
|
387
|
+
functionalthreading is distributed under the [Unlicense](https://unlicense.org/).
|
|
File without changes
|
|
File without changes
|
{functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading/classes/__init__.py
RENAMED
|
File without changes
|
{functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading/functions/__init__.py
RENAMED
|
File without changes
|
{functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{functionalthreading-1.0.2 → functionalthreading-1.0.5}/functionalthreading.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|