Re: Module naming convention about StringIO

2009-10-15 Thread Terry Reedy
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,

Re: Module naming convention about StringIO

2009-10-15 Thread Tim Golden
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

Module naming convention about StringIO

2009-10-15 Thread Peng Yu
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