Why there are UglyCase method names in Google API Python libraries? [closed]
I just wonder why Google is using in API client libraries such UglyCase method names instead of existing_coding_standards? Actually, I am not happy to mess my PEP8 code with something like this (GetEditLink() ...wtf? class name?).
Well, quoting the PEP8 Code:
mixedCase is allowed only in contexts where that's already the prevailing style (e.g. threading.py), to retain backwards compatibility.
So either that, or they just like it better.
精彩评论