File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -238,13 +238,14 @@ def eval(
238238 ``'python'`` parser to retain strict Python semantics. See the
239239 :ref:`enhancing performance <enhancingperf.eval>` documentation for
240240 more details.
241- engine : {'python', 'numexpr'}, default 'numexpr'
241+ engine : {'python', 'numexpr'}, optional, default None
242242
243243 The engine used to evaluate the expression. Supported engines are
244244
245245 - None : tries to use ``numexpr``, falls back to ``python``
246- - ``'numexpr'`` : This default engine evaluates pandas objects using
247- numexpr for large speed ups in complex expressions with large frames.
246+ - ``'numexpr'`` : This is the default engine when ``numexpr`` is installed.
247+ Evaluates pandas objects using numexpr for large speed ups in complex
248+ expressions with large frames.
248249 - ``'python'`` : Performs operations as if you had ``eval``'d in top
249250 level python. This engine is generally not that useful.
250251
You can’t perform that action at this time.
0 commit comments