diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-09-04 12:01:04 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-09-04 12:01:04 -0400 |
commit | d989cdb36f50785d23b07939ba8b4fc2b68cf02a (patch) | |
tree | 696f25e6e8108f7e74442c343eb1a64179162379 /docs/deprecated | |
parent | 41df8fea702b80fc2bfa1828a01f0b5b89bc36ac (diff) | |
parent | aede9e035dde34b0f2a6e9fe3a3bd87d4b9d7370 (diff) | |
download | python-setuptools-git-d989cdb36f50785d23b07939ba8b4fc2b68cf02a.tar.gz |
Merge https://github.com/pypa/distutils into remove-lib2to3-usage
Diffstat (limited to 'docs/deprecated')
-rw-r--r-- | docs/deprecated/distutils/apiref.rst | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/deprecated/distutils/apiref.rst b/docs/deprecated/distutils/apiref.rst index 40a360dd..f721fc16 100644 --- a/docs/deprecated/distutils/apiref.rst +++ b/docs/deprecated/distutils/apiref.rst @@ -1941,24 +1941,6 @@ Subclasses of :class:`Command` must define the following methods. .. class:: build_py -.. class:: build_py_2to3 - - Alternative implementation of build_py which also runs the - 2to3 conversion library on each .py file that is going to be - installed. To use this in a setup.py file for a distribution - that is designed to run with both Python 2.x and 3.x, add:: - - try: - from distutils.command.build_py import build_py_2to3 as build_py - except ImportError: - from distutils.command.build_py import build_py - - to your setup.py, and later:: - - cmdclass = {'build_py': build_py} - - to the invocation of setup(). - :mod:`distutils.command.build_scripts` --- Build the scripts of a package ========================================================================= |