Message130335
| 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:22 | skrah | set | recipients:
+ skrah, georg.brandl, pitrou |
| 2011年03月08日 15:10:22 | skrah | set | messageid: <1299597022.39.0.100246713924.issue11439@psf.upfronthosting.co.za> |
| 2011年03月08日 15:10:20 | skrah | link | issue11439 messages |
| 2011年03月08日 15:10:20 | skrah | create |
|