Solving the invalid name for Python module warning in PyDev
See http://docs.python.org/tutorial/modules.html for information about modules.
To find out what characters are valid, have a look at the syntax of the import
statement. It shows you that a module name needs to be a valid identifier which has the following rule:
identifier ::= (letter|"_") (letter | digit | "_")*