Python启动横幅在哪里定义?

时间:2013-05-02 03:56:06

标签: python python-3.x

我正在为我的系统编译几个不同版本的Python,我想知道源在哪里定义了启动横幅,所以我可以为每个版本更改它。例如,当解释器启动时,它会显示

Python 3.3.1 (default, Apr 28 2013, 10:19:42) 
[GCC 4.7.2 20121109 (Red Hat 4.7.2-8)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 

我想将字符串default更改为其他内容以表明我正在使用哪个版本,但我也对整个shebang如何组装感兴趣。这定义在哪里?

2 个答案:

答案 0 :(得分:14)

让我们用grep进入球场。我不打算搜索default,因为我会得到太多结果,但我会尝试Type "Help",这不应该出现太多次。如果它是C字符串,则引号将被转义。我们应该首先查找C字符串,然后再查找Python字符串。

Python $ grep 'Type \\"help\\"' . -Ir
./Modules/main.c:    "Type \"help\", \"copyright\", \"credits\" or \"license\" " \

位于Modules/main.c,位于Py_Main()。更多挖掘为我们提供了这条线:

fprintf(stderr, "Python %s on %s\n",
    Py_GetVersion(), Py_GetPlatform());

由于“on”位于格式字符串中,Py_GetPlatform()必须为linuxPy_GetVersion()必须提供我们想要的字符串...

Python $ grep Py_GetVersion . -Irl
...
./Python/getversion.c
...

看起来很有希望......

PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
              PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());

我们必须要Py_GetBuildInfo(),因为它在括号内......

Python $ grep Py_GetBuildInfo . -Irl
...
./Modules/getbuildinfo.c
...

这看起来有点太明显了。

const char *
Py_GetBuildInfo(void)
{
    static char buildinfo[50 + sizeof(HGVERSION) +
                          ((sizeof(HGTAG) > sizeof(HGBRANCH)) ?
                           sizeof(HGTAG) : sizeof(HGBRANCH))];
    const char *revision = _Py_hgversion();
    const char *sep = *revision ? ":" : "";
    const char *hgid = _Py_hgidentifier();
    if (!(*hgid))
        hgid = "default";
    PyOS_snprintf(buildinfo, sizeof(buildinfo),
                  "%s%s%s, %.20s, %.9s", hgid, sep, revision,
                  DATE, TIME);
    return buildinfo;
}

因此,default是Mercurial分支的名称。通过检查makefile,我们可以发现它来自宏HGTAG。名为HGTAG的makefile变量生成变量,该变量作为命令运行。所以,

简单解决方案

构建Python时,

Python $ ./configure
Python $ make HGTAG='echo awesome'
Python $ ./python
Python 3.2.3 (awesome, May  1 2013, 21:33:27) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

答案 1 :(得分:0)

如果您在构建之前添加mercurial标记,那么default将替换为您的代码名称(来源:Modules/getbuildinfo.c_Py_hgidentifier()

基本上它似乎选择名称default,因为这是分支的名称。看起来解释器是使用标记名称(如果存在)构建的,或者如果当前工作副本上没有标记(除tip之外),则使用分支的名称。