diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-07 19:57:46 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-07 19:57:46 +0000 |
commit | 046dd2b5f082e1f3975d7cea07826db45c72c259 (patch) | |
tree | f18019c72efc3d13f0609ee2f52a5d06162faf52 /Python/sysmodule.c | |
parent | 493fd252e4f7fd49dc2dc2923dbcc1dae9a23c9c (diff) | |
download | cpython-046dd2b5f082e1f3975d7cea07826db45c72c259.tar.gz |
Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 4c87d54c7c..f1da9730c4 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1510,7 +1510,7 @@ _PySys_Init(void) PyLong_FromLong(PY_VERSION_HEX)); svnversion_init(); SET_SYS_FROM_STRING("subversion", - Py_BuildValue("(UUU)", "CPython", branch, + Py_BuildValue("(sss)", "CPython", branch, svn_revision)); SET_SYS_FROM_STRING("dont_write_bytecode", PyBool_FromLong(Py_DontWriteBytecodeFlag)); |