abstract-math 0.0.0.15__py3-none-any.whl → 0.0.0.16__py3-none-any.whl

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.

Potentially problematic release.


This version of abstract-math might be problematic. Click here for more details.

@@ -77,13 +77,13 @@ def exp_it(base, *factors):
77
77
  exponent = reduce(operator.mul, f, 1.0)
78
78
  return float(b) ** exponent
79
79
 
80
- def exponential(value, *exp_factors):
80
+ def exponential(value, *exp):
81
81
  """
82
82
  Multiply `value` by 10 to the power of (product of exp_factors).
83
83
  e.g. exponential(5, 2, 3) → 5 * (10**(2*3)) == 5 * 1_000_000
84
84
  If you give no exp_factors, it just returns value.
85
85
  """
86
- power = exp_it(10, *exp_factors) or 1.0
86
+ power = exp_it(10, *exp) or 1.0
87
87
  return multiply_it(value, power)
88
88
 
89
89
  def get_proper_args(strings,*args,**kwargs):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abstract_math
3
- Version: 0.0.0.15
3
+ Version: 0.0.0.16
4
4
  Author: putkoff
5
5
  Author-email: partners@abstractendeavors.com
6
6
  Classifier: Development Status :: 3 - Alpha
@@ -0,0 +1,8 @@
1
+ abstract_math/__init__.py,sha256=3I0YJakDUyWD7qXpdRsaEsmcA7IxwcWhoyecvDfOE98,54
2
+ abstract_math/derive_tokens.py,sha256=Ba2hq3-W3NPmfko-Lf-58HfkBtl4kfN-GFuSZJMyiWM,4233
3
+ abstract_math/deriveit.py,sha256=Og8QtDGRrgGbmaHTh-jEusg35jUpb74DgzslsxZ_2iU,4271
4
+ abstract_math/safe_math.py,sha256=WIIiHELl3AqV2IdWlWd5Ca4TOD6qffeGNA33gJQqS6k,5378
5
+ abstract_math-0.0.0.16.dist-info/METADATA,sha256=C9JFxjf0rGKI9LaXkNbC1JvgGkie_TUsUkQO8fGaarc,1150
6
+ abstract_math-0.0.0.16.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
7
+ abstract_math-0.0.0.16.dist-info/top_level.txt,sha256=b7jOgD9c0U-CGH-l7yxhMPukzD40kMEQkQRV_sGyVfE,14
8
+ abstract_math-0.0.0.16.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- abstract_math/__init__.py,sha256=3I0YJakDUyWD7qXpdRsaEsmcA7IxwcWhoyecvDfOE98,54
2
- abstract_math/derive_tokens.py,sha256=Ba2hq3-W3NPmfko-Lf-58HfkBtl4kfN-GFuSZJMyiWM,4233
3
- abstract_math/deriveit.py,sha256=Og8QtDGRrgGbmaHTh-jEusg35jUpb74DgzslsxZ_2iU,4271
4
- abstract_math/safe_math.py,sha256=Rt5STOAuRRKhV1-YNfhX-OlhwVgRpk6XdN74UjnHvRc,5394
5
- abstract_math-0.0.0.15.dist-info/METADATA,sha256=EbxF2NusfTsxKEggOOsfpW-4Nyd7fXh_Z9pll8Yg4Oc,1150
6
- abstract_math-0.0.0.15.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
7
- abstract_math-0.0.0.15.dist-info/top_level.txt,sha256=b7jOgD9c0U-CGH-l7yxhMPukzD40kMEQkQRV_sGyVfE,14
8
- abstract_math-0.0.0.15.dist-info/RECORD,,