From f3c90eacc479a4e0fc4651b4aef0d501a54f34f3 Mon Sep 17 00:00:00 2001 From: ccn Date: Mon, 28 Jun 2021 02:33:35 -0400 Subject: [PATCH] Explain the -m flag in more detail I learned how it works from here: https://docs.python.org/3/using/cmdline.html#cmdoption-m --- Misc/python.man | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Misc/python.man b/Misc/python.man index 10cb807c38a02c6..1fe2e22366c1101 100644 --- a/Misc/python.man +++ b/Misc/python.man @@ -161,9 +161,9 @@ Further restrictions may be imposed to prevent the user from injecting malicious code. .TP .BI "\-m " module-name -Searches +Adds the current directory to the start of .I sys.path -for the named module and runs the corresponding + and runs the corresponding .I .py file as a script. This terminates the option list (following options are passed as arguments to the module).