Skip to content

Instantly share code, notes, and snippets.

View amir-abdi's full-sized avatar

Amir Abdi amir-abdi

View GitHub Profile
@amir-abdi
amir-abdi / l.txt
Last active December 12, 2022 09:23
✦ ❯ python foo/bar.py
[3] > /Users/amirabdi/pdb_like_a_pro/foo/bar.py(5)func3()
-> print('func1', sky, ocean, sea)
(Pdb++) l
1 # foo/bar.py
2
3 def func3(sky, ocean, sea):
4 breakpoint()
5 -> print('func1', sky, ocean, sea)
6