diff --git a/docs/source/development/pycompat.rst b/docs/source/development/pycompat.rst index 6062d1a..6023e37 100644 --- a/docs/source/development/pycompat.rst +++ b/docs/source/development/pycompat.rst @@ -10,7 +10,7 @@ Writing code for Python 2 and 3 IPython 6 requires Python 3, so our compatibility module ``IPython.utils.py3compat`` is deprecated and will be removed in a future version. In most cases, we recommend you use the `six module -`__ to support compatible code. This is widely +`__ to support compatible code. This is widely used by other projects, so it is familiar to many developers and thoroughly battle-tested. @@ -24,9 +24,9 @@ be removed in the future. `Porting Python 2 code to Python 3 `_ Official information in the Python docs. - `Python-Modernize `_ + `Python-Modernize `_ A tool which helps make code compatible with Python 3. - `Python-Future `_ + `Python-Future `_ Another compatibility tool, which focuses on writing code for Python 3 and making it work on Python 2.