|
|
|
|
|
by irahul
5132 days ago
|
|
> The tooling around dynamic languages is almost laughably primitive and limited in comparison. Somethings just can't be done. class Foo:
def foo():
pass
def bar(f):
f.foo
If you re-factor Foo.foo to Foo.renamed, there is no way to know if the call in bar should be re-named as well. |
|