Skip to content

Commit 4a5c839

Browse files
committed
Changing lib.pyx to highlight an issue with astype_unicode (not a fix)
1 parent f16e04b commit 4a5c839

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/_libs/lib.pyx

+2
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,8 @@ def astype_unicode(arr: ndarray, skipna: bool=False) -> ndarray[object]:
577577
for i in range(n):
578578
arr_i = arr[i]
579579

580+
print(f'{arr_i} is null? {checknull(arr_i)}')
581+
580582
if not (skipna and checknull(arr_i)):
581583
arr_i = unicode(arr_i)
582584

0 commit comments

Comments
 (0)