functionalthreading 0.2.5__tar.gz → 0.2.7__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.2.5
3
+ Version: 0.2.7
4
4
  Summary: 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
@@ -1,5 +1,5 @@
1
1
  from functools import partial, Placeholder as _
2
- from functions import chain, tap, tmap
2
+ from functionalthreading.functions import chain, tap, tmap
3
3
 
4
4
  __name__ = 'functionalthreading'
5
5
 
@@ -104,4 +104,6 @@ def tmap(array_or_tuple, func):
104
104
  return tuple(result)
105
105
  return result
106
106
 
107
+ __name__ = 'functions'
108
+
107
109
  __all__ = ['chain', 'tap', 'tmap']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: functionalthreading
3
- Version: 0.2.5
3
+ Version: 0.2.7
4
4
  Summary: 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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "functionalthreading"
3
- version = "0.2.5"
3
+ version = "0.2.7"
4
4
  authors = [
5
5
  { name="Richard Tong", email="richytong@gmail.com" },
6
6
  ]