gpt4 book ai didi

python - 如何获取 python 解释器完整的 argv 命令行选项?

转载 作者:行者123 更新时间:2023-12-01 04:51:17 25 4
gpt4 key购买 nike

正如我们从文档中了解到的:

-c If this option is given, the first element of sys.argv will be "-c" and the current directory will be added to the start of sys.path (allowing modules in that directory to be imported as top level modules).

如何获得完整的解释器命令行选项?我需要它来解决这个问题:

https://github.com/mitsuhiko/werkzeug/blob/f50bdc04cf1c8d71d12d13a0c8ef2878477f4d24/werkzeug/_reloader.py#L141

如果我启动 werkzeug 开发服务器,那么它将在 fork 上丢失 -c cmd 选项。我想修补 werkzeug,但找不到如何获得实际选项。

如果你想知道为什么我需要这个 - 我想在manage.py之前预先执行一些想要解析sys.argv的代码。而且我认为 werkzeug 方法是不正确的,因为它在极端情况下不起作用。

最佳答案

If I start werkzeug development server, then it will lost -c cmd option on fork.

首先,进程并不是简单的fork。调用新的 Python 解释器。

it will lost -c cmd 是什么意思? ?事实上cmd argv 中的字符串消失了?即:

$ python -c "import sys; print(sys.argv)"
['-c']

确实,cmd无法从 sys.argv 内部访问字符串。 This相关文档:

If the command was executed using the -c command line option to the interpreter, argv[0] is set to the string '-c'

文档没有对实际命令字符串进行评论。虽然该命令字符串显然作为参数“发送”给 Python 解释器可执行文件,但 CPython 实现似乎并未在 sys.argv 中公开此信息。 。我想如果不改变sysmodule.c的源代码就没有办法重建这些信息。 。所以,如果您认为您依赖于提取 cmd ——你不应该!您需要找到另一种方法来注入(inject)此信息。

编辑:

实际的命令字符串在 Modules/main.c 中消耗。在功能Py_Main() :

wcscpy(command, _PyOS_optarg);

这个command是稍后在 main.c 中执行的内容.

命令行参数通过 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind); 处理,依次调用 makeargvobject()sysmodule.c 。后一个函数将 for (i = 0; i < argc; i++) {} 中的二进制参数数据转换为 Python unicode 对象(至少在 Python 3 中是这样)。类似循环。所以,argc必须(故意)关闭 -1 以忽略所述循环中的命令。

也就是说,删除命令参数的神奇之处在于设置 _PyOS_optind ,以便后续调用PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);建议参数计数比实际小(1)。

我并没有真正遵循,但我猜这些行中的递减是有原因的:

if (command != NULL) {
/* Backup _PyOS_optind and force sys.argv[0] = '-c' */
_PyOS_optind--;
argv[_PyOS_optind] = L"-c";
}

编辑2:

验证了 _PyOS_optind 的关键作用这里是当前 Python 3 技巧的以下补丁:

diff --git a/Modules/main.c b/Modules/main.c
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -679,9 +679,11 @@
}

if (command != NULL) {
/* Backup _PyOS_optind and force sys.argv[0] = '-c' */
_PyOS_optind--;
- argv[_PyOS_optind] = L"-c";
+ _PyOS_optind = 0;
+ //argv[_PyOS_optind] = L"-c";
}

if (module != NULL) {

测试:

 $ ./python -c "import sys; print(sys.argv)"
['./python', '-c', 'import sys; print(sys.argv)']

关于python - 如何获取 python 解释器完整的 argv 命令行选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28412903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com