On Wed, 2009-02-11 at 08:15 +0100, Felix Schwarz wrote:
> Hi,
> 
> The sets module is deprecated in Python 2.6 and 'set' is a built-in type since
> Python 2.4. However by applying this change the module becomes incompatible
> with Python 2.3. If it needs to be compatible, do this in the import:
> try:
>      set
> except NameError:
>      from sets import Set as set
> 
> Furthermore I found that the mailing list URL in the README is outdated.
> 

Felix,
 I've applied your patch to yum-utils, thanks.

-sv


_______________________________________________
Yum-devel mailing list
Yum-devel@lists.baseurl.org
http://lists.baseurl.org/mailman/listinfo/yum-devel

Reply via email to