On Tue, 2006-11-28 at 18:02 +0100, Dirk Meyer wrote: > I want to keep the order of the commands. And you need to copy > self._pending if you remove in it.
True, I should be iterating on a copy. > > - @required_states(STATE_OPEN, STATE_PLAYING, STATE_PAUSED) > > + @required_states(STATE_PLAYING, STATE_PAUSED) > > def seek(self, value, type=SEEK_RELATIVE): > > I want to seek between open and play. This is needed for resume. This does allow seek between open and play, and the seek is deferred until STATE_PLAYING. The previous code did not allow seek() during STATE_OPEN (it was a no-op). ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Freevo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-devel
