Cython has moved to github.

cython-devel

view tests/compile/ctypedef_public_class_T355.pyx @ 2118:97069bd04411

Ticket #355 - ctypedef class ordering
author Robert Bradshaw <robertwb@math.washington.edu>
date Thu Sep 10 19:33:50 2009 -0700 (2 years ago)
parents d47a91eb939c
children
line source
1 ctypedef public class Time [type MyTime_Type, object MyTimeObject]:
2 def __init__(self, seconds):
3 self.seconds = seconds
5 ctypedef public class Event [type MyEvent_Type, object MyEventObject]:
6 def __init__(self, Time time):
7 self.time = time