You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be awesome to have a way to do inspection of python code. The use case is that when browsing code, it is often a big benefit to be able to go to the declaration of a function/variable/class, and also be able to see where this function/variable/class is in use. Thus:
Somehow setup some workers to do inspection on code (use inspect module)
Store this metadata in redis (unless the inspection performance is sub par, then maybe something more persistent is more feasible)
The text was updated successfully, but these errors were encountered:
It would be awesome to have a way to do inspection of python code. The use case is that when browsing code, it is often a big benefit to be able to go to the declaration of a function/variable/class, and also be able to see where this function/variable/class is in use. Thus:
inspect
module)The text was updated successfully, but these errors were encountered: