From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 2 May 2022 15:20:09 +0000 (-0700) Subject: Fix typo in Programming FAQ (GH-92083) X-Git-Tag: v3.9.13~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=090a0f6ffbde8f9e4d7bb57b29da140c6d4c8db3;p=thirdparty%2FPython%2Fcpython.git Fix typo in Programming FAQ (GH-92083) I believe the word "with" was missing here. (cherry picked from commit 2a7efa324274a54fe0e5480cae1438d8294b9ec3) Co-authored-by: Matt Harding --- diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 3cf041e1a423..c2656382aad7 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -78,7 +78,7 @@ set of modules required by a program and bind these modules together with a Python binary to produce a single executable. One is to use the freeze tool, which is included in the Python source tree as -``Tools/freeze``. It converts Python byte code to C arrays; a C compiler you can +``Tools/freeze``. It converts Python byte code to C arrays; with a C compiler you can embed all your modules into a new program, which is then linked with the standard Python modules.