Roundup Tracker - Issues

Message3574

Author tobias-herp
Recipients richard, stefan, tobias-herp
Date 2009-02-22.23:43:07
Message-id <1235346189.32.0.89163657709.issue2550503@psf.upfronthosting.co.za>
In-reply-to
Maybe someone could apply this patch (updated to match rev 4159, minimal
changes); currently I can't do it myself...

BTW,

 from roundup.anypy.sets_ import set
 ...
 set(...)

should perform better than

 import sets
 sets.Set(...)

for at least two reasons:

- the builtin set type performs better than sets.Set
- dots are evaluated at run time
<http://wiki.python.org/moin/PythonSpeed/PerformanceTips#Avoidingdots...>
History
Date User Action Args
2009-02-22 23:43:09tobias-herpsetmessageid: <1235346189.32.0.89163657709.issue2550503@psf.upfronthosting.co.za>
2009-02-22 23:43:09tobias-herpsetrecipients: + tobias-herp, richard, stefan
2009-02-22 23:43:09tobias-herplinkissue2550503 messages
2009-02-22 23:43:09tobias-herpcreate