functionalthreading 0.6.1__tar.gz → 0.6.2__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.4
2
2
  Name: functionalthreading
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Concurrent functional programming with thread-based parallelism
5
5
  Author-email: Richard Tong <richytong@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/richytong/functionalthreading
@@ -13,7 +13,7 @@ License-File: LICENSE
13
13
  Dynamic: license-file
14
14
 
15
15
  # functionalthreading
16
- functionalthreading - Functional programming with thread-based parallelism
16
+ functionalthreading - Concurrent functional programming with thread-based parallelism
17
17
 
18
18
  ```python
19
19
  from functionalthreading import chain, tap, tmap
@@ -30,6 +30,9 @@ chain(
30
30
  ## Introduction
31
31
  The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
32
32
 
33
+ ## Functional Programming
34
+ See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
35
+
33
36
  ## Reference
34
37
 
35
38
  ### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
@@ -1,5 +1,5 @@
1
1
  # functionalthreading
2
- functionalthreading - Functional programming with thread-based parallelism
2
+ functionalthreading - Concurrent functional programming with thread-based parallelism
3
3
 
4
4
  ```python
5
5
  from functionalthreading import chain, tap, tmap
@@ -16,6 +16,9 @@ chain(
16
16
  ## Introduction
17
17
  The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
18
18
 
19
+ ## Functional Programming
20
+ See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
21
+
19
22
  ## Reference
20
23
 
21
24
  ### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: functionalthreading
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Concurrent functional programming with thread-based parallelism
5
5
  Author-email: Richard Tong <richytong@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/richytong/functionalthreading
@@ -13,7 +13,7 @@ License-File: LICENSE
13
13
  Dynamic: license-file
14
14
 
15
15
  # functionalthreading
16
- functionalthreading - Functional programming with thread-based parallelism
16
+ functionalthreading - Concurrent functional programming with thread-based parallelism
17
17
 
18
18
  ```python
19
19
  from functionalthreading import chain, tap, tmap
@@ -30,6 +30,9 @@ chain(
30
30
  ## Introduction
31
31
  The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
32
32
 
33
+ ## Functional Programming
34
+ See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
35
+
33
36
  ## Reference
34
37
 
35
38
  ### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "functionalthreading"
3
- version = "0.6.1"
3
+ version = "0.6.2"
4
4
  authors = [
5
5
  { name="Richard Tong", email="richytong@gmail.com" },
6
6
  ]