I was trying to understand why Python is considered a beautiful language. I was aimed at the beauty of PEP 8 ... and it was weird. In fact, he says that you can use any convention you need, just be consistent ... and suddenly I discovered some strange things in the main library:
request()
getresponse()
set_debuglevel()
endheaders()
http:
The following functions are new in Python 3.1. What part of the PEP 8 agreement is used here?
popitem()
move_to_end()
http:
So my question is: is PEP 8 used in the main library or not? Why is this so? Is there the same situation as in PHP where I can’t just remember the name of the function, because all the ways of writing the name are possible?
Why is PEP 8 not used in the main library even for new features?