We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d785de commit 77c0563Copy full SHA for 77c0563
asv_bench/benchmarks/replace.py
@@ -19,6 +19,9 @@ def setup(self, inplace):
19
def time_fillna(self, inplace):
20
self.ts.fillna(0.0, inplace=inplace)
21
22
+ def peakmem_fillna(self, inplace):
23
+ self.ts.fillna(0.0, inplace=inplace)
24
+
25
def time_fillna_limit(self, inplace):
26
self.ts.fillna(0.0, inplace=inplace, limit=10 ** 5)
27
pandas/_libs/algos.pyx
@@ -1,4 +1,3 @@
1
-# cython: profile=True
2
import cython
3
from cython import Py_ssize_t
4
0 commit comments