Results 802 comments of Julian Rohrhuber

Actually, there may be a bug, but a different one than you are describing, so I reopen …

Would it be possible to wrap this post in an error object? Then the posting could be handled from within sclang.

Planned for QT 5.1, as we'll soon update to QT5, it is only as far away as voice over is for QT. http://qt-project.org/forums/viewthread/18953

> From my experience of this feature in Python one rarely uses the one w/o the other b/c it allows to hijack/overload any method call and provides... I see. Well...

Thank you for the explanation. I will try to make sense of the syntax for discussion. The token `*` is made sense of in three different ways: 1. if it...

I see, so this sh/wouldn't work:`*meow(cat, args, kwargs)`

> From my experience of this feature in Python one rarely uses the one w/o the other b/c it allows to hijack/overload any method call and provides a way to...

Yes, I also thought it is just there already, just in a different syntax. ```python def save(self, *args, **kwargs): if self.image: small=rescale_image(self.image,width=100,height=100) self.image_small=SimpleUploadedFile(name,small_pic) super(Model, self).save(*args, **kwargs) ``` ```supercollider // pseudocode...

> [](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.plot.html) > > > it could be implemented in the class library. > > Oh, this is very cool! I wonder if there is a way to combine this...