1# ticket: 373
2
3import math
4
5cdef class MyClass:
6    """
7    >>> x=MyClass()
8    4
9    """
10    def __cinit__(self, int arg=2*2):
11        print arg
12
13cdef class MyOtherClass:
14    """
15    >>> x=MyOtherClass()
16    8
17    """
18    def __cinit__(self, int arg=4*int(math.sqrt(4))):
19        print arg
20