Open sobolevn opened 4 months ago
globals() and locals() are both returning dict[str, Any]:
globals()
locals()
dict[str, Any]
inject only add two protected attributes to a function / type. So, we can say that it returns the object unchanged: T -> T.
inject
T -> T
globals()
andlocals()
are both returningdict[str, Any]
:inject
only add two protected attributes to a function / type. So, we can say that it returns the object unchanged:T -> T
.