We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f91c8a5 commit ed9ae5fCopy full SHA for ed9ae5f
pandas/io/clipboard/__init__.py
@@ -627,6 +627,8 @@ def lazy_load_stub_copy(text):
627
"""
628
global copy, paste
629
copy, paste = determine_clipboard()
630
+ print("*" * 40, " CLIPBOARDS ", "*" * 40)
631
+ print(copy.__name__, paste.__name__)
632
return copy(text)
633
634
@@ -649,6 +651,8 @@ def lazy_load_stub_paste():
649
651
650
652
653
654
655
656
return paste()
657
658
0 commit comments