Commit 555a5640 authored by Stefan Behnel's avatar Stefan Behnel

new test for ticket #354

parent 680bd22d
cdef class Test:
"""
>>> t = Test(True)
>>> t.some_ro_bool
True
>>> t.some_public_bool
True
"""
cdef public bint some_public_bool
cdef readonly bint some_ro_bool
def __init__(self, bint boolval):
self.some_ro_bool = boolval
self.some_public_bool = boolval
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment