Skip to content

Commit 6d7834d

Browse files
committed
1 parent 1ebfd8a commit 6d7834d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/computation/ops.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323

2424
_unary_math_ops = ('sin', 'cos', 'exp', 'log', 'expm1', 'log1p',
2525
'sqrt', 'sinh', 'cosh', 'tanh', 'arcsin', 'arccos',
26-
'arctan', 'arccosh', 'arcsinh', 'arctanh', 'abs', 'log10')
26+
'arctan', 'arccosh', 'arcsinh', 'arctanh', 'abs', 'log10',
27+
'floor', 'ceil')
2728
_binary_math_ops = ('arctan2',)
2829
_mathops = _unary_math_ops + _binary_math_ops
2930

0 commit comments

Comments
 (0)