##// END OF EJS Templates
Merge pull request #12739 from farisachugthai/conda
Merge pull request #12739 from farisachugthai/conda

File last commit:

r26034:4920c37a
r26285:6a7c4880 merge
Show More
pycompat.rst
32 lines | 1.2 KiB | text/x-rst | RstLexer
Thomas Kluyver
Document that py3compat is deprecated...
r23233 :orphan:
Thomas Kluyver
Document single codebase Python 3 compatibility
r13388 Writing code for Python 2 and 3
===============================
Thomas Kluyver
Manually document py3compat module....
r14087 .. module:: IPython.utils.py3compat
:synopsis: Python 2 & 3 compatibility helpers
Thomas Kluyver
Document that py3compat is deprecated...
r23233 IPython 6 requires Python 3, so our compatibility module
Hugo
Note py3compat is deprecated and will be removed in the future
r24011 ``IPython.utils.py3compat`` is deprecated and will be removed in a future
version. In most cases, we recommend you use the `six module
farisachugthai
Fix broken link in documentation
r26034 <https://six.readthedocs.io/>`__ to support compatible code. This is widely
Hugo
Note py3compat is deprecated and will be removed in the future
r24011 used by other projects, so it is familiar to many developers and thoroughly
battle-tested.
Thomas Kluyver
Manually document py3compat module....
r14087
Thomas Kluyver
Document that py3compat is deprecated...
r23233 Our ``py3compat`` module provided some more specific unicode conversions than
those offered by ``six``. If you want to use these, copy them into your own code
from IPython 5.x. Do not rely on importing them from IPython, as the module may
be removed in the future.
Thomas Kluyver
Manually document py3compat module....
r14087
Thomas Kluyver
Document that py3compat is deprecated...
r23233 .. seealso::
Thomas Kluyver
Manually document py3compat module....
r14087
Thomas Kluyver
Document that py3compat is deprecated...
r23233 `Porting Python 2 code to Python 3 <https://docs.python.org/3/howto/pyporting.html>`_
Official information in the Python docs.
Thomas Kluyver
Manually document py3compat module....
r14087
farisachugthai
Fix broken link in documentation
r26034 `Python-Modernize <https://python-modernize.readthedocs.io/en/latest/>`_
Thomas Kluyver
Document that py3compat is deprecated...
r23233 A tool which helps make code compatible with Python 3.
Thomas Kluyver
Manually document py3compat module....
r14087
farisachugthai
Fix broken link in documentation
r26034 `Python-Future <https://python-future.org/>`_
Thomas Kluyver
Document that py3compat is deprecated...
r23233 Another compatibility tool, which focuses on writing code for Python 3 and
making it work on Python 2.