Re: [Pythonsound-devel] Bug fixes against latest CVS
Status: Beta
Brought to you by:
mupuxeddu
|
From: Maurizio U. P. <um...@ti...> - 2001-10-11 12:23:08
|
On Wed, 10 Oct 2001, Paul Winkler wrote: > I'd consider making cached_onset and its friends semi-private, e.g. > self._cached_onset. The Aggregate's namespace is getting pretty > crowded, and those are attributes that the user should probably not > touch directly. I agree. I turned self.*0 in self._* etc and self.cached_* in self._cached_*. > > > - I assume flatten() is supposed to do the same thing as unwind()? > > > > It makes the Aggregate flat and returns nothing. > > Aha, so it's like an in-place unwind(). Done. I added it when committing your patch. > login name: slinkp 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. Why do you like a = 1; b = 2 instead of a, b = 1, 2 ? If you really don't like multiple assignments, let's use a = 1 b = 2 ok? Thank you. Maurizio Umberto Puxeddu. |