From 2a7efa324274a54fe0e5480cae1438d8294b9ec3 Mon Sep 17 00:00:00 2001 From: Matt Harding Date: Mon, 2 May 2022 16:01:03 +0100 Subject: Fix typo in Programming FAQ (#92083) I believe the word "with" was missing here. --- Doc/faq/programming.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index da011cc..f87eaff 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. -- cgit v0.12