Re: [Pythonsound-devel] Bug fixes against latest CVS
Status: Beta
Brought to you by:
mupuxeddu
|
From: Paul W. <sli...@ya...> - 2001-10-11 17:18:13
|
On Thu, Oct 11, 2001 at 02:20:21PM +0200, Maurizio Umberto Puxeddu wrote: > I agree. I turned self.*0 in self._* etc and self.cached_* in > self._cached_*. Sounds good. > I added slinkp to the team. > You can still send me patches if you feel more comfortable. Also when > doing large scale changes it is better to send me a patch at the moment. > For small bugs fixes and doctest you can directly commit them to the > repository. OK. For anything large, I will want to check with you anyway. > Why do you like > > a = 1; b = 2 > > instead of > > a, b = 1, 2 > > ? It's an unnecessary optimization. Feel free to ignore it. Got the idea from a comp.lang.py post: http://groups.google.com/groups?q=fastest+group:comp.lang.python&hl=en&as_qdr=m&rnum=2&selm=2261322.7AAxBmiTta%40lunix.schabi.de Looking at the timings in that post again, there's not enough speed difference (maybe 10%) to warrant it, unless we actually reach a point where such tiny improvements are worthwhile. I should follow my own advice and not optimize until it's clearly necessary. -- ................ paul winkler ................ custom calendars: http://www.calendargalaxy.com A member of ARMS: http://www.reacharms.com home page: http://www.slinkp.com |