Skip to content

Commit ed9ae5f

Browse files
committed
debug output
1 parent f91c8a5 commit ed9ae5f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/io/clipboard/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,8 @@ def lazy_load_stub_copy(text):
627627
"""
628628
global copy, paste
629629
copy, paste = determine_clipboard()
630+
print("*" * 40, " CLIPBOARDS ", "*" * 40)
631+
print(copy.__name__, paste.__name__)
630632
return copy(text)
631633

632634

@@ -649,6 +651,8 @@ def lazy_load_stub_paste():
649651
"""
650652
global copy, paste
651653
copy, paste = determine_clipboard()
654+
print("*" * 40, " CLIPBOARDS ", "*" * 40)
655+
print(copy.__name__, paste.__name__)
652656
return paste()
653657

654658

0 commit comments

Comments
 (0)