On Fri, May 8, 2009 at 5:09 PM, Steinar Bang <[email protected]> wrote: > The line was added in version 35947, if that rings any bells...? > > http://svn.collab.net/viewvc/svn/trunk/contrib/client-side/svnmerge/svnmerge.py?r1=32857&r2=35947
I guess that puts the blame pretty squarely on me. That's an generator expression, which I *thought* was supported in Py2.3. Does Py2.3 support list comprehensions? What do you get from >>> print "|".join(str(x) for x in range(10)) >>> print "|".join([str(x) for x in range(10)]) Dustin -- Open Source Storage Engineer http://www.zmanda.com _______________________________________________ Svnmerge mailing list [email protected] http://www.orcaware.com/mailman/listinfo/svnmerge
