Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 where

foo = 1

bar = foo

where(bar) # bar->foo from example.py:4
```