示例#1
0
 def __init__(self, space, intvalue):
     check_regular_int(intvalue)
     self.intvalue = intvalue
示例#2
0
 def set_intvalue(self, intvalue):
     check_regular_int(intvalue)
     self.intvalue = intvalue
示例#3
0
 def __init__(self, space, intvalue):
     check_regular_int(intvalue)
     self.intvalue = intvalue
示例#4
0
文件: values.py 项目: rjnw/pycket
 def __init__(self, val):
     if not we_are_translated():
         # this is not safe during translation
         assert isinstance(val, int)
     check_regular_int(val)
     self.value = val
示例#5
0
 def set_intvalue(self, intvalue):
     check_regular_int(intvalue)
     self.intvalue = intvalue
示例#6
0
文件: values.py 项目: vishesh/pycket
 def __init__(self, val):
     if not we_are_translated():
         # this is not safe during translation
         assert isinstance(val, int)
     check_regular_int(val)
     self.value = val