|
|
|
|
|
by fulafel
34 days ago
|
|
It's unrelated to the lazy keyword. Instead it's another feature related to error messages. The example: >> 'hello'.toUpperCase()
Traceback (most recent call last):
...
AttributeError: 'str' object has no attribute 'toUpperCase'. Did you mean '.upper'?
|
|
I really appreciate them going out of their way to do this, being quite aware of the hidden complexity in doing it.