This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients georg.brandl, pitrou, skrah
Date 2011-03-08.15:10:20
SpamBayes Score 1.0357992e-11
Marked as misclassified No
Message-id <1299597022.39.0.100246713924.issue11439@psf.upfronthosting.co.za>
In-reply-to
Content
Several files rely on properly substituted subversion keywords. In
the cpython clone the keywords aren't substituted.


3.3 example:
============

$ find . -name "*.c" | xargs grep -n '"\$'
./Modules/_bsddb.c:102:static char *rcs_id = "$Id$";
./Modules/pyexpat.c:1818:    static char *rcsid = "$Revision$";
./Modules/getbuildinfo.c:28:#define SVNVERSION "$WCRANGE$$WCMODS?M:$"
./Modules/_hotshot.c:1402:    static char *rcsid = "$Revision$";
./Python/sysmodule.c:1147:static const char headurl[] = "$HeadURL$";


Python 3.3a0 (default:a69ef22b60e3, Mar  8 2011, 15:40:56) 
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyexpat
>>> pyexpat.__version__
'400s)'
>>> 


2.5 example:
============

Python does not build without at least changing Include/patchlevel.h
and Python/sysmodule.c.
History
Date User Action Args
2011-03-08 15:10:22skrahsetrecipients: + skrah, georg.brandl, pitrou
2011-03-08 15:10:22skrahsetmessageid: <1299597022.39.0.100246713924.issue11439@psf.upfronthosting.co.za>
2011-03-08 15:10:20skrahlinkissue11439 messages
2011-03-08 15:10:20skrahcreate