Re: Keyword argument 'from'; invalid syntax

2007-07-25 Thread Kai Kuehne
Hi Steven, On 7/26/07, Steven D'Aprano <[EMAIL PROTECTED]> wrote: > On Thu, 26 Jul 2007 03:33:20 +0200, Kai Kuehne wrote: > Try this: > > magnolia.bookmarks_find(**d) This works perfectly, thank you guys. Kai -- http://mail.python.org/mailman/listinfo/python-list

Keyword argument 'from'; invalid syntax

2007-07-25 Thread Kai Kuehne
Hi list! I'm using pygmalion (magnolia api access lib) and want to use the following method that it is offering: magnolia.bookmarks_find(person='user', from=some_datetime) As you may noticed, from is a keyword argument and so I get the following error message from python: File "", line 1

delicious.py 0.2.5: Patch to solve the 401 issue

2007-07-01 Thread Kai Kuehne
Hi, I just wanted to mention that I wrote a patch for delicious.py 0.2.5 that solves the 401 "bug". The delicious guys changed their api to use ssl and stuff. I already sent the patch to the author, but in case you need the library asap (as I did) you can apply it and it should work. Greetings Ka

Overwrite only one function with property()

2006-11-18 Thread Kai Kuehne
Hi list! It is possible to overwrite only one function with the property-function? x = property(getx, setx, delx, 'doc') I just want to overwrite setx, but when I set the others to None, I can't read and del the member. Any ideas or is this not possible? Thank you! Kai -- http://mail.python.org