Peng Yu wrote:
It says on http://www.python.org/dev/peps/pep-0008/
Package and Module Names
Modules should have short, all-lowercase names. Underscores can be used
in the module name if it improves readability. Python packages should
also have short, all-lowercase names,
Peng Yu wrote:
It says on http://www.python.org/dev/peps/pep-0008/
... don't get too hung up on things like this. Just
use the modules.
But StringIO does not following this convention. Although on the same
page, it also mentions the following. However, since StringIO is in
the library, shall
It says on http://www.python.org/dev/peps/pep-0008/
Package and Module Names
Modules should have short, all-lowercase names. Underscores can be used
in the module name if it improves readability. Python packages should
also have short, all-lowercase names, although the use