diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-23 19:35:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-23 19:35:33 (GMT) |
commit | 2eb65457a883d3f231c8e378911c4de2cd644b4c (patch) | |
tree | 56813f965df6a111ca86f55bd0cbd021efffeb1b /Modules | |
parent | f658e82daf46ff46567e9960ba6612d9ba21b9db (diff) | |
download | cpython-2eb65457a883d3f231c8e378911c4de2cd644b4c.zip cpython-2eb65457a883d3f231c8e378911c4de2cd644b4c.tar.gz cpython-2eb65457a883d3f231c8e378911c4de2cd644b4c.tar.bz2 |
Merged revisions 72871-72872 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72871 | benjamin.peterson | 2009-05-23 14:24:37 -0500 (Sat, 23 May 2009) | 1 line
support building with subversion 1.7 #6094
........
r72872 | benjamin.peterson | 2009-05-23 14:31:02 -0500 (Sat, 23 May 2009) | 1 line
reorder name
........
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/getbuildinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c index b673f3f..f4bd14a 100644 --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -48,5 +48,5 @@ _Py_svnversion(void) static const char svnversion[] = SVNVERSION; if (svnversion[0] != '$') return svnversion; /* it was interpolated, or passed on command line */ - return "exported"; + return "Unversioned directory"; } |