On Tue, Nov 2, 2010 at 3:29 PM, Vitja Makarov <[email protected]> wrote: > 2010/11/3 Robert Bradshaw <[email protected]>: >> On Tue, Nov 2, 2010 at 3:09 PM, Vitja Makarov <[email protected]> >> wrote: >>> Hmm... yes patch is here... I run fails on classmethod tests ;( don't >>> know how to solve this yet but all others are okay. >> >> Thanks! Did you want to post it to trac? It's preferable to use "hg >> export" so we get some metadata attached to the patch. (You can turn >> your Cython into a working directory by doing "make repo".) >> > > Ok I'll try... I'm not very familar with hg so I have to do commit then > export?
Yes, exactly. You might also want to set up a ~/.hgrc file with [ui] username = name <email> for the commit message (otherwise it just uses your logged-in username). >>> This patch also includes some tests for __metaclass__ and one more >>> test for staticmethod >> >> I'll try to find some time to look at the staticmethod issue, but >> won't complain if someone beats me to it :). >> > > Just one more case when staticmethod is decorator, now it works) > > class class4: > �...@staticmethod > def plus1(a): > return a + 1 Good. - Robert _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
