[Python-Dev] Expose Subversion revision number to Python
"Martin v. Löwis"
martin at v.loewis.de
Sat Dec 17 11:32:54 CET 2005
Armin Rigo wrote:
> If you meant that the following situation is possible:
>
> trunk$ svn up
> At revision xxx.
> trunk$ svn info
> Last Changed Rev: 10000
> trunk$ cd Python
> trunk/python$ svn info
> Last Changed Rev: 10001
>
> then I object. As far as I can tell this is not possible.
It is possible:
svn up -r 10000
cd Python
svn up -r 10001
(assuming Python changed in 10001).
Regards,
Martin
More information about the Python-Dev
mailing list