summaryrefslogtreecommitdiffstats
path: root/Doc/faq/programming.rst
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2021-04-26 01:10:05 (GMT)
committerGitHub <noreply@github.com>2021-04-26 01:10:05 (GMT)
commitd28b34695301ec99a9334ad8d69b6092f4f703d5 (patch)
treeec15379ab791e165cb13d1a767aa3ad5ef0b6c70 /Doc/faq/programming.rst
parentc0280532dc8cab184a48c97e03e41cc8807f383d (diff)
downloadcpython-d28b34695301ec99a9334ad8d69b6092f4f703d5.zip
cpython-d28b34695301ec99a9334ad8d69b6092f4f703d5.tar.gz
cpython-d28b34695301ec99a9334ad8d69b6092f4f703d5.tar.bz2
Fix broken links and improve stand-alone tools list in FAQ GH-22124
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r--Doc/faq/programming.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index ff78ca7..d00be24 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -90,11 +90,12 @@ then compiles the generated C code and links it with the rest of the Python
interpreter to form a self-contained binary which acts exactly like your script.
Obviously, freeze requires a C compiler. There are several other utilities
-which don't. One is Thomas Heller's py2exe (Windows only) at
+which don't:
- http://www.py2exe.org/
-
-Another tool is Anthony Tuininga's `cx_Freeze <https://anthony-tuininga.github.io/cx_Freeze/>`_.
+* `py2exe <http://www.py2exe.org/>`_ for Windows binaries
+* `py2app <https://github.com/ronaldoussoren/py2app>`_ for Mac OS X binaries
+* `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/>`_ for cross-platform
+ binaries
Are there coding standards or a style guide for Python programs?