[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset f3553d5083f8 by Benjamin Peterson in branch 'default': remove __version__s dependent on subversion keyword expansion (closes #12221) http://hg.python.org/cpython/rev/f3553d5083f8 -- resolution: -> fixed stage: -> committed/rejected status

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Benjamin Peterson
Benjamin Peterson added the comment: I've fixed the pyexpat.__version__ from segfaulting. The other ones are harmless and can be removed later. -- priority: release blocker -> normal ___ Python tracker __

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9c1116e582e3 by Benjamin Peterson in branch '2.7': simply use the Python version for pyexpat.__version__ #12221 http://hg.python.org/cpython/rev/9c1116e582e3 New changeset 9c23efa3f5c7 by Benjamin Peterson in branch '3.1': simply use the Python ver

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Stefan Krah
Stefan Krah added the comment: See also: Issue 11439 -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Matthias Klose
Changes by Matthias Klose : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Matthias Klose
New submission from Matthias Klose : Modules/pyexpat.c (get_version_string) has: static PyObject * get_version_string(void) { static char *rcsid = "$Revision$"; char *rev = rcsid; int i = 0; while (!isdigit(Py_CHARMASK(*rev))) ++rev; which segfaults, or has unexpected r