diff options
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/patches/patch-aa | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/python/patches/patch-aa b/lang/python/patches/patch-aa new file mode 100644 index 00000000000..b5981df0e39 --- /dev/null +++ b/lang/python/patches/patch-aa @@ -0,0 +1,11 @@ +--- Python/getversion.c.orig Tue Apr 13 23:58:15 1999 ++++ Python/getversion.c Tue Apr 13 23:58:22 1999 +@@ -39,7 +39,7 @@ + Py_GetVersion() + { + static char version[100]; +- sprintf(version, "%.10s (%.40s) %.40s", PY_VERSION, ++ sprintf(version, "%.10s (%.40s) %.50s", PY_VERSION, + Py_GetBuildInfo(), Py_GetCompiler()); + return version; + } |