diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-20 05:33:53 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-20 05:33:53 (GMT) |
commit | 7598e18bf236a035fe16c62c0ca51290dfd21949 (patch) | |
tree | cf512a362e0c510c0f6362f64344175382b20191 | |
parent | f6813f60710933bf298739adc7348f154fb2c944 (diff) | |
download | cpython-7598e18bf236a035fe16c62c0ca51290dfd21949.zip cpython-7598e18bf236a035fe16c62c0ca51290dfd21949.tar.gz cpython-7598e18bf236a035fe16c62c0ca51290dfd21949.tar.bz2 |
Fix rst markup.
-rw-r--r-- | Doc/c-api/import.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.3.rst | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst index c3c8f42..270152e 100644 --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -76,7 +76,7 @@ Importing Modules UTF-8 encoded string instead of a Unicode object. .. versionchanged:: 3.3 - Negative values for **level** are no longer accepted. + Negative values for *level* are no longer accepted. .. c:function:: PyObject* PyImport_Import(PyObject *name) diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 2aa41f9..7d77472 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1928,7 +1928,7 @@ Porting Python code updated to use the full name of the module instead of just the tail of the name. -* The **index** argument to :func:`__import__` now defaults to 0 instead of -1 +* The *index* argument to :func:`__import__` now defaults to 0 instead of -1 and no longer support negative values. It was an oversight when :pep:`328` was implemented that the default value remained -1. If you need to continue to perform a relative import followed by an absolute import, then perform the @@ -1996,9 +1996,9 @@ Porting C code * :c:func:`PyImport_GetMagicNumber` now returns -1 upon failure. -* As a negative value for the **level** argument to :func:`__import__` is no +* As a negative value for the *level* argument to :func:`__import__` is no longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`. - This also means that the value of **level** used by + This also means that the value of *level* used by :c:func:`PyImport_ImportModuleEx` is now 0 instead of -1. |