Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bswck/refcause
Easily track which lines created objects and what variables (and where defined) refer to an object either directly or transitively.
https://github.com/bswck/refcause
Last synced: 24 days ago
JSON representation
Easily track which lines created objects and what variables (and where defined) refer to an object either directly or transitively.
- Host: GitHub
- URL: https://github.com/bswck/refcause
- Owner: bswck
- Created: 2024-06-23T18:21:49.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-23T18:41:16.000Z (5 months ago)
- Last Synced: 2024-06-23T19:37:55.770Z (5 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# refcause
Easily track which lines created objects and what variables (and where defined) refer to an object either directly or transitively.# Idea
```py
# example.py
from refcause import wherefoo = 1
bar = foo
where(bar) # bar->foo from example.py:4
```