Fix a spelling typo and add a little markup.

This commit is contained in:
Brett Cannon 2008-03-08 20:33:19 +00:00
parent 70b0fcd0e6
commit 70cf069672
1 changed files with 3 additions and 2 deletions

View File

@ -84,8 +84,9 @@ Core language
* Imports [#pep328]_
+ Imports will be absolute by default. [done]
+ Relative imports must be explicitly specified. [done]
+ Indirection entries in sys.modules (i.e., a value of None for
A.string means to use the top-level sring module) will not be supported.
+ Indirection entries in ``sys.modules`` (i.e., a value of ``None`` for
``A.string`` means to use the top-level ``string`` module) will not be
supported.
* __init__.py might become optional in sub-packages? __init__.py will still
be required for top-level packages.
* Cleanup the Py_InitModule() variants {,3,4} (also import and parser APIs)