Skip to content

Commit 25cb65a

Browse files
committed
Merge pull request #9440 from blbradley/period-refactor-to-cython
PERF: Move Period class and related functions to Cython module
2 parents 97e26c8 + 42b5416 commit 25cb65a

File tree

13 files changed

+1175
-1100
lines changed

13 files changed

+1175
-1100
lines changed

doc/source/whatsnew/v0.16.0.txt

+1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ Performance
208208
- Performance and memory usage improvements in ``merge`` when key space exceeds ``int64`` bounds (:issue:`9151`)
209209
- Performance improvements in multi-key ``groupby`` (:issue:`9429`)
210210
- Performance improvements in ``MultiIndex.sortlevel`` (:issue:`9445`)
211+
- Cythonized ``Period`` (:issue:`9440`)
211212

212213
Bug Fixes
213214
~~~~~~~~~

pandas/lib.pxd

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cdef bint is_null_datetimelike(v)

0 commit comments

Comments
 (0)