From: "David Hrbác(" <hrbac.c...@seznam.cz>

Hi,
ad 1) yes you are right, without bindings, svn 1.6.3 builds fine on
centos 4.x.
ad 2) libserf shloud be enough.

As to you python pathes, I suggest the different way.
Have some file, e.g. compat.py with
   def sorted(iterable, key=None, reverse=False):
       l = list(iterable)
       if key:
           l = [(key(i), i) for i in l]
       l.sort()
       if key:
           l = [i[1] for i in l]
       if reverse:
           l.reverse()
       return l
And finally only include:
from compat import sorted


To be honest, I cannot program Python, so if you are sure - I would vote for your code :-)
Will you do a new patch or should I make a new try with your code?

Regards,
Bjarne


_______________________________________________
suggest mailing list
suggest@lists.rpmforge.net
http://lists.rpmforge.net/mailman/listinfo/suggest

Reply via email to