[issue11439] subversion keyword breakage

2011-07-28 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset f15442543e24 by Senthil Kumaran in branch '2.7': Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with a high number so that code relying on them does not break.

[issue11439] subversion keyword breakage

2011-07-28 Thread Senthil Kumaran
Senthil Kumaran sent...@uthcode.com added the comment: Thanks for the patch, Neil. -- nosy: +orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11439 ___

[issue11439] subversion keyword breakage

2011-07-05 Thread Neil Muller
Neil Muller drnlmuller+b...@gmail.com added the comment: SVN_Revision.diff replaces the remaining $Revision$ keywords in 2.7 with the values from the last SVN checkout I have. This seems the correct minimal fix for the issues caused by code parsing the revision tag in Python 2. I've left the

[issue11439] subversion keyword breakage

2011-07-05 Thread Neil Muller
Neil Muller drnlmuller+b...@gmail.com added the comment: This patch removes or replaces a number SVN keywords which aren't buried in comments. I've removed '__revision__ = $Id$' cases - mainly present in distutils - as no-one appears to using these. I've replaced values in tarfile.py, but

[issue11439] subversion keyword breakage

2011-06-20 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Building matplotlib with the 2.7.2 release fails due to this issue: Traceback (most recent call last): File setup.py, line 162, in module if check_for_tk() or (options['build_tkagg'] is True): File

[issue11439] subversion keyword breakage

2011-06-01 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11439 ___ ___ Python-bugs-list

[issue11439] subversion keyword breakage

2011-03-19 Thread Skip Montanaro
Changes by Skip Montanaro s...@pobox.com: -- nosy: -skip.montanaro ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11439 ___ ___ Python-bugs-list

[issue11439] subversion keyword breakage

2011-03-16 Thread Neil Muller
Neil Muller drnlmuller+b...@gmail.com added the comment: This also affects a number of files under Lib, including some that set their version using $Revision$. Since I stumbled on this issue by encountering some code that checks the version string in tkinker breaking, this is an issue that

[issue11439] subversion keyword breakage

2011-03-16 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: I've also looked at the keyword extension, but for example HeadURL does not seem to be supported by default: http://comments.gmane.org/gmane.comp.version-control.mercurial.devel/31214 -- ___

[issue11439] subversion keyword breakage

2011-03-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: These verbose numbers don't seem to serve a purpose, they should simply be removed (or replaced by a static, non-moving number higher than the highest svn rev). The keyword extension is generally frown upon, because it introduces complexity,

[issue11439] subversion keyword breakage

2011-03-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: version numbers, not verbose numbers, sorry. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11439 ___

[issue11439] subversion keyword breakage

2011-03-08 Thread Stefan Krah
New submission from Stefan Krah stefan-use...@bytereef.org: 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 =

[issue11439] subversion keyword breakage

2011-03-08 Thread Skip Montanaro
Changes by Skip Montanaro s...@pobox.com: -- nosy: +skip.montanaro ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11439 ___ ___ Python-bugs-list

[issue11439] subversion keyword breakage

2011-03-08 Thread Skip Montanaro
Skip Montanaro s...@pobox.com added the comment: See also issue 11421. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11439 ___ ___