Remove outdated motivation for short module names.

This commit is contained in:
Guido van Rossum 2015-10-20 20:24:08 -07:00
parent c5270848fe
commit e0e78d4b74
1 changed files with 0 additions and 6 deletions

View File

@ -758,12 +758,6 @@ used in the module name if it improves readability. Python packages
should also have short, all-lowercase names, although the use of
underscores is discouraged.
Since module names are mapped to file names, and some file systems are
case insensitive and truncate long names, it is important that module
names be chosen to be fairly short -- this won't be a problem on Unix,
but it may be a problem when the code is transported to older Mac or
Windows versions, or DOS.
When an extension module written in C or C++ has an accompanying
Python module that provides a higher level (e.g. more object oriented)
interface, the C/C++ module has a leading underscore