Skip to content

Commit

Permalink
Merge branch 'master' into sanitizefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted authored Sep 25, 2023
2 parents 58fbb6f + eaa520e commit e65bfd5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion numexpr/tests/test_numexpr.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import numpy as np
from numpy import (
array, arange, empty, zeros, int32, int64, uint16, complex_, float64, rec,
copy, ones_like, where, alltrue, linspace,
copy, ones_like, where, all as alltrue, linspace,
sum, prod, sqrt, fmod, floor, ceil,
sin, cos, tan, arcsin, arccos, arctan, arctan2,
sinh, cosh, tanh, arcsinh, arccosh, arctanh,
Expand Down Expand Up @@ -568,6 +568,8 @@ def test_sanitize(self):
evaluate('a*2e-5')
evaluate('a*2e+5')
evaluate('a*2E-5')
evaluate('a*2.0e5')
evaluate('a*2.2e5')
evaluate('2.+a')

# pass .real and .imag
Expand Down

0 comments on commit e65bfd5

Please sign in to comment.