diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-05-22 22:03:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 22:03:09 (GMT) |
commit | 2a1e6698b10a7b58c6ac66429de0f51cb739da35 (patch) | |
tree | 723cdfab0620f81fc84eee692dbe75a67ef20271 /Doc/faq/windows.rst | |
parent | 220dd80a2671f57486055955d5422163cf73ed33 (diff) | |
download | cpython-2a1e6698b10a7b58c6ac66429de0f51cb739da35.zip cpython-2a1e6698b10a7b58c6ac66429de0f51cb739da35.tar.gz cpython-2a1e6698b10a7b58c6ac66429de0f51cb739da35.tar.bz2 |
bpo-30757: Improve "How to make stand-alone binaries" FAQ (GH-26309)
Co-authored-by: denfromufa <denfromufa@users.noreply.github.com>
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Diffstat (limited to 'Doc/faq/windows.rst')
-rw-r--r-- | Doc/faq/windows.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst index 186dac2..0153a4f 100644 --- a/Doc/faq/windows.rst +++ b/Doc/faq/windows.rst @@ -140,9 +140,8 @@ offender. How do I make an executable from a Python script? ------------------------------------------------- -See `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/>`_ and -`py2exe <http://www.py2exe.org/>`_, both are distutils extensions -that allow you to create console and GUI executables from Python code. +See :ref:`faq-create-standalone-binary` for a list of tools that can be used to +make executables. Is a ``*.pyd`` file the same as a DLL? |