PyCQA / redbaron

Bottom-up approach to refactoring in python
http://redbaron.pycqa.org/
694 stars 74 forks source link

Fix a couple of typos in function/class names #145

Open duncf opened 7 years ago

duncf commented 7 years ago

Renames LiteralyEvaluable to LiterallyEvaluable and renames _get_list_attribute_is_member_off to _get_list_attribute_is_member_of.

This does change the API slightly. If users are checking isinstance(redbaron.LiteralyEvaluable) (for example), this change could break them. This is not a documented API, so I assume the guarantee of backwards compatibility does not apply, but if you think it should, we could easily add "LiteralyEvaluable = LiterallyEvaluable" to accept both spellings.