From 481841730c6e4d340af9db85e468df4ed94a6701 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Tue, 25 Jun 2013 23:23:24 -0700 Subject: [PATCH] Make Text and Data fields readable --- bootstrap/capnp.tmpl.pxd | 19 +- bootstrap/capnp.tmpl.pyx | 34 +- schema.cpp | 6603 +++++++++++++++++++------------------- schema.pyx | 52 +- schema_cpp.pxd | 51 +- setup.py | 5 - 6 files changed, 3483 insertions(+), 3281 deletions(-) diff --git a/bootstrap/capnp.tmpl.pxd b/bootstrap/capnp.tmpl.pxd index 481dc73..5fcd2ef 100644 --- a/bootstrap/capnp.tmpl.pxd +++ b/bootstrap/capnp.tmpl.pxd @@ -14,13 +14,24 @@ ctypedef int16_t Int16 ctypedef int32_t Int32 ctypedef int64_t Int64 -ctypedef char * Data ctypedef char * Object -ctypedef char * Text ctypedef bint Bool ctypedef float Float32 ctypedef double Float64 +cdef extern from "capnp/blob.h" namespace "::capnp": + cdef cppclass Data: + cppclass Reader: + char * begin() + size_t size() + cppclass Builder: + char * begin() + size_t size() + cdef cppclass Text: + cppclass Reader: + char * cStr() + cppclass Builder: + char * cStr() cdef extern from "capnp/message.h" namespace "::capnp": cdef cppclass List[T]: cppclass Reader: @@ -60,12 +71,12 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": cppclass Reader: {{'int which()' if node_dict['body'] == 'union'}} {%- for member_name, member_dict in node_dict['members'].items() %} - {{member_dict['type']}}{{'.Reader' if member_dict.get('type', '').startswith('List') }} get{{member_name|capitalize}}() + {{member_dict['type']}}{{'.Reader' if member_dict.get('type', '').startswith('List') or member_dict.get('type', '') in ['Text', 'Data'] }} get{{member_name|capitalize}}() {%- endfor %} cppclass Builder: {{'int which()' if node_dict['body'] == 'union'}} {%- for member_name, member_dict in node_dict['members'].items() %} - {{member_dict['type']}}{{'.Builder' if member_dict.get('type', '').startswith('List') }} get{{member_name|capitalize}}() + {{member_dict['type']}}{{'.Builder' if member_dict.get('type', '').startswith('List') or member_dict.get('type', '') in ['Text', 'Data'] }} get{{member_name|capitalize}}() {%- if member_dict.get('type', '').startswith('List') %} {{member_dict['type']}}.Builder init{{member_name|capitalize}}(int) {%- else %} diff --git a/bootstrap/capnp.tmpl.pyx b/bootstrap/capnp.tmpl.pyx index 484bbb1..126809c 100644 --- a/bootstrap/capnp.tmpl.pyx +++ b/bootstrap/capnp.tmpl.pyx @@ -3,12 +3,12 @@ # distutils: extra_compile_args = --std=c++11 # distutils: libraries = capnp -cimport capnp_schema as capnp -from capnp_schema cimport {% for node_name, node_dict in nodes.items() %}{% if node_dict['body'] != 'enum' %}{{node_name|capitalize}} as C_{{node_name|capitalize}}{{',' if not loop.last}}{%- endif %}{% endfor %} -from capnp_schema cimport {% for node_dict in enum_types %}{%- for member_name, member_dict in node_dict['members'].items() %}{{node_dict['full_name_cython']}}_{{member_name}}{{',' if not loop.last}}{%- endfor %}{{',' if not loop.last}}{%- endfor %} -from capnp_schema cimport {% for node_dict in union_types %}{%- for member_name, member_dict in node_dict['members'].items() %}{{node_dict['full_name_cython']}}_{{member_name}}{{',' if not loop.last}}{%- endfor %}{{',' if not loop.last}}{% endfor %} +cimport schema_cpp as capnp +from schema_cpp cimport {% for node_name, node_dict in nodes.items() %}{% if node_dict['body'] != 'enum' %}{{node_name|capitalize}} as C_{{node_name|capitalize}}{{',' if not loop.last}}{%- endif %}{% endfor %} +from schema_cpp cimport {% for node_dict in enum_types %}{%- for member_name, member_dict in node_dict['members'].items() %}{{node_dict['full_name_cython']}}_{{member_name}}{{',' if not loop.last}}{%- endfor %}{{',' if not loop.last}}{%- endfor %} +from schema_cpp cimport {% for node_dict in union_types %}{%- for member_name, member_dict in node_dict['members'].items() %}{{node_dict['full_name_cython']}}_{{member_name}}{{',' if not loop.last}}{%- endfor %}{{',' if not loop.last}}{% endfor %} -# from capnp_schema cimport * +# from schema_cpp cimport * # Not doing this since we want to namespace away the class names from cython.operator cimport dereference as deref @@ -24,12 +24,16 @@ ctypedef int16_t Int16 ctypedef int32_t Int32 ctypedef int64_t Int64 -ctypedef char * Data ctypedef char * Object -ctypedef char * Text ctypedef bint Bool ctypedef float Float32 ctypedef double Float64 +cdef extern from "capnp/blob.h" namespace "::capnp": + cdef cppclass Data: + char * begin() + size_t size() + cdef cppclass Text: + char * cStr() cdef extern from "capnp/message.h" namespace "::capnp": cdef cppclass List[T]: cppclass Reader: @@ -104,6 +108,11 @@ cdef class {{ node_dict['full_name_cython'] }}Reader: return self.thisptr.get{{member_name|capitalize}}() {%- elif member_dict['type'].startswith('List[') %} return _{{ member_dict['type'] |replace('[', '_')|replace(']','_')|replace('.','_')}}Reader().init(self.thisptr.get{{member_name|capitalize}}()) + {%- elif member_dict['type'] == 'Text' %} + return self.thisptr.get{{member_name|capitalize}}().cStr() + {%- elif member_dict['type'] == 'Data' %} + temp = self.thisptr.get{{member_name|capitalize}}() + return (temp.begin())[:temp.size()] {%- elif member_dict['type'] in built_in_types %} return None {%- else %} @@ -127,6 +136,11 @@ cdef class {{ node_dict['full_name_cython'] }}Builder: return self.thisptr.get{{member_name|capitalize}}() {%- elif member_dict['type'].startswith('List[') %} return _{{ member_dict['type'] |replace('[', '_')|replace(']','_')|replace('.','_')}}Builder().init(self.thisptr.get{{member_name|capitalize}}()) + {%- elif member_dict['type'] == 'Text' %} + return self.thisptr.get{{member_name|capitalize}}().cStr() + {%- elif member_dict['type'] == 'Data' %} + temp = self.thisptr.get{{member_name|capitalize}}() + return (temp.begin())[:temp.size()] {%- elif member_dict['type'] in built_in_types %} return None {%- else %} @@ -178,11 +192,11 @@ cdef class MessageReader: cdef class StreamFdMessageReader(MessageReader): def __cinit__(self, int fd): - self.thisptr = new capnp.StreamFdMessageReader(int) + self.thisptr = new capnp.StreamFdMessageReader(fd) cdef class PackedFdMessageReader(MessageReader): def __cinit__(self, int fd): - self.thisptr = new capnp.PackedFdMessageReader(int) + self.thisptr = new capnp.PackedFdMessageReader(fd) def writeMessageToFd(int fd, MessageBuilder m): capnp.writeMessageToFd(fd, deref(m.thisptr)) @@ -197,6 +211,8 @@ temp = {{ node_dict['full_name'] }} = ModuleType('{{ node_dict['full_name'] }}') {%- if node_dict['body'] != 'enum' %} temp.Reader = {{ node_dict['full_name_cython'] }}Reader temp.Builder = {{ node_dict['full_name_cython'] }}Builder +{%- elif node_dict['body'] == 'union' %} +temp.Which = {{ node_dict['full_name_cython'] }}_Which {%- else %} {{ node_dict['full_name'] }} = {{ node_dict['full_name_cython'] }} {%- endif %} diff --git a/schema.cpp b/schema.cpp index 7b65c9c..cfe09d8 100644 --- a/schema.cpp +++ b/schema.cpp @@ -1,4 +1,4 @@ -/* Generated by Cython 0.19.1 on Tue Jun 25 22:41:07 2013 */ +/* Generated by Cython 0.19.1 on Tue Jun 25 23:21:04 2013 */ #define PY_SSIZE_T_CLEAN #ifndef CYTHON_USE_PYLONG_INTERNALS @@ -309,6 +309,7 @@ static CYTHON_INLINE float __PYX_NAN() { #define __PYX_HAVE__schema #define __PYX_HAVE_API__schema #include "stdint.h" +#include "capnp/blob.h" #include "capnp/message.h" #include "schema.capnp.h" #include "capnp/serialize.h" @@ -565,21 +566,21 @@ typedef int32_t __pyx_t_10schema_cpp_Int32; * ctypedef int32_t Int32 * ctypedef int64_t Int64 # <<<<<<<<<<<<<< * - * ctypedef char * Data + * ctypedef char * Object */ typedef int64_t __pyx_t_10schema_cpp_Int64; -/* "schema_cpp.pxd":20 +/* "schema_cpp.pxd":18 + * * ctypedef char * Object - * ctypedef char * Text * ctypedef bint Bool # <<<<<<<<<<<<<< * ctypedef float Float32 * ctypedef double Float64 */ typedef int __pyx_t_10schema_cpp_Bool; -/* "schema_cpp.pxd":21 - * ctypedef char * Text +/* "schema_cpp.pxd":19 + * ctypedef char * Object * ctypedef bint Bool * ctypedef float Float32 # <<<<<<<<<<<<<< * ctypedef double Float64 @@ -587,12 +588,12 @@ typedef int __pyx_t_10schema_cpp_Bool; */ typedef float __pyx_t_10schema_cpp_Float32; -/* "schema_cpp.pxd":22 +/* "schema_cpp.pxd":20 * ctypedef bint Bool * ctypedef float Float32 * ctypedef double Float64 # <<<<<<<<<<<<<< * - * cdef extern from "capnp/message.h" namespace "::capnp": + * cdef extern from "capnp/blob.h" namespace "::capnp": */ typedef double __pyx_t_10schema_cpp_Float64; @@ -673,34 +674,34 @@ typedef int32_t __pyx_t_6schema_Int32; * ctypedef int32_t Int32 * ctypedef int64_t Int64 # <<<<<<<<<<<<<< * - * ctypedef char * Data + * ctypedef char * Object */ typedef int64_t __pyx_t_6schema_Int64; -/* "schema.pyx":30 +/* "schema.pyx":28 + * * ctypedef char * Object - * ctypedef char * Text * ctypedef bint Bool # <<<<<<<<<<<<<< * ctypedef float Float32 * ctypedef double Float64 */ typedef int __pyx_t_6schema_Bool; -/* "schema.pyx":31 - * ctypedef char * Text +/* "schema.pyx":29 + * ctypedef char * Object * ctypedef bint Bool * ctypedef float Float32 # <<<<<<<<<<<<<< * ctypedef double Float64 - * cdef extern from "capnp/message.h" namespace "::capnp": + * cdef extern from "capnp/blob.h" namespace "::capnp": */ typedef float __pyx_t_6schema_Float32; -/* "schema.pyx":32 +/* "schema.pyx":30 * ctypedef bint Bool * ctypedef float Float32 * ctypedef double Float64 # <<<<<<<<<<<<<< - * cdef extern from "capnp/message.h" namespace "::capnp": - * cdef cppclass List[T]: + * cdef extern from "capnp/blob.h" namespace "::capnp": + * cdef cppclass Data: */ typedef double __pyx_t_6schema_Float64; @@ -790,58 +791,22 @@ struct __pyx_obj_6schema__StructNodeBuilder; /* "schema_cpp.pxd":17 * ctypedef int64_t Int64 * - * ctypedef char * Data # <<<<<<<<<<<<<< - * ctypedef char * Object - * ctypedef char * Text - */ -typedef char *__pyx_t_10schema_cpp_Data; - -/* "schema_cpp.pxd":18 - * - * ctypedef char * Data * ctypedef char * Object # <<<<<<<<<<<<<< - * ctypedef char * Text - * ctypedef bint Bool - */ -typedef char *__pyx_t_10schema_cpp_Object; - -/* "schema_cpp.pxd":19 - * ctypedef char * Data - * ctypedef char * Object - * ctypedef char * Text # <<<<<<<<<<<<<< * ctypedef bint Bool * ctypedef float Float32 */ -typedef char *__pyx_t_10schema_cpp_Text; +typedef char *__pyx_t_10schema_cpp_Object; /* "schema.pyx":27 * ctypedef int64_t Int64 * - * ctypedef char * Data # <<<<<<<<<<<<<< - * ctypedef char * Object - * ctypedef char * Text - */ -typedef char *__pyx_t_6schema_Data; - -/* "schema.pyx":28 - * - * ctypedef char * Data * ctypedef char * Object # <<<<<<<<<<<<<< - * ctypedef char * Text - * ctypedef bint Bool - */ -typedef char *__pyx_t_6schema_Object; - -/* "schema.pyx":29 - * ctypedef char * Data - * ctypedef char * Object - * ctypedef char * Text # <<<<<<<<<<<<<< * ctypedef bint Bool * ctypedef float Float32 */ -typedef char *__pyx_t_6schema_Text; +typedef char *__pyx_t_6schema_Object; -/* "schema.pyx":370 +/* "schema.pyx":374 * def __len__(self): * return self.thisptr.size() * cdef class _List_FileNode_FileNode_Import_Reader: # <<<<<<<<<<<<<< @@ -855,7 +820,7 @@ struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Reader { }; -/* "schema.pyx":1520 +/* "schema.pyx":1526 * return self.thisptr.getOffset() * * cdef class _StructNode_FieldBuilder: # <<<<<<<<<<<<<< @@ -869,7 +834,7 @@ struct __pyx_obj_6schema__StructNode_FieldBuilder { }; -/* "schema.pyx":1541 +/* "schema.pyx":1547 * def __set__(self, val): * self.thisptr.setOffset(val) * cdef class _StructNodeReader: # <<<<<<<<<<<<<< @@ -883,7 +848,7 @@ struct __pyx_obj_6schema__StructNodeReader { }; -/* "schema.pyx":504 +/* "schema.pyx":508 * cpdef initAnnotations(self, uint num): * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * cdef class _InterfaceNode_MethodReader: # <<<<<<<<<<<<<< @@ -897,7 +862,7 @@ struct __pyx_obj_6schema__InterfaceNode_MethodReader { }; -/* "schema.pyx":1084 +/* "schema.pyx":1090 * return _FileNodeReader().init(self.thisptr.getFileNode()) * * cdef class _Node_BodyBuilder: # <<<<<<<<<<<<<< @@ -911,7 +876,7 @@ struct __pyx_obj_6schema__Node_BodyBuilder { }; -/* "schema.pyx":1609 +/* "schema.pyx":1615 * pass * * cdef class MessageBuilder: # <<<<<<<<<<<<<< @@ -925,7 +890,7 @@ struct __pyx_obj_6schema_MessageBuilder { }; -/* "schema.pyx":780 +/* "schema.pyx":786 * pass * * cdef class _ConstNodeReader: # <<<<<<<<<<<<<< @@ -939,7 +904,7 @@ struct __pyx_obj_6schema__ConstNodeReader { }; -/* "schema.pyx":1043 +/* "schema.pyx":1049 * return _List_FileNode_FileNode_Import_Reader().init(self.thisptr.getImports()) * * cdef class _FileNodeBuilder: # <<<<<<<<<<<<<< @@ -953,7 +918,7 @@ struct __pyx_obj_6schema__FileNodeBuilder { }; -/* "schema.pyx":812 +/* "schema.pyx":818 * * _Type_Body_Which = make_enum('_Type_Body_Which',boolType = _Type_Body_boolType,structType = _Type_Body_structType,int32Type = _Type_Body_int32Type,voidType = _Type_Body_voidType,uint16Type = _Type_Body_uint16Type,dataType = _Type_Body_dataType,objectType = _Type_Body_objectType,int64Type = _Type_Body_int64Type,float64Type = _Type_Body_float64Type,interfaceType = _Type_Body_interfaceType,uint32Type = _Type_Body_uint32Type,uint8Type = _Type_Body_uint8Type,listType = _Type_Body_listType,int8Type = _Type_Body_int8Type,float32Type = _Type_Body_float32Type,enumType = _Type_Body_enumType,uint64Type = _Type_Body_uint64Type,textType = _Type_Body_textType,int16Type = _Type_Body_int16Type,) * cdef class _Type_BodyReader: # <<<<<<<<<<<<<< @@ -967,7 +932,7 @@ struct __pyx_obj_6schema__Type_BodyReader { }; -/* "schema.pyx":46 +/* "schema.pyx":50 * enums['reverse_mapping'] = reverse * return type(enum_name, (), enums) * cdef class _List_InterfaceNode_InterfaceNode_Method_Reader: # <<<<<<<<<<<<<< @@ -981,7 +946,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Reader { }; -/* "schema.pyx":43 +/* "schema.pyx":47 * def make_enum(enum_name, *sequential, **named): * enums = dict(zip(sequential, range(len(sequential))), **named) * reverse = dict((value, key) for key, value in enums.iteritems()) # <<<<<<<<<<<<<< @@ -1000,7 +965,7 @@ struct __pyx_obj_6schema___pyx_scope_struct_1_genexpr { }; -/* "schema.pyx":249 +/* "schema.pyx":253 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Member_Annotation_Builder: # <<<<<<<<<<<<<< @@ -1014,7 +979,7 @@ struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder { }; -/* "schema.pyx":565 +/* "schema.pyx":569 * cpdef initAnnotations(self, uint num): * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * cdef class _InterfaceNodeReader: # <<<<<<<<<<<<<< @@ -1028,7 +993,7 @@ struct __pyx_obj_6schema__InterfaceNodeReader { }; -/* "schema.pyx":1362 +/* "schema.pyx":1368 * cpdef initAnnotations(self, uint num): * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * cdef class _EnumNodeReader: # <<<<<<<<<<<<<< @@ -1042,7 +1007,7 @@ struct __pyx_obj_6schema__EnumNodeReader { }; -/* "schema.pyx":330 +/* "schema.pyx":334 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Annotation_Builder: # <<<<<<<<<<<<<< @@ -1056,7 +1021,7 @@ struct __pyx_obj_6schema__List_Node_Annotation_Builder { }; -/* "schema.pyx":1325 +/* "schema.pyx":1331 * * * cdef class _EnumNode_EnumerantReader: # <<<<<<<<<<<<<< @@ -1070,7 +1035,7 @@ struct __pyx_obj_6schema__EnumNode_EnumerantReader { }; -/* "schema.pyx":303 +/* "schema.pyx":307 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_StructNode_Member_Builder: # <<<<<<<<<<<<<< @@ -1084,7 +1049,7 @@ struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder { }; -/* "schema.pyx":195 +/* "schema.pyx":199 * def __len__(self): * return self.thisptr.size() * cdef class _List_UInt64_Builder: # <<<<<<<<<<<<<< @@ -1098,7 +1063,7 @@ struct __pyx_obj_6schema__List_UInt64_Builder { }; -/* "schema.pyx":529 +/* "schema.pyx":533 * return _List_InterfaceNode_Method_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _InterfaceNode_MethodBuilder: # <<<<<<<<<<<<<< @@ -1112,7 +1077,7 @@ struct __pyx_obj_6schema__InterfaceNode_MethodBuilder { }; -/* "schema.pyx":208 +/* "schema.pyx":212 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Node_NestedNode_Reader: # <<<<<<<<<<<<<< @@ -1126,7 +1091,7 @@ struct __pyx_obj_6schema__List_Node_Node_NestedNode_Reader { }; -/* "schema.pyx":981 +/* "schema.pyx":987 * def __set__(self, val): * pass * cdef class _TypeReader: # <<<<<<<<<<<<<< @@ -1140,7 +1105,7 @@ struct __pyx_obj_6schema__TypeReader { }; -/* "schema.pyx":1341 +/* "schema.pyx":1347 * return _List_EnumNode_Enumerant_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _EnumNode_EnumerantBuilder: # <<<<<<<<<<<<<< @@ -1154,7 +1119,7 @@ struct __pyx_obj_6schema__EnumNode_EnumerantBuilder { }; -/* "schema.pyx":1417 +/* "schema.pyx":1423 * * _StructNode_Member_Body_Which = make_enum('_StructNode_Member_Body_Which',fieldMember = _StructNode_Member_Body_fieldMember,unionMember = _StructNode_Member_Body_unionMember,) * cdef class _StructNode_Member_BodyReader: # <<<<<<<<<<<<<< @@ -1168,7 +1133,7 @@ struct __pyx_obj_6schema__StructNode_Member_BodyReader { }; -/* "schema.pyx":1662 +/* "schema.pyx":1668 * * * cdef class MessageReader: # <<<<<<<<<<<<<< @@ -1182,19 +1147,19 @@ struct __pyx_obj_6schema_MessageReader { }; -/* "schema.pyx":1693 - * self.thisptr = new capnp.StreamFdMessageReader(int) +/* "schema.pyx":1699 + * self.thisptr = new capnp.StreamFdMessageReader(fd) * * cdef class PackedFdMessageReader(MessageReader): # <<<<<<<<<<<<<< * def __cinit__(self, int fd): - * self.thisptr = new capnp.PackedFdMessageReader(int) + * self.thisptr = new capnp.PackedFdMessageReader(fd) */ struct __pyx_obj_6schema_PackedFdMessageReader { struct __pyx_obj_6schema_MessageReader __pyx_base; }; -/* "schema.pyx":73 +/* "schema.pyx":77 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_EnumNode_Enumerant_Reader: # <<<<<<<<<<<<<< @@ -1208,7 +1173,7 @@ struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Reader { }; -/* "schema.pyx":1004 +/* "schema.pyx":1010 * * * cdef class _FileNode_ImportReader: # <<<<<<<<<<<<<< @@ -1222,19 +1187,19 @@ struct __pyx_obj_6schema__FileNode_ImportReader { }; -/* "schema.pyx":1689 +/* "schema.pyx":1695 * return _AnnotationReader().init(self.thisptr.getRootAnnotation()) * * cdef class StreamFdMessageReader(MessageReader): # <<<<<<<<<<<<<< * def __cinit__(self, int fd): - * self.thisptr = new capnp.StreamFdMessageReader(int) + * self.thisptr = new capnp.StreamFdMessageReader(fd) */ struct __pyx_obj_6schema_StreamFdMessageReader { struct __pyx_obj_6schema_MessageReader __pyx_base; }; -/* "schema.pyx":459 +/* "schema.pyx":463 * * * cdef class _InterfaceNode_Method_ParamReader: # <<<<<<<<<<<<<< @@ -1248,7 +1213,7 @@ struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader { }; -/* "schema.pyx":438 +/* "schema.pyx":442 * return _List_UInt64_Reader().init(self.thisptr.getRequestedFiles()) * * cdef class _CodeGeneratorRequestBuilder: # <<<<<<<<<<<<<< @@ -1262,7 +1227,7 @@ struct __pyx_obj_6schema__CodeGeneratorRequestBuilder { }; -/* "schema.pyx":1177 +/* "schema.pyx":1183 * return self.thisptr.getId() * * cdef class _NodeBuilder: # <<<<<<<<<<<<<< @@ -1276,7 +1241,7 @@ struct __pyx_obj_6schema__NodeBuilder { }; -/* "schema.pyx":384 +/* "schema.pyx":388 * def __len__(self): * return self.thisptr.size() * cdef class _List_FileNode_FileNode_Import_Builder: # <<<<<<<<<<<<<< @@ -1290,7 +1255,7 @@ struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder { }; -/* "schema.pyx":1385 +/* "schema.pyx":1391 * * * cdef class _StructNode_UnionReader: # <<<<<<<<<<<<<< @@ -1304,7 +1269,7 @@ struct __pyx_obj_6schema__StructNode_UnionReader { }; -/* "schema.pyx":1657 +/* "schema.pyx":1663 * cpdef initRootAnnotation(self): * return _AnnotationBuilder().init(self.thisptr.initRootAnnotation()) * cdef class MallocMessageBuilder(MessageBuilder): # <<<<<<<<<<<<<< @@ -1316,7 +1281,7 @@ struct __pyx_obj_6schema_MallocMessageBuilder { }; -/* "schema.pyx":991 +/* "schema.pyx":997 * return _Type_BodyReader().init(self.thisptr.getBody()) * * cdef class _TypeBuilder: # <<<<<<<<<<<<<< @@ -1330,7 +1295,7 @@ struct __pyx_obj_6schema__TypeBuilder { }; -/* "schema.pyx":1592 +/* "schema.pyx":1598 * return _ValueReader().init(self.thisptr.getValue()) * * cdef class _AnnotationBuilder: # <<<<<<<<<<<<<< @@ -1344,7 +1309,7 @@ struct __pyx_obj_6schema__AnnotationBuilder { }; -/* "schema.pyx":357 +/* "schema.pyx":361 * def __len__(self): * return self.thisptr.size() * cdef class _List_CodeGeneratorRequest_Node_Builder: # <<<<<<<<<<<<<< @@ -1358,7 +1323,7 @@ struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder { }; -/* "schema.pyx":1136 +/* "schema.pyx":1142 * return self.thisptr.getId() * * cdef class _Node_NestedNodeBuilder: # <<<<<<<<<<<<<< @@ -1372,7 +1337,7 @@ struct __pyx_obj_6schema__Node_NestedNodeBuilder { }; -/* "schema.pyx":127 +/* "schema.pyx":131 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader: # <<<<<<<<<<<<<< @@ -1386,7 +1351,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_R }; -/* "schema.pyx":1398 +/* "schema.pyx":1404 * return _List_StructNode_Union_StructNode_Member_Reader().init(self.thisptr.getMembers()) * * cdef class _StructNode_UnionBuilder: # <<<<<<<<<<<<<< @@ -1400,7 +1365,7 @@ struct __pyx_obj_6schema__StructNode_UnionBuilder { }; -/* "schema.pyx":1057 +/* "schema.pyx":1063 * * _Node_Body_Which = make_enum('_Node_Body_Which',annotationNode = _Node_Body_annotationNode,interfaceNode = _Node_Body_interfaceNode,enumNode = _Node_Body_enumNode,structNode = _Node_Body_structNode,constNode = _Node_Body_constNode,fileNode = _Node_Body_fileNode,) * cdef class _Node_BodyReader: # <<<<<<<<<<<<<< @@ -1414,7 +1379,7 @@ struct __pyx_obj_6schema__Node_BodyReader { }; -/* "schema.pyx":397 +/* "schema.pyx":401 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_Enumerant_Annotation_Reader: # <<<<<<<<<<<<<< @@ -1428,7 +1393,7 @@ struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Reader { }; -/* "schema.pyx":793 +/* "schema.pyx":799 * return _ValueReader().init(self.thisptr.getValue()) * * cdef class _ConstNodeBuilder: # <<<<<<<<<<<<<< @@ -1442,7 +1407,7 @@ struct __pyx_obj_6schema__ConstNodeBuilder { }; -/* "schema.pyx":1579 +/* "schema.pyx":1585 * self.thisptr.setPointerSectionSize(val) * * cdef class _AnnotationReader: # <<<<<<<<<<<<<< @@ -1456,7 +1421,7 @@ struct __pyx_obj_6schema__AnnotationReader { }; -/* "schema.pyx":758 +/* "schema.pyx":764 * def __set__(self, val): * pass * cdef class _ValueReader: # <<<<<<<<<<<<<< @@ -1470,7 +1435,7 @@ struct __pyx_obj_6schema__ValueReader { }; -/* "schema.pyx":343 +/* "schema.pyx":347 * def __len__(self): * return self.thisptr.size() * cdef class _List_CodeGeneratorRequest_Node_Reader: # <<<<<<<<<<<<<< @@ -1484,7 +1449,7 @@ struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Reader { }; -/* "schema.pyx":1432 +/* "schema.pyx":1438 * return _StructNode_UnionReader().init(self.thisptr.getUnionMember()) * * cdef class _StructNode_Member_BodyBuilder: # <<<<<<<<<<<<<< @@ -1498,7 +1463,7 @@ struct __pyx_obj_6schema__StructNode_Member_BodyBuilder { }; -/* "schema.pyx":1214 +/* "schema.pyx":1220 * self.thisptr.setId(val) * * cdef class _AnnotationNodeReader: # <<<<<<<<<<<<<< @@ -1512,7 +1477,7 @@ struct __pyx_obj_6schema__AnnotationNodeReader { }; -/* "schema.pyx":168 +/* "schema.pyx":172 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Param_Annotation_Builder: # <<<<<<<<<<<<<< @@ -1526,7 +1491,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder { }; -/* "schema.pyx":425 +/* "schema.pyx":429 * return self.thisptr.size() * * cdef class _CodeGeneratorRequestReader: # <<<<<<<<<<<<<< @@ -1540,7 +1505,7 @@ struct __pyx_obj_6schema__CodeGeneratorRequestReader { }; -/* "schema.pyx":60 +/* "schema.pyx":64 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_InterfaceNode_Method_Builder: # <<<<<<<<<<<<<< @@ -1554,7 +1519,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder { }; -/* "schema.pyx":768 +/* "schema.pyx":774 * return _Value_BodyReader().init(self.thisptr.getBody()) * * cdef class _ValueBuilder: # <<<<<<<<<<<<<< @@ -1568,7 +1533,7 @@ struct __pyx_obj_6schema__ValueBuilder { }; -/* "schema.pyx":1450 +/* "schema.pyx":1456 * def __set__(self, val): * pass * cdef class _StructNode_MemberReader: # <<<<<<<<<<<<<< @@ -1582,7 +1547,7 @@ struct __pyx_obj_6schema__StructNode_MemberReader { }; -/* "schema.pyx":1372 +/* "schema.pyx":1378 * return _List_EnumNode_EnumNode_Enumerant_Reader().init(self.thisptr.getEnumerants()) * * cdef class _EnumNodeBuilder: # <<<<<<<<<<<<<< @@ -1596,7 +1561,7 @@ struct __pyx_obj_6schema__EnumNodeBuilder { }; -/* "schema.pyx":87 +/* "schema.pyx":91 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_EnumNode_Enumerant_Builder: # <<<<<<<<<<<<<< @@ -1610,8 +1575,8 @@ struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder { }; -/* "schema.pyx":1017 - * return None +/* "schema.pyx":1023 + * return self.thisptr.getName().cStr() * * cdef class _FileNode_ImportBuilder: # <<<<<<<<<<<<<< * cdef C_FileNode.Import.Builder thisptr @@ -1624,7 +1589,7 @@ struct __pyx_obj_6schema__FileNode_ImportBuilder { }; -/* "schema.pyx":1152 +/* "schema.pyx":1158 * def __set__(self, val): * self.thisptr.setId(val) * cdef class _NodeReader: # <<<<<<<<<<<<<< @@ -1638,7 +1603,7 @@ struct __pyx_obj_6schema__NodeReader { }; -/* "schema.pyx":878 +/* "schema.pyx":884 * return None * * cdef class _Type_BodyBuilder: # <<<<<<<<<<<<<< @@ -1652,7 +1617,7 @@ struct __pyx_obj_6schema__Type_BodyBuilder { }; -/* "schema.pyx":289 +/* "schema.pyx":293 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_StructNode_Member_Reader: # <<<<<<<<<<<<<< @@ -1666,7 +1631,7 @@ struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Reader { }; -/* "schema.pyx":114 +/* "schema.pyx":118 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Union_StructNode_Member_Builder: # <<<<<<<<<<<<<< @@ -1680,7 +1645,7 @@ struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder { }; -/* "schema.pyx":478 +/* "schema.pyx":482 * return _List_InterfaceNode_Method_Param_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _InterfaceNode_Method_ParamBuilder: # <<<<<<<<<<<<<< @@ -1694,7 +1659,7 @@ struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder { }; -/* "schema.pyx":222 +/* "schema.pyx":226 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Node_NestedNode_Builder: # <<<<<<<<<<<<<< @@ -1708,7 +1673,7 @@ struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder { }; -/* "schema.pyx":141 +/* "schema.pyx":145 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder: # <<<<<<<<<<<<<< @@ -1722,7 +1687,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_B }; -/* "schema.pyx":655 +/* "schema.pyx":660 * return None * * cdef class _Value_BodyBuilder: # <<<<<<<<<<<<<< @@ -1736,7 +1701,7 @@ struct __pyx_obj_6schema__Value_BodyBuilder { }; -/* "schema.pyx":575 +/* "schema.pyx":579 * return _List_InterfaceNode_InterfaceNode_Method_Reader().init(self.thisptr.getMethods()) * * cdef class _InterfaceNodeBuilder: # <<<<<<<<<<<<<< @@ -1750,7 +1715,7 @@ struct __pyx_obj_6schema__InterfaceNodeBuilder { }; -/* "schema.pyx":235 +/* "schema.pyx":239 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Member_Annotation_Reader: # <<<<<<<<<<<<<< @@ -1764,7 +1729,7 @@ struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Reader { }; -/* "schema.pyx":1123 +/* "schema.pyx":1129 * pass * * cdef class _Node_NestedNodeReader: # <<<<<<<<<<<<<< @@ -1778,7 +1743,7 @@ struct __pyx_obj_6schema__Node_NestedNodeReader { }; -/* "schema.pyx":1472 +/* "schema.pyx":1478 * return _List_StructNode_Member_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _StructNode_MemberBuilder: # <<<<<<<<<<<<<< @@ -1792,7 +1757,7 @@ struct __pyx_obj_6schema__StructNode_MemberBuilder { }; -/* "schema.pyx":181 +/* "schema.pyx":185 * def __len__(self): * return self.thisptr.size() * cdef class _List_UInt64_Reader: # <<<<<<<<<<<<<< @@ -1806,7 +1771,7 @@ struct __pyx_obj_6schema__List_UInt64_Reader { }; -/* "schema.pyx":276 +/* "schema.pyx":280 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Annotation_Builder: # <<<<<<<<<<<<<< @@ -1820,7 +1785,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder { }; -/* "schema.pyx":262 +/* "schema.pyx":266 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Annotation_Reader: # <<<<<<<<<<<<<< @@ -1834,7 +1799,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Reader { }; -/* "schema.pyx":100 +/* "schema.pyx":104 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Union_StructNode_Member_Reader: # <<<<<<<<<<<<<< @@ -1848,7 +1813,7 @@ struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Reader { }; -/* "schema.pyx":1257 +/* "schema.pyx":1263 * return self.thisptr.getTargetsMethod() * * cdef class _AnnotationNodeBuilder: # <<<<<<<<<<<<<< @@ -1862,7 +1827,7 @@ struct __pyx_obj_6schema__AnnotationNodeBuilder { }; -/* "schema.pyx":411 +/* "schema.pyx":415 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_Enumerant_Annotation_Builder: # <<<<<<<<<<<<<< @@ -1876,7 +1841,7 @@ struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder { }; -/* "schema.pyx":589 +/* "schema.pyx":593 * * _Value_Body_Which = make_enum('_Value_Body_Which',uint32Value = _Value_Body_uint32Value,float64Value = _Value_Body_float64Value,voidValue = _Value_Body_voidValue,dataValue = _Value_Body_dataValue,listValue = _Value_Body_listValue,int32Value = _Value_Body_int32Value,enumValue = _Value_Body_enumValue,int8Value = _Value_Body_int8Value,boolValue = _Value_Body_boolValue,int16Value = _Value_Body_int16Value,float32Value = _Value_Body_float32Value,interfaceValue = _Value_Body_interfaceValue,uint16Value = _Value_Body_uint16Value,uint8Value = _Value_Body_uint8Value,int64Value = _Value_Body_int64Value,structValue = _Value_Body_structValue,textValue = _Value_Body_textValue,uint64Value = _Value_Body_uint64Value,objectValue = _Value_Body_objectValue,) * cdef class _Value_BodyReader: # <<<<<<<<<<<<<< @@ -1890,7 +1855,7 @@ struct __pyx_obj_6schema__Value_BodyReader { }; -/* "schema.pyx":1504 +/* "schema.pyx":1510 * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * * cdef class _StructNode_FieldReader: # <<<<<<<<<<<<<< @@ -1904,7 +1869,7 @@ struct __pyx_obj_6schema__StructNode_FieldReader { }; -/* "schema.pyx":316 +/* "schema.pyx":320 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Annotation_Reader: # <<<<<<<<<<<<<< @@ -1918,7 +1883,7 @@ struct __pyx_obj_6schema__List_Node_Annotation_Reader { }; -/* "schema.pyx":154 +/* "schema.pyx":158 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Param_Annotation_Reader: # <<<<<<<<<<<<<< @@ -1932,7 +1897,7 @@ struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Reader { }; -/* "schema.pyx":1033 +/* "schema.pyx":1039 * def __set__(self, val): * pass * cdef class _FileNodeReader: # <<<<<<<<<<<<<< @@ -1946,7 +1911,7 @@ struct __pyx_obj_6schema__FileNodeReader { }; -/* "schema.pyx":41 +/* "schema.pyx":45 * T operator[](uint) * uint size() * def make_enum(enum_name, *sequential, **named): # <<<<<<<<<<<<<< @@ -1959,7 +1924,7 @@ struct __pyx_obj_6schema___pyx_scope_struct__make_enum { }; -/* "schema.pyx":1557 +/* "schema.pyx":1563 * return self.thisptr.getPointerSectionSize() * * cdef class _StructNodeBuilder: # <<<<<<<<<<<<<< @@ -1974,7 +1939,7 @@ struct __pyx_obj_6schema__StructNodeBuilder { -/* "schema.pyx":991 +/* "schema.pyx":997 * return _Type_BodyReader().init(self.thisptr.getBody()) * * cdef class _TypeBuilder: # <<<<<<<<<<<<<< @@ -1988,7 +1953,7 @@ struct __pyx_vtabstruct_6schema__TypeBuilder { static struct __pyx_vtabstruct_6schema__TypeBuilder *__pyx_vtabptr_6schema__TypeBuilder; -/* "schema.pyx":303 +/* "schema.pyx":307 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_StructNode_Member_Builder: # <<<<<<<<<<<<<< @@ -2002,7 +1967,7 @@ struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Builder { static struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Builder *__pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Builder; -/* "schema.pyx":1432 +/* "schema.pyx":1438 * return _StructNode_UnionReader().init(self.thisptr.getUnionMember()) * * cdef class _StructNode_Member_BodyBuilder: # <<<<<<<<<<<<<< @@ -2017,7 +1982,7 @@ struct __pyx_vtabstruct_6schema__StructNode_Member_BodyBuilder { static struct __pyx_vtabstruct_6schema__StructNode_Member_BodyBuilder *__pyx_vtabptr_6schema__StructNode_Member_BodyBuilder; -/* "schema.pyx":1541 +/* "schema.pyx":1547 * def __set__(self, val): * self.thisptr.setOffset(val) * cdef class _StructNodeReader: # <<<<<<<<<<<<<< @@ -2031,7 +1996,7 @@ struct __pyx_vtabstruct_6schema__StructNodeReader { static struct __pyx_vtabstruct_6schema__StructNodeReader *__pyx_vtabptr_6schema__StructNodeReader; -/* "schema.pyx":1043 +/* "schema.pyx":1049 * return _List_FileNode_FileNode_Import_Reader().init(self.thisptr.getImports()) * * cdef class _FileNodeBuilder: # <<<<<<<<<<<<<< @@ -2046,7 +2011,7 @@ struct __pyx_vtabstruct_6schema__FileNodeBuilder { static struct __pyx_vtabstruct_6schema__FileNodeBuilder *__pyx_vtabptr_6schema__FileNodeBuilder; -/* "schema.pyx":1177 +/* "schema.pyx":1183 * return self.thisptr.getId() * * cdef class _NodeBuilder: # <<<<<<<<<<<<<< @@ -2062,7 +2027,7 @@ struct __pyx_vtabstruct_6schema__NodeBuilder { static struct __pyx_vtabstruct_6schema__NodeBuilder *__pyx_vtabptr_6schema__NodeBuilder; -/* "schema.pyx":1362 +/* "schema.pyx":1368 * cpdef initAnnotations(self, uint num): * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * cdef class _EnumNodeReader: # <<<<<<<<<<<<<< @@ -2076,7 +2041,7 @@ struct __pyx_vtabstruct_6schema__EnumNodeReader { static struct __pyx_vtabstruct_6schema__EnumNodeReader *__pyx_vtabptr_6schema__EnumNodeReader; -/* "schema.pyx":141 +/* "schema.pyx":145 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder: # <<<<<<<<<<<<<< @@ -2090,7 +2055,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_ static struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *__pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder; -/* "schema.pyx":459 +/* "schema.pyx":463 * * * cdef class _InterfaceNode_Method_ParamReader: # <<<<<<<<<<<<<< @@ -2104,7 +2069,7 @@ struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamReader { static struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamReader *__pyx_vtabptr_6schema__InterfaceNode_Method_ParamReader; -/* "schema.pyx":1609 +/* "schema.pyx":1615 * pass * * cdef class MessageBuilder: # <<<<<<<<<<<<<< @@ -2139,7 +2104,7 @@ struct __pyx_vtabstruct_6schema_MessageBuilder { static struct __pyx_vtabstruct_6schema_MessageBuilder *__pyx_vtabptr_6schema_MessageBuilder; -/* "schema.pyx":1657 +/* "schema.pyx":1663 * cpdef initRootAnnotation(self): * return _AnnotationBuilder().init(self.thisptr.initRootAnnotation()) * cdef class MallocMessageBuilder(MessageBuilder): # <<<<<<<<<<<<<< @@ -2153,7 +2118,7 @@ struct __pyx_vtabstruct_6schema_MallocMessageBuilder { static struct __pyx_vtabstruct_6schema_MallocMessageBuilder *__pyx_vtabptr_6schema_MallocMessageBuilder; -/* "schema.pyx":1136 +/* "schema.pyx":1142 * return self.thisptr.getId() * * cdef class _Node_NestedNodeBuilder: # <<<<<<<<<<<<<< @@ -2167,7 +2132,7 @@ struct __pyx_vtabstruct_6schema__Node_NestedNodeBuilder { static struct __pyx_vtabstruct_6schema__Node_NestedNodeBuilder *__pyx_vtabptr_6schema__Node_NestedNodeBuilder; -/* "schema.pyx":87 +/* "schema.pyx":91 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_EnumNode_Enumerant_Builder: # <<<<<<<<<<<<<< @@ -2181,7 +2146,7 @@ struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Builder { static struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Builder *__pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Builder; -/* "schema.pyx":1472 +/* "schema.pyx":1478 * return _List_StructNode_Member_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _StructNode_MemberBuilder: # <<<<<<<<<<<<<< @@ -2196,7 +2161,7 @@ struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder { static struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder *__pyx_vtabptr_6schema__StructNode_MemberBuilder; -/* "schema.pyx":425 +/* "schema.pyx":429 * return self.thisptr.size() * * cdef class _CodeGeneratorRequestReader: # <<<<<<<<<<<<<< @@ -2210,7 +2175,7 @@ struct __pyx_vtabstruct_6schema__CodeGeneratorRequestReader { static struct __pyx_vtabstruct_6schema__CodeGeneratorRequestReader *__pyx_vtabptr_6schema__CodeGeneratorRequestReader; -/* "schema.pyx":1152 +/* "schema.pyx":1158 * def __set__(self, val): * self.thisptr.setId(val) * cdef class _NodeReader: # <<<<<<<<<<<<<< @@ -2224,7 +2189,7 @@ struct __pyx_vtabstruct_6schema__NodeReader { static struct __pyx_vtabstruct_6schema__NodeReader *__pyx_vtabptr_6schema__NodeReader; -/* "schema.pyx":1417 +/* "schema.pyx":1423 * * _StructNode_Member_Body_Which = make_enum('_StructNode_Member_Body_Which',fieldMember = _StructNode_Member_Body_fieldMember,unionMember = _StructNode_Member_Body_unionMember,) * cdef class _StructNode_Member_BodyReader: # <<<<<<<<<<<<<< @@ -2239,7 +2204,7 @@ struct __pyx_vtabstruct_6schema__StructNode_Member_BodyReader { static struct __pyx_vtabstruct_6schema__StructNode_Member_BodyReader *__pyx_vtabptr_6schema__StructNode_Member_BodyReader; -/* "schema.pyx":1214 +/* "schema.pyx":1220 * self.thisptr.setId(val) * * cdef class _AnnotationNodeReader: # <<<<<<<<<<<<<< @@ -2253,7 +2218,7 @@ struct __pyx_vtabstruct_6schema__AnnotationNodeReader { static struct __pyx_vtabstruct_6schema__AnnotationNodeReader *__pyx_vtabptr_6schema__AnnotationNodeReader; -/* "schema.pyx":262 +/* "schema.pyx":266 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Annotation_Reader: # <<<<<<<<<<<<<< @@ -2267,7 +2232,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Reader { static struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Reader *__pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Reader; -/* "schema.pyx":384 +/* "schema.pyx":388 * def __len__(self): * return self.thisptr.size() * cdef class _List_FileNode_FileNode_Import_Builder: # <<<<<<<<<<<<<< @@ -2281,7 +2246,7 @@ struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Builder { static struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Builder *__pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Builder; -/* "schema.pyx":504 +/* "schema.pyx":508 * cpdef initAnnotations(self, uint num): * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * cdef class _InterfaceNode_MethodReader: # <<<<<<<<<<<<<< @@ -2295,7 +2260,7 @@ struct __pyx_vtabstruct_6schema__InterfaceNode_MethodReader { static struct __pyx_vtabstruct_6schema__InterfaceNode_MethodReader *__pyx_vtabptr_6schema__InterfaceNode_MethodReader; -/* "schema.pyx":1123 +/* "schema.pyx":1129 * pass * * cdef class _Node_NestedNodeReader: # <<<<<<<<<<<<<< @@ -2309,7 +2274,7 @@ struct __pyx_vtabstruct_6schema__Node_NestedNodeReader { static struct __pyx_vtabstruct_6schema__Node_NestedNodeReader *__pyx_vtabptr_6schema__Node_NestedNodeReader; -/* "schema.pyx":478 +/* "schema.pyx":482 * return _List_InterfaceNode_Method_Param_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _InterfaceNode_Method_ParamBuilder: # <<<<<<<<<<<<<< @@ -2324,7 +2289,7 @@ struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamBuilder { static struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamBuilder *__pyx_vtabptr_6schema__InterfaceNode_Method_ParamBuilder; -/* "schema.pyx":330 +/* "schema.pyx":334 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Annotation_Builder: # <<<<<<<<<<<<<< @@ -2338,7 +2303,7 @@ struct __pyx_vtabstruct_6schema__List_Node_Annotation_Builder { static struct __pyx_vtabstruct_6schema__List_Node_Annotation_Builder *__pyx_vtabptr_6schema__List_Node_Annotation_Builder; -/* "schema.pyx":438 +/* "schema.pyx":442 * return _List_UInt64_Reader().init(self.thisptr.getRequestedFiles()) * * cdef class _CodeGeneratorRequestBuilder: # <<<<<<<<<<<<<< @@ -2354,7 +2319,7 @@ struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder { static struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *__pyx_vtabptr_6schema__CodeGeneratorRequestBuilder; -/* "schema.pyx":60 +/* "schema.pyx":64 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_InterfaceNode_Method_Builder: # <<<<<<<<<<<<<< @@ -2368,7 +2333,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Builder static struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *__pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Builder; -/* "schema.pyx":812 +/* "schema.pyx":818 * * _Type_Body_Which = make_enum('_Type_Body_Which',boolType = _Type_Body_boolType,structType = _Type_Body_structType,int32Type = _Type_Body_int32Type,voidType = _Type_Body_voidType,uint16Type = _Type_Body_uint16Type,dataType = _Type_Body_dataType,objectType = _Type_Body_objectType,int64Type = _Type_Body_int64Type,float64Type = _Type_Body_float64Type,interfaceType = _Type_Body_interfaceType,uint32Type = _Type_Body_uint32Type,uint8Type = _Type_Body_uint8Type,listType = _Type_Body_listType,int8Type = _Type_Body_int8Type,float32Type = _Type_Body_float32Type,enumType = _Type_Body_enumType,uint64Type = _Type_Body_uint64Type,textType = _Type_Body_textType,int16Type = _Type_Body_int16Type,) * cdef class _Type_BodyReader: # <<<<<<<<<<<<<< @@ -2383,7 +2348,7 @@ struct __pyx_vtabstruct_6schema__Type_BodyReader { static struct __pyx_vtabstruct_6schema__Type_BodyReader *__pyx_vtabptr_6schema__Type_BodyReader; -/* "schema.pyx":195 +/* "schema.pyx":199 * def __len__(self): * return self.thisptr.size() * cdef class _List_UInt64_Builder: # <<<<<<<<<<<<<< @@ -2397,7 +2362,7 @@ struct __pyx_vtabstruct_6schema__List_UInt64_Builder { static struct __pyx_vtabstruct_6schema__List_UInt64_Builder *__pyx_vtabptr_6schema__List_UInt64_Builder; -/* "schema.pyx":127 +/* "schema.pyx":131 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader: # <<<<<<<<<<<<<< @@ -2411,7 +2376,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_ static struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *__pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader; -/* "schema.pyx":370 +/* "schema.pyx":374 * def __len__(self): * return self.thisptr.size() * cdef class _List_FileNode_FileNode_Import_Reader: # <<<<<<<<<<<<<< @@ -2425,7 +2390,7 @@ struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Reader { static struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Reader *__pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Reader; -/* "schema.pyx":655 +/* "schema.pyx":660 * return None * * cdef class _Value_BodyBuilder: # <<<<<<<<<<<<<< @@ -2440,7 +2405,7 @@ struct __pyx_vtabstruct_6schema__Value_BodyBuilder { static struct __pyx_vtabstruct_6schema__Value_BodyBuilder *__pyx_vtabptr_6schema__Value_BodyBuilder; -/* "schema.pyx":357 +/* "schema.pyx":361 * def __len__(self): * return self.thisptr.size() * cdef class _List_CodeGeneratorRequest_Node_Builder: # <<<<<<<<<<<<<< @@ -2454,7 +2419,7 @@ struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Builder { static struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Builder *__pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Builder; -/* "schema.pyx":1450 +/* "schema.pyx":1456 * def __set__(self, val): * pass * cdef class _StructNode_MemberReader: # <<<<<<<<<<<<<< @@ -2468,7 +2433,7 @@ struct __pyx_vtabstruct_6schema__StructNode_MemberReader { static struct __pyx_vtabstruct_6schema__StructNode_MemberReader *__pyx_vtabptr_6schema__StructNode_MemberReader; -/* "schema.pyx":1341 +/* "schema.pyx":1347 * return _List_EnumNode_Enumerant_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _EnumNode_EnumerantBuilder: # <<<<<<<<<<<<<< @@ -2483,7 +2448,7 @@ struct __pyx_vtabstruct_6schema__EnumNode_EnumerantBuilder { static struct __pyx_vtabstruct_6schema__EnumNode_EnumerantBuilder *__pyx_vtabptr_6schema__EnumNode_EnumerantBuilder; -/* "schema.pyx":222 +/* "schema.pyx":226 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Node_NestedNode_Builder: # <<<<<<<<<<<<<< @@ -2497,7 +2462,7 @@ struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Builder { static struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Builder *__pyx_vtabptr_6schema__List_Node_Node_NestedNode_Builder; -/* "schema.pyx":1385 +/* "schema.pyx":1391 * * * cdef class _StructNode_UnionReader: # <<<<<<<<<<<<<< @@ -2511,7 +2476,7 @@ struct __pyx_vtabstruct_6schema__StructNode_UnionReader { static struct __pyx_vtabstruct_6schema__StructNode_UnionReader *__pyx_vtabptr_6schema__StructNode_UnionReader; -/* "schema.pyx":181 +/* "schema.pyx":185 * def __len__(self): * return self.thisptr.size() * cdef class _List_UInt64_Reader: # <<<<<<<<<<<<<< @@ -2525,7 +2490,7 @@ struct __pyx_vtabstruct_6schema__List_UInt64_Reader { static struct __pyx_vtabstruct_6schema__List_UInt64_Reader *__pyx_vtabptr_6schema__List_UInt64_Reader; -/* "schema.pyx":793 +/* "schema.pyx":799 * return _ValueReader().init(self.thisptr.getValue()) * * cdef class _ConstNodeBuilder: # <<<<<<<<<<<<<< @@ -2539,7 +2504,7 @@ struct __pyx_vtabstruct_6schema__ConstNodeBuilder { static struct __pyx_vtabstruct_6schema__ConstNodeBuilder *__pyx_vtabptr_6schema__ConstNodeBuilder; -/* "schema.pyx":981 +/* "schema.pyx":987 * def __set__(self, val): * pass * cdef class _TypeReader: # <<<<<<<<<<<<<< @@ -2553,7 +2518,7 @@ struct __pyx_vtabstruct_6schema__TypeReader { static struct __pyx_vtabstruct_6schema__TypeReader *__pyx_vtabptr_6schema__TypeReader; -/* "schema.pyx":1662 +/* "schema.pyx":1668 * * * cdef class MessageReader: # <<<<<<<<<<<<<< @@ -2577,12 +2542,12 @@ struct __pyx_vtabstruct_6schema_MessageReader { static struct __pyx_vtabstruct_6schema_MessageReader *__pyx_vtabptr_6schema_MessageReader; -/* "schema.pyx":1693 - * self.thisptr = new capnp.StreamFdMessageReader(int) +/* "schema.pyx":1699 + * self.thisptr = new capnp.StreamFdMessageReader(fd) * * cdef class PackedFdMessageReader(MessageReader): # <<<<<<<<<<<<<< * def __cinit__(self, int fd): - * self.thisptr = new capnp.PackedFdMessageReader(int) + * self.thisptr = new capnp.PackedFdMessageReader(fd) */ struct __pyx_vtabstruct_6schema_PackedFdMessageReader { @@ -2591,7 +2556,7 @@ struct __pyx_vtabstruct_6schema_PackedFdMessageReader { static struct __pyx_vtabstruct_6schema_PackedFdMessageReader *__pyx_vtabptr_6schema_PackedFdMessageReader; -/* "schema.pyx":589 +/* "schema.pyx":593 * * _Value_Body_Which = make_enum('_Value_Body_Which',uint32Value = _Value_Body_uint32Value,float64Value = _Value_Body_float64Value,voidValue = _Value_Body_voidValue,dataValue = _Value_Body_dataValue,listValue = _Value_Body_listValue,int32Value = _Value_Body_int32Value,enumValue = _Value_Body_enumValue,int8Value = _Value_Body_int8Value,boolValue = _Value_Body_boolValue,int16Value = _Value_Body_int16Value,float32Value = _Value_Body_float32Value,interfaceValue = _Value_Body_interfaceValue,uint16Value = _Value_Body_uint16Value,uint8Value = _Value_Body_uint8Value,int64Value = _Value_Body_int64Value,structValue = _Value_Body_structValue,textValue = _Value_Body_textValue,uint64Value = _Value_Body_uint64Value,objectValue = _Value_Body_objectValue,) * cdef class _Value_BodyReader: # <<<<<<<<<<<<<< @@ -2606,8 +2571,8 @@ struct __pyx_vtabstruct_6schema__Value_BodyReader { static struct __pyx_vtabstruct_6schema__Value_BodyReader *__pyx_vtabptr_6schema__Value_BodyReader; -/* "schema.pyx":1017 - * return None +/* "schema.pyx":1023 + * return self.thisptr.getName().cStr() * * cdef class _FileNode_ImportBuilder: # <<<<<<<<<<<<<< * cdef C_FileNode.Import.Builder thisptr @@ -2620,7 +2585,7 @@ struct __pyx_vtabstruct_6schema__FileNode_ImportBuilder { static struct __pyx_vtabstruct_6schema__FileNode_ImportBuilder *__pyx_vtabptr_6schema__FileNode_ImportBuilder; -/* "schema.pyx":316 +/* "schema.pyx":320 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Annotation_Reader: # <<<<<<<<<<<<<< @@ -2634,7 +2599,7 @@ struct __pyx_vtabstruct_6schema__List_Node_Annotation_Reader { static struct __pyx_vtabstruct_6schema__List_Node_Annotation_Reader *__pyx_vtabptr_6schema__List_Node_Annotation_Reader; -/* "schema.pyx":575 +/* "schema.pyx":579 * return _List_InterfaceNode_InterfaceNode_Method_Reader().init(self.thisptr.getMethods()) * * cdef class _InterfaceNodeBuilder: # <<<<<<<<<<<<<< @@ -2649,7 +2614,7 @@ struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder { static struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *__pyx_vtabptr_6schema__InterfaceNodeBuilder; -/* "schema.pyx":1372 +/* "schema.pyx":1378 * return _List_EnumNode_EnumNode_Enumerant_Reader().init(self.thisptr.getEnumerants()) * * cdef class _EnumNodeBuilder: # <<<<<<<<<<<<<< @@ -2664,7 +2629,7 @@ struct __pyx_vtabstruct_6schema__EnumNodeBuilder { static struct __pyx_vtabstruct_6schema__EnumNodeBuilder *__pyx_vtabptr_6schema__EnumNodeBuilder; -/* "schema.pyx":343 +/* "schema.pyx":347 * def __len__(self): * return self.thisptr.size() * cdef class _List_CodeGeneratorRequest_Node_Reader: # <<<<<<<<<<<<<< @@ -2678,7 +2643,7 @@ struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Reader { static struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Reader *__pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Reader; -/* "schema.pyx":1033 +/* "schema.pyx":1039 * def __set__(self, val): * pass * cdef class _FileNodeReader: # <<<<<<<<<<<<<< @@ -2692,7 +2657,7 @@ struct __pyx_vtabstruct_6schema__FileNodeReader { static struct __pyx_vtabstruct_6schema__FileNodeReader *__pyx_vtabptr_6schema__FileNodeReader; -/* "schema.pyx":276 +/* "schema.pyx":280 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Annotation_Builder: # <<<<<<<<<<<<<< @@ -2706,7 +2671,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Builder { static struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Builder *__pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Builder; -/* "schema.pyx":249 +/* "schema.pyx":253 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Member_Annotation_Builder: # <<<<<<<<<<<<<< @@ -2720,7 +2685,7 @@ struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Builder { static struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Builder *__pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Builder; -/* "schema.pyx":235 +/* "schema.pyx":239 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Member_Annotation_Reader: # <<<<<<<<<<<<<< @@ -2734,12 +2699,12 @@ struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Reader { static struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Reader *__pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Reader; -/* "schema.pyx":1689 +/* "schema.pyx":1695 * return _AnnotationReader().init(self.thisptr.getRootAnnotation()) * * cdef class StreamFdMessageReader(MessageReader): # <<<<<<<<<<<<<< * def __cinit__(self, int fd): - * self.thisptr = new capnp.StreamFdMessageReader(int) + * self.thisptr = new capnp.StreamFdMessageReader(fd) */ struct __pyx_vtabstruct_6schema_StreamFdMessageReader { @@ -2748,7 +2713,7 @@ struct __pyx_vtabstruct_6schema_StreamFdMessageReader { static struct __pyx_vtabstruct_6schema_StreamFdMessageReader *__pyx_vtabptr_6schema_StreamFdMessageReader; -/* "schema.pyx":114 +/* "schema.pyx":118 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Union_StructNode_Member_Builder: # <<<<<<<<<<<<<< @@ -2762,7 +2727,7 @@ struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Builder static struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Builder *__pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Builder; -/* "schema.pyx":397 +/* "schema.pyx":401 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_Enumerant_Annotation_Reader: # <<<<<<<<<<<<<< @@ -2776,7 +2741,7 @@ struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Reader { static struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Reader *__pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Reader; -/* "schema.pyx":878 +/* "schema.pyx":884 * return None * * cdef class _Type_BodyBuilder: # <<<<<<<<<<<<<< @@ -2791,7 +2756,7 @@ struct __pyx_vtabstruct_6schema__Type_BodyBuilder { static struct __pyx_vtabstruct_6schema__Type_BodyBuilder *__pyx_vtabptr_6schema__Type_BodyBuilder; -/* "schema.pyx":768 +/* "schema.pyx":774 * return _Value_BodyReader().init(self.thisptr.getBody()) * * cdef class _ValueBuilder: # <<<<<<<<<<<<<< @@ -2805,7 +2770,7 @@ struct __pyx_vtabstruct_6schema__ValueBuilder { static struct __pyx_vtabstruct_6schema__ValueBuilder *__pyx_vtabptr_6schema__ValueBuilder; -/* "schema.pyx":1520 +/* "schema.pyx":1526 * return self.thisptr.getOffset() * * cdef class _StructNode_FieldBuilder: # <<<<<<<<<<<<<< @@ -2819,7 +2784,7 @@ struct __pyx_vtabstruct_6schema__StructNode_FieldBuilder { static struct __pyx_vtabstruct_6schema__StructNode_FieldBuilder *__pyx_vtabptr_6schema__StructNode_FieldBuilder; -/* "schema.pyx":1592 +/* "schema.pyx":1598 * return _ValueReader().init(self.thisptr.getValue()) * * cdef class _AnnotationBuilder: # <<<<<<<<<<<<<< @@ -2833,7 +2798,7 @@ struct __pyx_vtabstruct_6schema__AnnotationBuilder { static struct __pyx_vtabstruct_6schema__AnnotationBuilder *__pyx_vtabptr_6schema__AnnotationBuilder; -/* "schema.pyx":1004 +/* "schema.pyx":1010 * * * cdef class _FileNode_ImportReader: # <<<<<<<<<<<<<< @@ -2847,7 +2812,7 @@ struct __pyx_vtabstruct_6schema__FileNode_ImportReader { static struct __pyx_vtabstruct_6schema__FileNode_ImportReader *__pyx_vtabptr_6schema__FileNode_ImportReader; -/* "schema.pyx":1084 +/* "schema.pyx":1090 * return _FileNodeReader().init(self.thisptr.getFileNode()) * * cdef class _Node_BodyBuilder: # <<<<<<<<<<<<<< @@ -2862,7 +2827,7 @@ struct __pyx_vtabstruct_6schema__Node_BodyBuilder { static struct __pyx_vtabstruct_6schema__Node_BodyBuilder *__pyx_vtabptr_6schema__Node_BodyBuilder; -/* "schema.pyx":411 +/* "schema.pyx":415 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_Enumerant_Annotation_Builder: # <<<<<<<<<<<<<< @@ -2876,7 +2841,7 @@ struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Builder { static struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Builder *__pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Builder; -/* "schema.pyx":208 +/* "schema.pyx":212 * def __len__(self): * return self.thisptr.size() * cdef class _List_Node_Node_NestedNode_Reader: # <<<<<<<<<<<<<< @@ -2890,7 +2855,7 @@ struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Reader { static struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Reader *__pyx_vtabptr_6schema__List_Node_Node_NestedNode_Reader; -/* "schema.pyx":100 +/* "schema.pyx":104 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_Union_StructNode_Member_Reader: # <<<<<<<<<<<<<< @@ -2904,7 +2869,7 @@ struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Reader static struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Reader *__pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Reader; -/* "schema.pyx":1504 +/* "schema.pyx":1510 * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * * cdef class _StructNode_FieldReader: # <<<<<<<<<<<<<< @@ -2918,7 +2883,7 @@ struct __pyx_vtabstruct_6schema__StructNode_FieldReader { static struct __pyx_vtabstruct_6schema__StructNode_FieldReader *__pyx_vtabptr_6schema__StructNode_FieldReader; -/* "schema.pyx":565 +/* "schema.pyx":569 * cpdef initAnnotations(self, uint num): * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * cdef class _InterfaceNodeReader: # <<<<<<<<<<<<<< @@ -2932,7 +2897,7 @@ struct __pyx_vtabstruct_6schema__InterfaceNodeReader { static struct __pyx_vtabstruct_6schema__InterfaceNodeReader *__pyx_vtabptr_6schema__InterfaceNodeReader; -/* "schema.pyx":46 +/* "schema.pyx":50 * enums['reverse_mapping'] = reverse * return type(enum_name, (), enums) * cdef class _List_InterfaceNode_InterfaceNode_Method_Reader: # <<<<<<<<<<<<<< @@ -2946,7 +2911,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Reader static struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *__pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Reader; -/* "schema.pyx":289 +/* "schema.pyx":293 * def __len__(self): * return self.thisptr.size() * cdef class _List_StructNode_StructNode_Member_Reader: # <<<<<<<<<<<<<< @@ -2960,7 +2925,7 @@ struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Reader { static struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Reader *__pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Reader; -/* "schema.pyx":529 +/* "schema.pyx":533 * return _List_InterfaceNode_Method_Annotation_Reader().init(self.thisptr.getAnnotations()) * * cdef class _InterfaceNode_MethodBuilder: # <<<<<<<<<<<<<< @@ -2976,7 +2941,7 @@ struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder { static struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder *__pyx_vtabptr_6schema__InterfaceNode_MethodBuilder; -/* "schema.pyx":780 +/* "schema.pyx":786 * pass * * cdef class _ConstNodeReader: # <<<<<<<<<<<<<< @@ -2990,7 +2955,7 @@ struct __pyx_vtabstruct_6schema__ConstNodeReader { static struct __pyx_vtabstruct_6schema__ConstNodeReader *__pyx_vtabptr_6schema__ConstNodeReader; -/* "schema.pyx":1325 +/* "schema.pyx":1331 * * * cdef class _EnumNode_EnumerantReader: # <<<<<<<<<<<<<< @@ -3004,7 +2969,7 @@ struct __pyx_vtabstruct_6schema__EnumNode_EnumerantReader { static struct __pyx_vtabstruct_6schema__EnumNode_EnumerantReader *__pyx_vtabptr_6schema__EnumNode_EnumerantReader; -/* "schema.pyx":73 +/* "schema.pyx":77 * def __len__(self): * return self.thisptr.size() * cdef class _List_EnumNode_EnumNode_Enumerant_Reader: # <<<<<<<<<<<<<< @@ -3018,7 +2983,7 @@ struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Reader { static struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Reader *__pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Reader; -/* "schema.pyx":1557 +/* "schema.pyx":1563 * return self.thisptr.getPointerSectionSize() * * cdef class _StructNodeBuilder: # <<<<<<<<<<<<<< @@ -3033,7 +2998,7 @@ struct __pyx_vtabstruct_6schema__StructNodeBuilder { static struct __pyx_vtabstruct_6schema__StructNodeBuilder *__pyx_vtabptr_6schema__StructNodeBuilder; -/* "schema.pyx":1398 +/* "schema.pyx":1404 * return _List_StructNode_Union_StructNode_Member_Reader().init(self.thisptr.getMembers()) * * cdef class _StructNode_UnionBuilder: # <<<<<<<<<<<<<< @@ -3048,7 +3013,7 @@ struct __pyx_vtabstruct_6schema__StructNode_UnionBuilder { static struct __pyx_vtabstruct_6schema__StructNode_UnionBuilder *__pyx_vtabptr_6schema__StructNode_UnionBuilder; -/* "schema.pyx":168 +/* "schema.pyx":172 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Param_Annotation_Builder: # <<<<<<<<<<<<<< @@ -3062,7 +3027,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Buil static struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *__pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Builder; -/* "schema.pyx":1257 +/* "schema.pyx":1263 * return self.thisptr.getTargetsMethod() * * cdef class _AnnotationNodeBuilder: # <<<<<<<<<<<<<< @@ -3076,7 +3041,7 @@ struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder { static struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder *__pyx_vtabptr_6schema__AnnotationNodeBuilder; -/* "schema.pyx":1579 +/* "schema.pyx":1585 * self.thisptr.setPointerSectionSize(val) * * cdef class _AnnotationReader: # <<<<<<<<<<<<<< @@ -3090,7 +3055,7 @@ struct __pyx_vtabstruct_6schema__AnnotationReader { static struct __pyx_vtabstruct_6schema__AnnotationReader *__pyx_vtabptr_6schema__AnnotationReader; -/* "schema.pyx":154 +/* "schema.pyx":158 * def __len__(self): * return self.thisptr.size() * cdef class _List_InterfaceNode_Method_Param_Annotation_Reader: # <<<<<<<<<<<<<< @@ -3104,7 +3069,7 @@ struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Read static struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *__pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Reader; -/* "schema.pyx":758 +/* "schema.pyx":764 * def __set__(self, val): * pass * cdef class _ValueReader: # <<<<<<<<<<<<<< @@ -3118,7 +3083,7 @@ struct __pyx_vtabstruct_6schema__ValueReader { static struct __pyx_vtabstruct_6schema__ValueReader *__pyx_vtabptr_6schema__ValueReader; -/* "schema.pyx":1057 +/* "schema.pyx":1063 * * _Node_Body_Which = make_enum('_Node_Body_Which',annotationNode = _Node_Body_annotationNode,interfaceNode = _Node_Body_interfaceNode,enumNode = _Node_Body_enumNode,structNode = _Node_Body_structNode,constNode = _Node_Body_constNode,fileNode = _Node_Body_fileNode,) * cdef class _Node_BodyReader: # <<<<<<<<<<<<<< @@ -3569,25 +3534,25 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_14requestedFile static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_2initRequestedFiles(struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *__pyx_v_self, __pyx_t_6schema_uint __pyx_v_num); /* proto */ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_12defaultValue___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_4type___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_4name___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_11annotations___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_12defaultValue___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_12defaultValue_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4type___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4type_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4name___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4name_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_11annotations___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_initAnnotations(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self, __pyx_t_6schema_uint __pyx_v_num); /* proto */ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_9codeOrder___get__(struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_4name___get__(struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_6params___get__(struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_18requiredParamCount___get__(struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_10returnType___get__(struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_11annotations___get__(struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_9codeOrder___get__(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_28_InterfaceNode_MethodBuilder_9codeOrder_2__set__(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_4name___get__(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_28_InterfaceNode_MethodBuilder_4name_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_6params___get__(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_initParams(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self, __pyx_t_6schema_uint __pyx_v_num); /* proto */ @@ -3604,7 +3569,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_which(struct __pyx_obj_6sc static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint32Value___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_12float64Value___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9voidValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9dataValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9dataValue___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9listValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int32Value___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9enumValue___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ @@ -3617,7 +3582,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint16Value___get__(stru static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10uint8Value___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int64Value___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11structValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9textValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9textValue___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint64Value___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11objectValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_which(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ @@ -3627,7 +3592,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_12float64Value___get__(st static int __pyx_pf_6schema_18_Value_BodyBuilder_12float64Value_2__set__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9voidValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_18_Value_BodyBuilder_9voidValue_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9dataValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9dataValue___get__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_18_Value_BodyBuilder_9dataValue_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9listValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_18_Value_BodyBuilder_9listValue_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ @@ -3653,7 +3618,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10int64Value___get__(stru static int __pyx_pf_6schema_18_Value_BodyBuilder_10int64Value_2__set__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11structValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_18_Value_BodyBuilder_11structValue_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9textValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9textValue___get__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_18_Value_BodyBuilder_9textValue_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11uint64Value___get__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_18_Value_BodyBuilder_11uint64Value_2__set__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ @@ -3731,10 +3696,10 @@ static PyObject *__pyx_pf_6schema_11_TypeReader_4body___get__(struct __pyx_obj_6 static PyObject *__pyx_pf_6schema_12_TypeBuilder_4body___get__(struct __pyx_obj_6schema__TypeBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_12_TypeBuilder_4body_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__TypeBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_22_FileNode_ImportReader_2id___get__(struct __pyx_obj_6schema__FileNode_ImportReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_22_FileNode_ImportReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__FileNode_ImportReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_22_FileNode_ImportReader_4name___get__(struct __pyx_obj_6schema__FileNode_ImportReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_23_FileNode_ImportBuilder_2id___get__(struct __pyx_obj_6schema__FileNode_ImportBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_23_FileNode_ImportBuilder_2id_2__set__(struct __pyx_obj_6schema__FileNode_ImportBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_23_FileNode_ImportBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__FileNode_ImportBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_23_FileNode_ImportBuilder_4name___get__(struct __pyx_obj_6schema__FileNode_ImportBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_23_FileNode_ImportBuilder_4name_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__FileNode_ImportBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_15_FileNodeReader_7imports___get__(struct __pyx_obj_6schema__FileNodeReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_16_FileNodeBuilder_7imports___get__(struct __pyx_obj_6schema__FileNodeBuilder *__pyx_v_self); /* proto */ @@ -3759,21 +3724,21 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_9constNode___get__(struct static int __pyx_pf_6schema_17_Node_BodyBuilder_9constNode_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Node_BodyBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_8fileNode___get__(struct __pyx_obj_6schema__Node_BodyBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_17_Node_BodyBuilder_8fileNode_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Node_BodyBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Node_NestedNodeReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_4name___get__(struct __pyx_obj_6schema__Node_NestedNodeReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_2id___get__(struct __pyx_obj_6schema__Node_NestedNodeReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_23_Node_NestedNodeBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Node_NestedNodeBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_23_Node_NestedNodeBuilder_4name___get__(struct __pyx_obj_6schema__Node_NestedNodeBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_23_Node_NestedNodeBuilder_4name_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__Node_NestedNodeBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_23_Node_NestedNodeBuilder_2id___get__(struct __pyx_obj_6schema__Node_NestedNodeBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_23_Node_NestedNodeBuilder_2id_2__set__(struct __pyx_obj_6schema__Node_NestedNodeBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_11_NodeReader_4body___get__(struct __pyx_obj_6schema__NodeReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_11_NodeReader_11displayName___get__(CYTHON_UNUSED struct __pyx_obj_6schema__NodeReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_11_NodeReader_11displayName___get__(struct __pyx_obj_6schema__NodeReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_11_NodeReader_11annotations___get__(struct __pyx_obj_6schema__NodeReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_11_NodeReader_7scopeId___get__(struct __pyx_obj_6schema__NodeReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_11_NodeReader_11nestedNodes___get__(struct __pyx_obj_6schema__NodeReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_11_NodeReader_2id___get__(struct __pyx_obj_6schema__NodeReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_12_NodeBuilder_4body___get__(struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_12_NodeBuilder_4body_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_12_NodeBuilder_11displayName___get__(CYTHON_UNUSED struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_12_NodeBuilder_11displayName___get__(struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_12_NodeBuilder_11displayName_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_12_NodeBuilder_11annotations___get__(struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_12_NodeBuilder_initAnnotations(struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self, __pyx_t_6schema_uint __pyx_v_num); /* proto */ @@ -3820,11 +3785,11 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_16targetsInterface_2__set__ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsMethod___get__(struct __pyx_obj_6schema__AnnotationNodeBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsMethod_2__set__(struct __pyx_obj_6schema__AnnotationNodeBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_9codeOrder___get__(struct __pyx_obj_6schema__EnumNode_EnumerantReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__EnumNode_EnumerantReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_4name___get__(struct __pyx_obj_6schema__EnumNode_EnumerantReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_11annotations___get__(struct __pyx_obj_6schema__EnumNode_EnumerantReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_9codeOrder___get__(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_26_EnumNode_EnumerantBuilder_9codeOrder_2__set__(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_4name___get__(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_26_EnumNode_EnumerantBuilder_4name_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_11annotations___get__(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_initAnnotations(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self, __pyx_t_6schema_uint __pyx_v_num); /* proto */ @@ -3848,7 +3813,7 @@ static int __pyx_pf_6schema_30_StructNode_Member_BodyBuilder_11unionMember_2__se static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_7ordinal___get__(struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_4body___get__(struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_9codeOrder___get__(struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_4name___get__(struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_11annotations___get__(struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_7ordinal___get__(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_25_StructNode_MemberBuilder_7ordinal_2__set__(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ @@ -3856,7 +3821,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_4body___get__(stru static int __pyx_pf_6schema_25_StructNode_MemberBuilder_4body_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_9codeOrder___get__(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_25_StructNode_MemberBuilder_9codeOrder_2__set__(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self, PyObject *__pyx_v_val); /* proto */ -static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self); /* proto */ +static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_4name___get__(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self); /* proto */ static int __pyx_pf_6schema_25_StructNode_MemberBuilder_4name_2__set__(CYTHON_UNUSED struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_val); /* proto */ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_11annotations___get__(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_initAnnotations(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self, __pyx_t_6schema_uint __pyx_v_num); /* proto */ @@ -3920,8 +3885,8 @@ static PyObject *__pyx_pf_6schema_13MessageReader_16getRootAnnotationNode(struct static PyObject *__pyx_pf_6schema_13MessageReader_18getRootEnumNode(struct __pyx_obj_6schema_MessageReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_13MessageReader_20getRootStructNode(struct __pyx_obj_6schema_MessageReader *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_6schema_13MessageReader_22getRootAnnotation(struct __pyx_obj_6schema_MessageReader *__pyx_v_self); /* proto */ -static int __pyx_pf_6schema_21StreamFdMessageReader___cinit__(struct __pyx_obj_6schema_StreamFdMessageReader *__pyx_v_self, CYTHON_UNUSED int __pyx_v_fd); /* proto */ -static int __pyx_pf_6schema_21PackedFdMessageReader___cinit__(struct __pyx_obj_6schema_PackedFdMessageReader *__pyx_v_self, CYTHON_UNUSED int __pyx_v_fd); /* proto */ +static int __pyx_pf_6schema_21StreamFdMessageReader___cinit__(struct __pyx_obj_6schema_StreamFdMessageReader *__pyx_v_self, int __pyx_v_fd); /* proto */ +static int __pyx_pf_6schema_21PackedFdMessageReader___cinit__(struct __pyx_obj_6schema_PackedFdMessageReader *__pyx_v_self, int __pyx_v_fd); /* proto */ static PyObject *__pyx_pf_6schema_2writeMessageToFd(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_fd, struct __pyx_obj_6schema_MessageBuilder *__pyx_v_m); /* proto */ static PyObject *__pyx_pf_6schema_4writePackedMessageToFd(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_fd, struct __pyx_obj_6schema_MessageBuilder *__pyx_v_m); /* proto */ static PyObject *__pyx_tp_new_6schema__List_FileNode_FileNode_Import_Reader(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ @@ -4426,7 +4391,7 @@ static PyObject *__pyx_pw_6schema_1make_enum(PyObject *__pyx_self, PyObject *__p } if (unlikely(kw_args > 0)) { const Py_ssize_t used_pos_args = (pos_args < 1) ? pos_args : 1; - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_named, values, used_pos_args, "make_enum") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_named, values, used_pos_args, "make_enum") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) < 1) { goto __pyx_L5_argtuple_error; @@ -4437,7 +4402,7 @@ static PyObject *__pyx_pw_6schema_1make_enum(PyObject *__pyx_self, PyObject *__p } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("make_enum", 0, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __Pyx_RaiseArgtupleInvalid("make_enum", 0, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_DECREF(__pyx_v_sequential); __pyx_v_sequential = 0; __Pyx_DECREF(__pyx_v_named); __pyx_v_named = 0; @@ -4453,7 +4418,7 @@ static PyObject *__pyx_pw_6schema_1make_enum(PyObject *__pyx_self, PyObject *__p } static PyObject *__pyx_gb_6schema_9make_enum_2generator(__pyx_GeneratorObject *__pyx_generator, PyObject *__pyx_sent_value); /* proto */ -/* "schema.pyx":43 +/* "schema.pyx":47 * def make_enum(enum_name, *sequential, **named): * enums = dict(zip(sequential, range(len(sequential))), **named) * reverse = dict((value, key) for key, value in enums.iteritems()) # <<<<<<<<<<<<<< @@ -4479,7 +4444,7 @@ static PyObject *__pyx_pf_6schema_9make_enum_genexpr(PyObject *__pyx_self) { __Pyx_INCREF(((PyObject *)__pyx_cur_scope->__pyx_outer_scope)); __Pyx_GIVEREF(__pyx_cur_scope->__pyx_outer_scope); { - __pyx_GeneratorObject *gen = __Pyx_Generator_New((__pyx_generator_body_t) __pyx_gb_6schema_9make_enum_2generator, (PyObject *) __pyx_cur_scope); if (unlikely(!gen)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_GeneratorObject *gen = __Pyx_Generator_New((__pyx_generator_body_t) __pyx_gb_6schema_9make_enum_2generator, (PyObject *) __pyx_cur_scope); if (unlikely(!gen)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_cur_scope); __Pyx_RefNannyFinishContext(); return (PyObject *) gen; @@ -4521,14 +4486,14 @@ static PyObject *__pyx_gb_6schema_9make_enum_2generator(__pyx_GeneratorObject *_ return NULL; } __pyx_L3_first_run:; - if (unlikely(!__pyx_sent_value)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (unlikely(!__pyx_sent_value)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = 0; - if (unlikely(!__pyx_cur_scope->__pyx_outer_scope->__pyx_v_enums)) { __Pyx_RaiseClosureNameError("enums"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } + if (unlikely(!__pyx_cur_scope->__pyx_outer_scope->__pyx_v_enums)) { __Pyx_RaiseClosureNameError("enums"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (unlikely(((PyObject *)__pyx_cur_scope->__pyx_outer_scope->__pyx_v_enums) == Py_None)) { PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%s'", "iteritems"); - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } - __pyx_t_5 = __Pyx_dict_iterator(((PyObject *)__pyx_cur_scope->__pyx_outer_scope->__pyx_v_enums), 1, ((PyObject *)__pyx_n_s__iteritems), (&__pyx_t_3), (&__pyx_t_4)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_5 = __Pyx_dict_iterator(((PyObject *)__pyx_cur_scope->__pyx_outer_scope->__pyx_v_enums), 1, ((PyObject *)__pyx_n_s__iteritems), (&__pyx_t_3), (&__pyx_t_4)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = __pyx_t_5; @@ -4536,7 +4501,7 @@ static PyObject *__pyx_gb_6schema_9make_enum_2generator(__pyx_GeneratorObject *_ while (1) { __pyx_t_7 = __Pyx_dict_iter_next(__pyx_t_1, __pyx_t_3, &__pyx_t_2, &__pyx_t_5, &__pyx_t_6, NULL, __pyx_t_4); if (unlikely(__pyx_t_7 == 0)) break; - if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_6); __Pyx_XGOTREF(__pyx_cur_scope->__pyx_v_key); @@ -4549,7 +4514,7 @@ static PyObject *__pyx_gb_6schema_9make_enum_2generator(__pyx_GeneratorObject *_ __Pyx_GIVEREF(__pyx_t_6); __pyx_cur_scope->__pyx_v_value = __pyx_t_6; __pyx_t_6 = 0; - __pyx_t_6 = PyTuple_New(2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_6 = PyTuple_New(2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_INCREF(__pyx_cur_scope->__pyx_v_value); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_cur_scope->__pyx_v_value); @@ -4576,7 +4541,7 @@ static PyObject *__pyx_gb_6schema_9make_enum_2generator(__pyx_GeneratorObject *_ __pyx_t_2 = __pyx_cur_scope->__pyx_t_1; __pyx_t_3 = __pyx_cur_scope->__pyx_t_2; __pyx_t_4 = __pyx_cur_scope->__pyx_t_3; - if (unlikely(!__pyx_sent_value)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (unlikely(!__pyx_sent_value)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; PyErr_SetNone(PyExc_StopIteration); @@ -4594,7 +4559,7 @@ static PyObject *__pyx_gb_6schema_9make_enum_2generator(__pyx_GeneratorObject *_ return NULL; } -/* "schema.pyx":41 +/* "schema.pyx":45 * T operator[](uint) * uint size() * def make_enum(enum_name, *sequential, **named): # <<<<<<<<<<<<<< @@ -4622,25 +4587,25 @@ static PyObject *__pyx_pf_6schema_make_enum(CYTHON_UNUSED PyObject *__pyx_self, } __Pyx_GOTREF(__pyx_cur_scope); - /* "schema.pyx":42 + /* "schema.pyx":46 * uint size() * def make_enum(enum_name, *sequential, **named): * enums = dict(zip(sequential, range(len(sequential))), **named) # <<<<<<<<<<<<<< * reverse = dict((value, key) for key, value in enums.iteritems()) * enums['reverse_mapping'] = reverse */ - __pyx_t_1 = PyTuple_GET_SIZE(((PyObject *)__pyx_v_sequential)); if (unlikely(__pyx_t_1 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = PyInt_FromSsize_t(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyTuple_GET_SIZE(((PyObject *)__pyx_v_sequential)); if (unlikely(__pyx_t_1 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyInt_FromSsize_t(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_builtin_range, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_builtin_range, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; - __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_INCREF(((PyObject *)__pyx_v_sequential)); PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_v_sequential)); @@ -4648,46 +4613,46 @@ static PyObject *__pyx_pf_6schema_make_enum(CYTHON_UNUSED PyObject *__pyx_self, PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_builtin_zip, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_builtin_zip, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = ((PyObject *)__pyx_v_named); __Pyx_INCREF(__pyx_t_2); - __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)(&PyDict_Type))), ((PyObject *)__pyx_t_3), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)(&PyDict_Type))), ((PyObject *)__pyx_t_3), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; - if (!(likely(PyDict_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected dict, got %.200s", Py_TYPE(__pyx_t_4)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (!(likely(PyDict_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected dict, got %.200s", Py_TYPE(__pyx_t_4)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GIVEREF(__pyx_t_4); __pyx_cur_scope->__pyx_v_enums = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; - /* "schema.pyx":43 + /* "schema.pyx":47 * def make_enum(enum_name, *sequential, **named): * enums = dict(zip(sequential, range(len(sequential))), **named) * reverse = dict((value, key) for key, value in enums.iteritems()) # <<<<<<<<<<<<<< * enums['reverse_mapping'] = reverse * return type(enum_name, (), enums) */ - __pyx_t_4 = __pyx_pf_6schema_9make_enum_genexpr(((PyObject*)__pyx_cur_scope)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = __pyx_pf_6schema_9make_enum_genexpr(((PyObject*)__pyx_cur_scope)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)(&PyDict_Type))), ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)(&PyDict_Type))), ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_v_reverse = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; - /* "schema.pyx":44 + /* "schema.pyx":48 * enums = dict(zip(sequential, range(len(sequential))), **named) * reverse = dict((value, key) for key, value in enums.iteritems()) * enums['reverse_mapping'] = reverse # <<<<<<<<<<<<<< @@ -4696,11 +4661,11 @@ static PyObject *__pyx_pf_6schema_make_enum(CYTHON_UNUSED PyObject *__pyx_self, */ if (unlikely(((PyObject *)__pyx_cur_scope->__pyx_v_enums) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 44; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 48; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } - if (PyDict_SetItem(((PyObject *)__pyx_cur_scope->__pyx_v_enums), ((PyObject *)__pyx_n_s__reverse_mapping), ((PyObject *)__pyx_v_reverse)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 44; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(((PyObject *)__pyx_cur_scope->__pyx_v_enums), ((PyObject *)__pyx_n_s__reverse_mapping), ((PyObject *)__pyx_v_reverse)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 48; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - /* "schema.pyx":45 + /* "schema.pyx":49 * reverse = dict((value, key) for key, value in enums.iteritems()) * enums['reverse_mapping'] = reverse * return type(enum_name, (), enums) # <<<<<<<<<<<<<< @@ -4708,7 +4673,7 @@ static PyObject *__pyx_pf_6schema_make_enum(CYTHON_UNUSED PyObject *__pyx_self, * cdef List[C_InterfaceNode.InterfaceNode.Method].Reader thisptr */ __Pyx_XDECREF(__pyx_r); - __pyx_t_4 = PyTuple_New(3); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = PyTuple_New(3); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 49; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(__pyx_v_enum_name); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_enum_name); @@ -4719,7 +4684,7 @@ static PyObject *__pyx_pf_6schema_make_enum(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_INCREF(((PyObject *)__pyx_cur_scope->__pyx_v_enums)); PyTuple_SET_ITEM(__pyx_t_4, 2, ((PyObject *)__pyx_cur_scope->__pyx_v_enums)); __Pyx_GIVEREF(((PyObject *)__pyx_cur_scope->__pyx_v_enums)); - __pyx_t_2 = PyObject_Call(((PyObject *)((PyObject*)(&PyType_Type))), ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(((PyObject *)((PyObject*)(&PyType_Type))), ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 49; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_r = __pyx_t_2; @@ -4742,7 +4707,7 @@ static PyObject *__pyx_pf_6schema_make_enum(CYTHON_UNUSED PyObject *__pyx_self, return __pyx_r; } -/* "schema.pyx":48 +/* "schema.pyx":52 * cdef class _List_InterfaceNode_InterfaceNode_Method_Reader: * cdef List[C_InterfaceNode.InterfaceNode.Method].Reader thisptr * cdef init(self, List[C_InterfaceNode.InterfaceNode.Method].Reader other): # <<<<<<<<<<<<<< @@ -4755,7 +4720,7 @@ static PyObject *__pyx_f_6schema_47_List_InterfaceNode_InterfaceNode_Method_Read __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":49 + /* "schema.pyx":53 * cdef List[C_InterfaceNode.InterfaceNode.Method].Reader thisptr * cdef init(self, List[C_InterfaceNode.InterfaceNode.Method].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -4764,7 +4729,7 @@ static PyObject *__pyx_f_6schema_47_List_InterfaceNode_InterfaceNode_Method_Read */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":50 + /* "schema.pyx":54 * cdef init(self, List[C_InterfaceNode.InterfaceNode.Method].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -4794,7 +4759,7 @@ static PyObject *__pyx_pw_6schema_47_List_InterfaceNode_InterfaceNode_Method_Rea return __pyx_r; } -/* "schema.pyx":51 +/* "schema.pyx":55 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -4816,60 +4781,60 @@ static PyObject *__pyx_pf_6schema_47_List_InterfaceNode_InterfaceNode_Method_Rea __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":52 + /* "schema.pyx":56 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 52; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":53 + /* "schema.pyx":57 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 53; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 53; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 57; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 57; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":54 + /* "schema.pyx":58 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_MethodReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 54; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 58; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 54; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 58; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":55 + /* "schema.pyx":59 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _InterfaceNode_MethodReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 55; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":56 + /* "schema.pyx":60 * raise IndexError('Out of bounds') * index = index % size * return _InterfaceNode_MethodReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -4877,10 +4842,10 @@ static PyObject *__pyx_pf_6schema_47_List_InterfaceNode_InterfaceNode_Method_Rea * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodReader *)((struct __pyx_obj_6schema__InterfaceNode_MethodReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_MethodReader *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodReader *)((struct __pyx_obj_6schema__InterfaceNode_MethodReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_MethodReader *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -4913,7 +4878,7 @@ static Py_ssize_t __pyx_pw_6schema_47_List_InterfaceNode_InterfaceNode_Method_Re return __pyx_r; } -/* "schema.pyx":58 +/* "schema.pyx":62 * return _InterfaceNode_MethodReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -4926,7 +4891,7 @@ static Py_ssize_t __pyx_pf_6schema_47_List_InterfaceNode_InterfaceNode_Method_Re __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":59 + /* "schema.pyx":63 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -4942,7 +4907,7 @@ static Py_ssize_t __pyx_pf_6schema_47_List_InterfaceNode_InterfaceNode_Method_Re return __pyx_r; } -/* "schema.pyx":62 +/* "schema.pyx":66 * cdef class _List_InterfaceNode_InterfaceNode_Method_Builder: * cdef List[C_InterfaceNode.InterfaceNode.Method].Builder thisptr * cdef init(self, List[C_InterfaceNode.InterfaceNode.Method].Builder other): # <<<<<<<<<<<<<< @@ -4955,7 +4920,7 @@ static PyObject *__pyx_f_6schema_48_List_InterfaceNode_InterfaceNode_Method_Buil __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":63 + /* "schema.pyx":67 * cdef List[C_InterfaceNode.InterfaceNode.Method].Builder thisptr * cdef init(self, List[C_InterfaceNode.InterfaceNode.Method].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -4964,7 +4929,7 @@ static PyObject *__pyx_f_6schema_48_List_InterfaceNode_InterfaceNode_Method_Buil */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":64 + /* "schema.pyx":68 * cdef init(self, List[C_InterfaceNode.InterfaceNode.Method].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -4994,7 +4959,7 @@ static PyObject *__pyx_pw_6schema_48_List_InterfaceNode_InterfaceNode_Method_Bui return __pyx_r; } -/* "schema.pyx":65 +/* "schema.pyx":69 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -5016,60 +4981,60 @@ static PyObject *__pyx_pf_6schema_48_List_InterfaceNode_InterfaceNode_Method_Bui __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":66 + /* "schema.pyx":70 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":67 + /* "schema.pyx":71 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 71; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 71; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":68 + /* "schema.pyx":72 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_MethodBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":69 + /* "schema.pyx":73 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _InterfaceNode_MethodBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":70 + /* "schema.pyx":74 * raise IndexError('Out of bounds') * index = index % size * return _InterfaceNode_MethodBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -5077,10 +5042,10 @@ static PyObject *__pyx_pf_6schema_48_List_InterfaceNode_InterfaceNode_Method_Bui * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder *)((struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder *)((struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -5113,7 +5078,7 @@ static Py_ssize_t __pyx_pw_6schema_48_List_InterfaceNode_InterfaceNode_Method_Bu return __pyx_r; } -/* "schema.pyx":71 +/* "schema.pyx":75 * index = index % size * return _InterfaceNode_MethodBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -5126,7 +5091,7 @@ static Py_ssize_t __pyx_pf_6schema_48_List_InterfaceNode_InterfaceNode_Method_Bu __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":72 + /* "schema.pyx":76 * return _InterfaceNode_MethodBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -5142,7 +5107,7 @@ static Py_ssize_t __pyx_pf_6schema_48_List_InterfaceNode_InterfaceNode_Method_Bu return __pyx_r; } -/* "schema.pyx":75 +/* "schema.pyx":79 * cdef class _List_EnumNode_EnumNode_Enumerant_Reader: * cdef List[C_EnumNode.EnumNode.Enumerant].Reader thisptr * cdef init(self, List[C_EnumNode.EnumNode.Enumerant].Reader other): # <<<<<<<<<<<<<< @@ -5155,7 +5120,7 @@ static PyObject *__pyx_f_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader_init __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":76 + /* "schema.pyx":80 * cdef List[C_EnumNode.EnumNode.Enumerant].Reader thisptr * cdef init(self, List[C_EnumNode.EnumNode.Enumerant].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -5164,7 +5129,7 @@ static PyObject *__pyx_f_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader_init */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":77 + /* "schema.pyx":81 * cdef init(self, List[C_EnumNode.EnumNode.Enumerant].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -5194,7 +5159,7 @@ static PyObject *__pyx_pw_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader_1__ return __pyx_r; } -/* "schema.pyx":78 +/* "schema.pyx":82 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -5216,60 +5181,60 @@ static PyObject *__pyx_pf_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader___g __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":79 + /* "schema.pyx":83 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 79; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 83; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":80 + /* "schema.pyx":84 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 84; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 84; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":81 + /* "schema.pyx":85 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _EnumNode_EnumerantReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_4), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 81; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_4), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 85; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 81; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 85; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":82 + /* "schema.pyx":86 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _EnumNode_EnumerantReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 82; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 86; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":83 + /* "schema.pyx":87 * raise IndexError('Out of bounds') * index = index % size * return _EnumNode_EnumerantReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -5277,10 +5242,10 @@ static PyObject *__pyx_pf_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader___g * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 83; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 83; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__EnumNode_EnumerantReader *)((struct __pyx_obj_6schema__EnumNode_EnumerantReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNode_EnumerantReader *)__pyx_t_1), ((::capnp::schema::EnumNode::Enumerant::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 83; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__EnumNode_EnumerantReader *)((struct __pyx_obj_6schema__EnumNode_EnumerantReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNode_EnumerantReader *)__pyx_t_1), ((::capnp::schema::EnumNode::Enumerant::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -5313,7 +5278,7 @@ static Py_ssize_t __pyx_pw_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader_3_ return __pyx_r; } -/* "schema.pyx":85 +/* "schema.pyx":89 * return _EnumNode_EnumerantReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -5326,7 +5291,7 @@ static Py_ssize_t __pyx_pf_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader_2_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":86 + /* "schema.pyx":90 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -5342,7 +5307,7 @@ static Py_ssize_t __pyx_pf_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader_2_ return __pyx_r; } -/* "schema.pyx":89 +/* "schema.pyx":93 * cdef class _List_EnumNode_EnumNode_Enumerant_Builder: * cdef List[C_EnumNode.EnumNode.Enumerant].Builder thisptr * cdef init(self, List[C_EnumNode.EnumNode.Enumerant].Builder other): # <<<<<<<<<<<<<< @@ -5355,7 +5320,7 @@ static PyObject *__pyx_f_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder_ini __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":90 + /* "schema.pyx":94 * cdef List[C_EnumNode.EnumNode.Enumerant].Builder thisptr * cdef init(self, List[C_EnumNode.EnumNode.Enumerant].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -5364,7 +5329,7 @@ static PyObject *__pyx_f_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder_ini */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":91 + /* "schema.pyx":95 * cdef init(self, List[C_EnumNode.EnumNode.Enumerant].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -5394,7 +5359,7 @@ static PyObject *__pyx_pw_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder_1_ return __pyx_r; } -/* "schema.pyx":92 +/* "schema.pyx":96 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -5416,60 +5381,60 @@ static PyObject *__pyx_pf_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder___ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":93 + /* "schema.pyx":97 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 93; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 97; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":94 + /* "schema.pyx":98 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 94; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 94; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 98; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 98; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":95 + /* "schema.pyx":99 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _EnumNode_EnumerantBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_5), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 95; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_5), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 95; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":96 + /* "schema.pyx":100 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _EnumNode_EnumerantBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 96; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":97 + /* "schema.pyx":101 * raise IndexError('Out of bounds') * index = index % size * return _EnumNode_EnumerantBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -5477,10 +5442,10 @@ static PyObject *__pyx_pf_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder___ * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 97; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 101; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 97; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__EnumNode_EnumerantBuilder *)((struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *)__pyx_t_1), ((::capnp::schema::EnumNode::Enumerant::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 97; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 101; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__EnumNode_EnumerantBuilder *)((struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *)__pyx_t_1), ((::capnp::schema::EnumNode::Enumerant::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 101; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -5513,7 +5478,7 @@ static Py_ssize_t __pyx_pw_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder_3 return __pyx_r; } -/* "schema.pyx":98 +/* "schema.pyx":102 * index = index % size * return _EnumNode_EnumerantBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -5526,7 +5491,7 @@ static Py_ssize_t __pyx_pf_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder_2 __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":99 + /* "schema.pyx":103 * return _EnumNode_EnumerantBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -5542,7 +5507,7 @@ static Py_ssize_t __pyx_pf_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder_2 return __pyx_r; } -/* "schema.pyx":102 +/* "schema.pyx":106 * cdef class _List_StructNode_Union_StructNode_Member_Reader: * cdef List[C_StructNode.Union.StructNode.Member].Reader thisptr * cdef init(self, List[C_StructNode.Union.StructNode.Member].Reader other): # <<<<<<<<<<<<<< @@ -5555,7 +5520,7 @@ static PyObject *__pyx_f_6schema_47_List_StructNode_Union_StructNode_Member_Read __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":103 + /* "schema.pyx":107 * cdef List[C_StructNode.Union.StructNode.Member].Reader thisptr * cdef init(self, List[C_StructNode.Union.StructNode.Member].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -5564,7 +5529,7 @@ static PyObject *__pyx_f_6schema_47_List_StructNode_Union_StructNode_Member_Read */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":104 + /* "schema.pyx":108 * cdef init(self, List[C_StructNode.Union.StructNode.Member].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -5594,7 +5559,7 @@ static PyObject *__pyx_pw_6schema_47_List_StructNode_Union_StructNode_Member_Rea return __pyx_r; } -/* "schema.pyx":105 +/* "schema.pyx":109 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -5616,60 +5581,60 @@ static PyObject *__pyx_pf_6schema_47_List_StructNode_Union_StructNode_Member_Rea __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":106 + /* "schema.pyx":110 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 110; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":107 + /* "schema.pyx":111 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 107; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 107; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 111; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 111; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":108 + /* "schema.pyx":112 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_6), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 108; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_6), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 112; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 108; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 112; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":109 + /* "schema.pyx":113 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _StructNode_MemberReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 109; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":110 + /* "schema.pyx":114 * raise IndexError('Out of bounds') * index = index % size * return _StructNode_MemberReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -5677,10 +5642,10 @@ static PyObject *__pyx_pf_6schema_47_List_StructNode_Union_StructNode_Member_Rea * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 110; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 110; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberReader *)((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 110; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberReader *)((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -5713,7 +5678,7 @@ static Py_ssize_t __pyx_pw_6schema_47_List_StructNode_Union_StructNode_Member_Re return __pyx_r; } -/* "schema.pyx":112 +/* "schema.pyx":116 * return _StructNode_MemberReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -5726,7 +5691,7 @@ static Py_ssize_t __pyx_pf_6schema_47_List_StructNode_Union_StructNode_Member_Re __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":113 + /* "schema.pyx":117 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -5742,7 +5707,7 @@ static Py_ssize_t __pyx_pf_6schema_47_List_StructNode_Union_StructNode_Member_Re return __pyx_r; } -/* "schema.pyx":116 +/* "schema.pyx":120 * cdef class _List_StructNode_Union_StructNode_Member_Builder: * cdef List[C_StructNode.Union.StructNode.Member].Builder thisptr * cdef init(self, List[C_StructNode.Union.StructNode.Member].Builder other): # <<<<<<<<<<<<<< @@ -5755,7 +5720,7 @@ static PyObject *__pyx_f_6schema_48_List_StructNode_Union_StructNode_Member_Buil __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":117 + /* "schema.pyx":121 * cdef List[C_StructNode.Union.StructNode.Member].Builder thisptr * cdef init(self, List[C_StructNode.Union.StructNode.Member].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -5764,7 +5729,7 @@ static PyObject *__pyx_f_6schema_48_List_StructNode_Union_StructNode_Member_Buil */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":118 + /* "schema.pyx":122 * cdef init(self, List[C_StructNode.Union.StructNode.Member].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -5794,7 +5759,7 @@ static PyObject *__pyx_pw_6schema_48_List_StructNode_Union_StructNode_Member_Bui return __pyx_r; } -/* "schema.pyx":119 +/* "schema.pyx":123 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -5816,60 +5781,60 @@ static PyObject *__pyx_pf_6schema_48_List_StructNode_Union_StructNode_Member_Bui __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":120 + /* "schema.pyx":124 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 124; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":121 + /* "schema.pyx":125 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 125; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 125; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":122 + /* "schema.pyx":126 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_7), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 122; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_7), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 122; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":123 + /* "schema.pyx":127 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _StructNode_MemberBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 123; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 127; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":124 + /* "schema.pyx":128 * raise IndexError('Out of bounds') * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -5877,10 +5842,10 @@ static PyObject *__pyx_pf_6schema_48_List_StructNode_Union_StructNode_Member_Bui * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 124; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 128; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 124; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder *)((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 124; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 128; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder *)((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 128; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -5913,7 +5878,7 @@ static Py_ssize_t __pyx_pw_6schema_48_List_StructNode_Union_StructNode_Member_Bu return __pyx_r; } -/* "schema.pyx":125 +/* "schema.pyx":129 * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -5926,7 +5891,7 @@ static Py_ssize_t __pyx_pf_6schema_48_List_StructNode_Union_StructNode_Member_Bu __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":126 + /* "schema.pyx":130 * return _StructNode_MemberBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -5942,7 +5907,7 @@ static Py_ssize_t __pyx_pf_6schema_48_List_StructNode_Union_StructNode_Member_Bu return __pyx_r; } -/* "schema.pyx":129 +/* "schema.pyx":133 * cdef class _List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader: * cdef List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Reader thisptr * cdef init(self, List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Reader other): # <<<<<<<<<<<<<< @@ -5955,7 +5920,7 @@ static PyObject *__pyx_f_6schema_60_List_InterfaceNode_Method_InterfaceNode_Meth __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":130 + /* "schema.pyx":134 * cdef List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Reader thisptr * cdef init(self, List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -5964,7 +5929,7 @@ static PyObject *__pyx_f_6schema_60_List_InterfaceNode_Method_InterfaceNode_Meth */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":131 + /* "schema.pyx":135 * cdef init(self, List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -5994,7 +5959,7 @@ static PyObject *__pyx_pw_6schema_60_List_InterfaceNode_Method_InterfaceNode_Met return __pyx_r; } -/* "schema.pyx":132 +/* "schema.pyx":136 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -6016,60 +5981,60 @@ static PyObject *__pyx_pf_6schema_60_List_InterfaceNode_Method_InterfaceNode_Met __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":133 + /* "schema.pyx":137 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 133; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 137; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":134 + /* "schema.pyx":138 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 134; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 134; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 138; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 138; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":135 + /* "schema.pyx":139 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_Method_ParamReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_8), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_8), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 139; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 139; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":136 + /* "schema.pyx":140 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _InterfaceNode_Method_ParamReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 136; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 140; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":137 + /* "schema.pyx":141 * raise IndexError('Out of bounds') * index = index % size * return _InterfaceNode_Method_ParamReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -6077,10 +6042,10 @@ static PyObject *__pyx_pf_6schema_60_List_InterfaceNode_Method_InterfaceNode_Met * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 137; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 137; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamReader *)((struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Param::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 137; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamReader *)((struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Param::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -6113,7 +6078,7 @@ static Py_ssize_t __pyx_pw_6schema_60_List_InterfaceNode_Method_InterfaceNode_Me return __pyx_r; } -/* "schema.pyx":139 +/* "schema.pyx":143 * return _InterfaceNode_Method_ParamReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -6126,7 +6091,7 @@ static Py_ssize_t __pyx_pf_6schema_60_List_InterfaceNode_Method_InterfaceNode_Me __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":140 + /* "schema.pyx":144 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -6142,7 +6107,7 @@ static Py_ssize_t __pyx_pf_6schema_60_List_InterfaceNode_Method_InterfaceNode_Me return __pyx_r; } -/* "schema.pyx":143 +/* "schema.pyx":147 * cdef class _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder: * cdef List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Builder thisptr * cdef init(self, List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Builder other): # <<<<<<<<<<<<<< @@ -6155,7 +6120,7 @@ static PyObject *__pyx_f_6schema_61_List_InterfaceNode_Method_InterfaceNode_Meth __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":144 + /* "schema.pyx":148 * cdef List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Builder thisptr * cdef init(self, List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -6164,7 +6129,7 @@ static PyObject *__pyx_f_6schema_61_List_InterfaceNode_Method_InterfaceNode_Meth */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":145 + /* "schema.pyx":149 * cdef init(self, List[C_InterfaceNode.Method.InterfaceNode.Method.Param].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -6194,7 +6159,7 @@ static PyObject *__pyx_pw_6schema_61_List_InterfaceNode_Method_InterfaceNode_Met return __pyx_r; } -/* "schema.pyx":146 +/* "schema.pyx":150 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -6216,60 +6181,60 @@ static PyObject *__pyx_pf_6schema_61_List_InterfaceNode_Method_InterfaceNode_Met __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":147 + /* "schema.pyx":151 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 147; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 151; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":148 + /* "schema.pyx":152 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 148; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 148; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 152; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 152; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":149 + /* "schema.pyx":153 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_Method_ParamBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_9), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_9), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 153; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 153; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":150 + /* "schema.pyx":154 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _InterfaceNode_Method_ParamBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 150; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 154; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":151 + /* "schema.pyx":155 * raise IndexError('Out of bounds') * index = index % size * return _InterfaceNode_Method_ParamBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -6277,10 +6242,10 @@ static PyObject *__pyx_pf_6schema_61_List_InterfaceNode_Method_InterfaceNode_Met * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 151; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 155; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 151; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamBuilder *)((struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Param::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 151; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 155; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamBuilder *)((struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Method::Param::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 155; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -6313,7 +6278,7 @@ static Py_ssize_t __pyx_pw_6schema_61_List_InterfaceNode_Method_InterfaceNode_Me return __pyx_r; } -/* "schema.pyx":152 +/* "schema.pyx":156 * index = index % size * return _InterfaceNode_Method_ParamBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -6326,7 +6291,7 @@ static Py_ssize_t __pyx_pf_6schema_61_List_InterfaceNode_Method_InterfaceNode_Me __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":153 + /* "schema.pyx":157 * return _InterfaceNode_Method_ParamBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -6342,7 +6307,7 @@ static Py_ssize_t __pyx_pf_6schema_61_List_InterfaceNode_Method_InterfaceNode_Me return __pyx_r; } -/* "schema.pyx":156 +/* "schema.pyx":160 * cdef class _List_InterfaceNode_Method_Param_Annotation_Reader: * cdef List[C_InterfaceNode.Method.Param.Annotation].Reader thisptr * cdef init(self, List[C_InterfaceNode.Method.Param.Annotation].Reader other): # <<<<<<<<<<<<<< @@ -6355,7 +6320,7 @@ static PyObject *__pyx_f_6schema_50_List_InterfaceNode_Method_Param_Annotation_R __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":157 + /* "schema.pyx":161 * cdef List[C_InterfaceNode.Method.Param.Annotation].Reader thisptr * cdef init(self, List[C_InterfaceNode.Method.Param.Annotation].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -6364,7 +6329,7 @@ static PyObject *__pyx_f_6schema_50_List_InterfaceNode_Method_Param_Annotation_R */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":158 + /* "schema.pyx":162 * cdef init(self, List[C_InterfaceNode.Method.Param.Annotation].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -6394,7 +6359,7 @@ static PyObject *__pyx_pw_6schema_50_List_InterfaceNode_Method_Param_Annotation_ return __pyx_r; } -/* "schema.pyx":159 +/* "schema.pyx":163 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -6416,60 +6381,60 @@ static PyObject *__pyx_pf_6schema_50_List_InterfaceNode_Method_Param_Annotation_ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":160 + /* "schema.pyx":164 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 160; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 164; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":161 + /* "schema.pyx":165 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 161; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 161; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 165; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 165; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":162 + /* "schema.pyx":166 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_10), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 162; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_10), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 162; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":163 + /* "schema.pyx":167 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 163; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 167; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":164 + /* "schema.pyx":168 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -6477,10 +6442,10 @@ static PyObject *__pyx_pf_6schema_50_List_InterfaceNode_Method_Param_Annotation_ * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 164; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 168; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 164; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 164; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 168; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 168; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -6513,7 +6478,7 @@ static Py_ssize_t __pyx_pw_6schema_50_List_InterfaceNode_Method_Param_Annotation return __pyx_r; } -/* "schema.pyx":166 +/* "schema.pyx":170 * return _AnnotationReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -6526,7 +6491,7 @@ static Py_ssize_t __pyx_pf_6schema_50_List_InterfaceNode_Method_Param_Annotation __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":167 + /* "schema.pyx":171 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -6542,7 +6507,7 @@ static Py_ssize_t __pyx_pf_6schema_50_List_InterfaceNode_Method_Param_Annotation return __pyx_r; } -/* "schema.pyx":170 +/* "schema.pyx":174 * cdef class _List_InterfaceNode_Method_Param_Annotation_Builder: * cdef List[C_InterfaceNode.Method.Param.Annotation].Builder thisptr * cdef init(self, List[C_InterfaceNode.Method.Param.Annotation].Builder other): # <<<<<<<<<<<<<< @@ -6555,7 +6520,7 @@ static PyObject *__pyx_f_6schema_51_List_InterfaceNode_Method_Param_Annotation_B __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":171 + /* "schema.pyx":175 * cdef List[C_InterfaceNode.Method.Param.Annotation].Builder thisptr * cdef init(self, List[C_InterfaceNode.Method.Param.Annotation].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -6564,7 +6529,7 @@ static PyObject *__pyx_f_6schema_51_List_InterfaceNode_Method_Param_Annotation_B */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":172 + /* "schema.pyx":176 * cdef init(self, List[C_InterfaceNode.Method.Param.Annotation].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -6594,7 +6559,7 @@ static PyObject *__pyx_pw_6schema_51_List_InterfaceNode_Method_Param_Annotation_ return __pyx_r; } -/* "schema.pyx":173 +/* "schema.pyx":177 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -6616,60 +6581,60 @@ static PyObject *__pyx_pf_6schema_51_List_InterfaceNode_Method_Param_Annotation_ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":174 + /* "schema.pyx":178 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 174; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":175 + /* "schema.pyx":179 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 175; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 175; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":176 + /* "schema.pyx":180 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_11), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 176; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_11), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 176; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":177 + /* "schema.pyx":181 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":178 + /* "schema.pyx":182 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -6677,10 +6642,10 @@ static PyObject *__pyx_pf_6schema_51_List_InterfaceNode_Method_Param_Annotation_ * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 182; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 182; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 182; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -6713,7 +6678,7 @@ static Py_ssize_t __pyx_pw_6schema_51_List_InterfaceNode_Method_Param_Annotation return __pyx_r; } -/* "schema.pyx":179 +/* "schema.pyx":183 * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -6726,7 +6691,7 @@ static Py_ssize_t __pyx_pf_6schema_51_List_InterfaceNode_Method_Param_Annotation __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":180 + /* "schema.pyx":184 * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -6742,7 +6707,7 @@ static Py_ssize_t __pyx_pf_6schema_51_List_InterfaceNode_Method_Param_Annotation return __pyx_r; } -/* "schema.pyx":183 +/* "schema.pyx":187 * cdef class _List_UInt64_Reader: * cdef List[UInt64].Reader thisptr * cdef init(self, List[UInt64].Reader other): # <<<<<<<<<<<<<< @@ -6755,7 +6720,7 @@ static PyObject *__pyx_f_6schema_19_List_UInt64_Reader_init(struct __pyx_obj_6sc __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":184 + /* "schema.pyx":188 * cdef List[UInt64].Reader thisptr * cdef init(self, List[UInt64].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -6764,7 +6729,7 @@ static PyObject *__pyx_f_6schema_19_List_UInt64_Reader_init(struct __pyx_obj_6sc */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":185 + /* "schema.pyx":189 * cdef init(self, List[UInt64].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -6794,7 +6759,7 @@ static PyObject *__pyx_pw_6schema_19_List_UInt64_Reader_1__getitem__(PyObject *_ return __pyx_r; } -/* "schema.pyx":186 +/* "schema.pyx":190 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -6815,60 +6780,60 @@ static PyObject *__pyx_pf_6schema_19_List_UInt64_Reader___getitem__(struct __pyx __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":187 + /* "schema.pyx":191 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 187; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 191; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":188 + /* "schema.pyx":192 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 188; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 188; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 192; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 192; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":189 + /* "schema.pyx":193 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return self.thisptr[index] */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_12), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 189; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_12), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 193; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 189; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 193; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":190 + /* "schema.pyx":194 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return self.thisptr[index] * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 190; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 194; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":191 + /* "schema.pyx":195 * raise IndexError('Out of bounds') * index = index % size * return self.thisptr[index] # <<<<<<<<<<<<<< @@ -6876,8 +6841,8 @@ static PyObject *__pyx_pf_6schema_19_List_UInt64_Reader___getitem__(struct __pyx * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 191; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t((__pyx_v_self->thisptr[__pyx_t_3])); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 191; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t((__pyx_v_self->thisptr[__pyx_t_3])); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -6908,7 +6873,7 @@ static Py_ssize_t __pyx_pw_6schema_19_List_UInt64_Reader_3__len__(PyObject *__py return __pyx_r; } -/* "schema.pyx":193 +/* "schema.pyx":197 * return self.thisptr[index] * * def __len__(self): # <<<<<<<<<<<<<< @@ -6921,7 +6886,7 @@ static Py_ssize_t __pyx_pf_6schema_19_List_UInt64_Reader_2__len__(struct __pyx_o __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":194 + /* "schema.pyx":198 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -6937,7 +6902,7 @@ static Py_ssize_t __pyx_pf_6schema_19_List_UInt64_Reader_2__len__(struct __pyx_o return __pyx_r; } -/* "schema.pyx":197 +/* "schema.pyx":201 * cdef class _List_UInt64_Builder: * cdef List[UInt64].Builder thisptr * cdef init(self, List[UInt64].Builder other): # <<<<<<<<<<<<<< @@ -6950,7 +6915,7 @@ static PyObject *__pyx_f_6schema_20_List_UInt64_Builder_init(struct __pyx_obj_6s __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":198 + /* "schema.pyx":202 * cdef List[UInt64].Builder thisptr * cdef init(self, List[UInt64].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -6959,7 +6924,7 @@ static PyObject *__pyx_f_6schema_20_List_UInt64_Builder_init(struct __pyx_obj_6s */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":199 + /* "schema.pyx":203 * cdef init(self, List[UInt64].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -6989,7 +6954,7 @@ static PyObject *__pyx_pw_6schema_20_List_UInt64_Builder_1__getitem__(PyObject * return __pyx_r; } -/* "schema.pyx":200 +/* "schema.pyx":204 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -7010,60 +6975,60 @@ static PyObject *__pyx_pf_6schema_20_List_UInt64_Builder___getitem__(struct __py __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":201 + /* "schema.pyx":205 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 201; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":202 + /* "schema.pyx":206 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":203 + /* "schema.pyx":207 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return self.thisptr[index] */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_13), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_13), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":204 + /* "schema.pyx":208 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return self.thisptr[index] * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 204; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":205 + /* "schema.pyx":209 * raise IndexError('Out of bounds') * index = index % size * return self.thisptr[index] # <<<<<<<<<<<<<< @@ -7071,8 +7036,8 @@ static PyObject *__pyx_pf_6schema_20_List_UInt64_Builder___getitem__(struct __py * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t((__pyx_v_self->thisptr[__pyx_t_3])); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 209; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t((__pyx_v_self->thisptr[__pyx_t_3])); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 209; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -7103,7 +7068,7 @@ static Py_ssize_t __pyx_pw_6schema_20_List_UInt64_Builder_3__len__(PyObject *__p return __pyx_r; } -/* "schema.pyx":206 +/* "schema.pyx":210 * index = index % size * return self.thisptr[index] * def __len__(self): # <<<<<<<<<<<<<< @@ -7116,7 +7081,7 @@ static Py_ssize_t __pyx_pf_6schema_20_List_UInt64_Builder_2__len__(struct __pyx_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":207 + /* "schema.pyx":211 * return self.thisptr[index] * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -7132,7 +7097,7 @@ static Py_ssize_t __pyx_pf_6schema_20_List_UInt64_Builder_2__len__(struct __pyx_ return __pyx_r; } -/* "schema.pyx":210 +/* "schema.pyx":214 * cdef class _List_Node_Node_NestedNode_Reader: * cdef List[C_Node.Node.NestedNode].Reader thisptr * cdef init(self, List[C_Node.Node.NestedNode].Reader other): # <<<<<<<<<<<<<< @@ -7145,7 +7110,7 @@ static PyObject *__pyx_f_6schema_33_List_Node_Node_NestedNode_Reader_init(struct __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":211 + /* "schema.pyx":215 * cdef List[C_Node.Node.NestedNode].Reader thisptr * cdef init(self, List[C_Node.Node.NestedNode].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -7154,7 +7119,7 @@ static PyObject *__pyx_f_6schema_33_List_Node_Node_NestedNode_Reader_init(struct */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":212 + /* "schema.pyx":216 * cdef init(self, List[C_Node.Node.NestedNode].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -7184,7 +7149,7 @@ static PyObject *__pyx_pw_6schema_33_List_Node_Node_NestedNode_Reader_1__getitem return __pyx_r; } -/* "schema.pyx":213 +/* "schema.pyx":217 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -7206,60 +7171,60 @@ static PyObject *__pyx_pf_6schema_33_List_Node_Node_NestedNode_Reader___getitem_ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":214 + /* "schema.pyx":218 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 214; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 218; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":215 + /* "schema.pyx":219 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 219; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 219; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":216 + /* "schema.pyx":220 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _Node_NestedNodeReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_14), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_14), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":217 + /* "schema.pyx":221 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _Node_NestedNodeReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 217; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 221; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":218 + /* "schema.pyx":222 * raise IndexError('Out of bounds') * index = index % size * return _Node_NestedNodeReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -7267,10 +7232,10 @@ static PyObject *__pyx_pf_6schema_33_List_Node_Node_NestedNode_Reader___getitem_ * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 218; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 218; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__Node_NestedNodeReader *)((struct __pyx_obj_6schema__Node_NestedNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_NestedNodeReader *)__pyx_t_1), ((::capnp::schema::Node::NestedNode::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 218; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__Node_NestedNodeReader *)((struct __pyx_obj_6schema__Node_NestedNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_NestedNodeReader *)__pyx_t_1), ((::capnp::schema::Node::NestedNode::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -7303,7 +7268,7 @@ static Py_ssize_t __pyx_pw_6schema_33_List_Node_Node_NestedNode_Reader_3__len__( return __pyx_r; } -/* "schema.pyx":220 +/* "schema.pyx":224 * return _Node_NestedNodeReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -7316,7 +7281,7 @@ static Py_ssize_t __pyx_pf_6schema_33_List_Node_Node_NestedNode_Reader_2__len__( __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":221 + /* "schema.pyx":225 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -7332,7 +7297,7 @@ static Py_ssize_t __pyx_pf_6schema_33_List_Node_Node_NestedNode_Reader_2__len__( return __pyx_r; } -/* "schema.pyx":224 +/* "schema.pyx":228 * cdef class _List_Node_Node_NestedNode_Builder: * cdef List[C_Node.Node.NestedNode].Builder thisptr * cdef init(self, List[C_Node.Node.NestedNode].Builder other): # <<<<<<<<<<<<<< @@ -7345,7 +7310,7 @@ static PyObject *__pyx_f_6schema_34_List_Node_Node_NestedNode_Builder_init(struc __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":225 + /* "schema.pyx":229 * cdef List[C_Node.Node.NestedNode].Builder thisptr * cdef init(self, List[C_Node.Node.NestedNode].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -7354,7 +7319,7 @@ static PyObject *__pyx_f_6schema_34_List_Node_Node_NestedNode_Builder_init(struc */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":226 + /* "schema.pyx":230 * cdef init(self, List[C_Node.Node.NestedNode].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -7384,7 +7349,7 @@ static PyObject *__pyx_pw_6schema_34_List_Node_Node_NestedNode_Builder_1__getite return __pyx_r; } -/* "schema.pyx":227 +/* "schema.pyx":231 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -7406,60 +7371,60 @@ static PyObject *__pyx_pf_6schema_34_List_Node_Node_NestedNode_Builder___getitem __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":228 + /* "schema.pyx":232 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 228; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 232; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":229 + /* "schema.pyx":233 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 229; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 229; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 233; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 233; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":230 + /* "schema.pyx":234 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _Node_NestedNodeBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_15), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 230; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_15), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 234; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 230; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 234; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":231 + /* "schema.pyx":235 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _Node_NestedNodeBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 235; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":232 + /* "schema.pyx":236 * raise IndexError('Out of bounds') * index = index % size * return _Node_NestedNodeBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -7467,10 +7432,10 @@ static PyObject *__pyx_pf_6schema_34_List_Node_Node_NestedNode_Builder___getitem * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 232; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 236; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 232; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__Node_NestedNodeBuilder *)((struct __pyx_obj_6schema__Node_NestedNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_NestedNodeBuilder *)__pyx_t_1), ((::capnp::schema::Node::NestedNode::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 232; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 236; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__Node_NestedNodeBuilder *)((struct __pyx_obj_6schema__Node_NestedNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_NestedNodeBuilder *)__pyx_t_1), ((::capnp::schema::Node::NestedNode::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 236; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -7503,7 +7468,7 @@ static Py_ssize_t __pyx_pw_6schema_34_List_Node_Node_NestedNode_Builder_3__len__ return __pyx_r; } -/* "schema.pyx":233 +/* "schema.pyx":237 * index = index % size * return _Node_NestedNodeBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -7516,7 +7481,7 @@ static Py_ssize_t __pyx_pf_6schema_34_List_Node_Node_NestedNode_Builder_2__len__ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":234 + /* "schema.pyx":238 * return _Node_NestedNodeBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -7532,7 +7497,7 @@ static Py_ssize_t __pyx_pf_6schema_34_List_Node_Node_NestedNode_Builder_2__len__ return __pyx_r; } -/* "schema.pyx":237 +/* "schema.pyx":241 * cdef class _List_StructNode_Member_Annotation_Reader: * cdef List[C_StructNode.Member.Annotation].Reader thisptr * cdef init(self, List[C_StructNode.Member.Annotation].Reader other): # <<<<<<<<<<<<<< @@ -7545,7 +7510,7 @@ static PyObject *__pyx_f_6schema_41_List_StructNode_Member_Annotation_Reader_ini __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":238 + /* "schema.pyx":242 * cdef List[C_StructNode.Member.Annotation].Reader thisptr * cdef init(self, List[C_StructNode.Member.Annotation].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -7554,7 +7519,7 @@ static PyObject *__pyx_f_6schema_41_List_StructNode_Member_Annotation_Reader_ini */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":239 + /* "schema.pyx":243 * cdef init(self, List[C_StructNode.Member.Annotation].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -7584,7 +7549,7 @@ static PyObject *__pyx_pw_6schema_41_List_StructNode_Member_Annotation_Reader_1_ return __pyx_r; } -/* "schema.pyx":240 +/* "schema.pyx":244 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -7606,60 +7571,60 @@ static PyObject *__pyx_pf_6schema_41_List_StructNode_Member_Annotation_Reader___ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":241 + /* "schema.pyx":245 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 241; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":242 + /* "schema.pyx":246 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 242; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 242; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 246; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 246; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":243 + /* "schema.pyx":247 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_16), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 243; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_16), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 247; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 243; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 247; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":244 + /* "schema.pyx":248 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 244; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":245 + /* "schema.pyx":249 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -7667,10 +7632,10 @@ static PyObject *__pyx_pf_6schema_41_List_StructNode_Member_Annotation_Reader___ * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -7703,7 +7668,7 @@ static Py_ssize_t __pyx_pw_6schema_41_List_StructNode_Member_Annotation_Reader_3 return __pyx_r; } -/* "schema.pyx":247 +/* "schema.pyx":251 * return _AnnotationReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -7716,7 +7681,7 @@ static Py_ssize_t __pyx_pf_6schema_41_List_StructNode_Member_Annotation_Reader_2 __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":248 + /* "schema.pyx":252 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -7732,7 +7697,7 @@ static Py_ssize_t __pyx_pf_6schema_41_List_StructNode_Member_Annotation_Reader_2 return __pyx_r; } -/* "schema.pyx":251 +/* "schema.pyx":255 * cdef class _List_StructNode_Member_Annotation_Builder: * cdef List[C_StructNode.Member.Annotation].Builder thisptr * cdef init(self, List[C_StructNode.Member.Annotation].Builder other): # <<<<<<<<<<<<<< @@ -7745,7 +7710,7 @@ static PyObject *__pyx_f_6schema_42_List_StructNode_Member_Annotation_Builder_in __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":252 + /* "schema.pyx":256 * cdef List[C_StructNode.Member.Annotation].Builder thisptr * cdef init(self, List[C_StructNode.Member.Annotation].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -7754,7 +7719,7 @@ static PyObject *__pyx_f_6schema_42_List_StructNode_Member_Annotation_Builder_in */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":253 + /* "schema.pyx":257 * cdef init(self, List[C_StructNode.Member.Annotation].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -7784,7 +7749,7 @@ static PyObject *__pyx_pw_6schema_42_List_StructNode_Member_Annotation_Builder_1 return __pyx_r; } -/* "schema.pyx":254 +/* "schema.pyx":258 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -7806,60 +7771,60 @@ static PyObject *__pyx_pf_6schema_42_List_StructNode_Member_Annotation_Builder__ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":255 + /* "schema.pyx":259 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 255; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 259; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":256 + /* "schema.pyx":260 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 256; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 256; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 260; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 260; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":257 + /* "schema.pyx":261 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_17), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 257; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_17), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 261; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 257; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 261; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":258 + /* "schema.pyx":262 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 258; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 262; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":259 + /* "schema.pyx":263 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -7867,10 +7832,10 @@ static PyObject *__pyx_pf_6schema_42_List_StructNode_Member_Annotation_Builder__ * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 259; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 263; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 259; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 259; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 263; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 263; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -7903,7 +7868,7 @@ static Py_ssize_t __pyx_pw_6schema_42_List_StructNode_Member_Annotation_Builder_ return __pyx_r; } -/* "schema.pyx":260 +/* "schema.pyx":264 * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -7916,7 +7881,7 @@ static Py_ssize_t __pyx_pf_6schema_42_List_StructNode_Member_Annotation_Builder_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":261 + /* "schema.pyx":265 * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -7932,7 +7897,7 @@ static Py_ssize_t __pyx_pf_6schema_42_List_StructNode_Member_Annotation_Builder_ return __pyx_r; } -/* "schema.pyx":264 +/* "schema.pyx":268 * cdef class _List_InterfaceNode_Method_Annotation_Reader: * cdef List[C_InterfaceNode.Method.Annotation].Reader thisptr * cdef init(self, List[C_InterfaceNode.Method.Annotation].Reader other): # <<<<<<<<<<<<<< @@ -7945,7 +7910,7 @@ static PyObject *__pyx_f_6schema_44_List_InterfaceNode_Method_Annotation_Reader_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":265 + /* "schema.pyx":269 * cdef List[C_InterfaceNode.Method.Annotation].Reader thisptr * cdef init(self, List[C_InterfaceNode.Method.Annotation].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -7954,7 +7919,7 @@ static PyObject *__pyx_f_6schema_44_List_InterfaceNode_Method_Annotation_Reader_ */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":266 + /* "schema.pyx":270 * cdef init(self, List[C_InterfaceNode.Method.Annotation].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -7984,7 +7949,7 @@ static PyObject *__pyx_pw_6schema_44_List_InterfaceNode_Method_Annotation_Reader return __pyx_r; } -/* "schema.pyx":267 +/* "schema.pyx":271 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -8006,60 +7971,60 @@ static PyObject *__pyx_pf_6schema_44_List_InterfaceNode_Method_Annotation_Reader __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":268 + /* "schema.pyx":272 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 272; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":269 + /* "schema.pyx":273 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 269; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 269; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 273; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 273; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":270 + /* "schema.pyx":274 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_18), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 270; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_18), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 274; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 270; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 274; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":271 + /* "schema.pyx":275 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 271; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 275; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":272 + /* "schema.pyx":276 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -8067,10 +8032,10 @@ static PyObject *__pyx_pf_6schema_44_List_InterfaceNode_Method_Annotation_Reader * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 272; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 276; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 272; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 272; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 276; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 276; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -8103,7 +8068,7 @@ static Py_ssize_t __pyx_pw_6schema_44_List_InterfaceNode_Method_Annotation_Reade return __pyx_r; } -/* "schema.pyx":274 +/* "schema.pyx":278 * return _AnnotationReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -8116,7 +8081,7 @@ static Py_ssize_t __pyx_pf_6schema_44_List_InterfaceNode_Method_Annotation_Reade __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":275 + /* "schema.pyx":279 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -8132,7 +8097,7 @@ static Py_ssize_t __pyx_pf_6schema_44_List_InterfaceNode_Method_Annotation_Reade return __pyx_r; } -/* "schema.pyx":278 +/* "schema.pyx":282 * cdef class _List_InterfaceNode_Method_Annotation_Builder: * cdef List[C_InterfaceNode.Method.Annotation].Builder thisptr * cdef init(self, List[C_InterfaceNode.Method.Annotation].Builder other): # <<<<<<<<<<<<<< @@ -8145,7 +8110,7 @@ static PyObject *__pyx_f_6schema_45_List_InterfaceNode_Method_Annotation_Builder __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":279 + /* "schema.pyx":283 * cdef List[C_InterfaceNode.Method.Annotation].Builder thisptr * cdef init(self, List[C_InterfaceNode.Method.Annotation].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -8154,7 +8119,7 @@ static PyObject *__pyx_f_6schema_45_List_InterfaceNode_Method_Annotation_Builder */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":280 + /* "schema.pyx":284 * cdef init(self, List[C_InterfaceNode.Method.Annotation].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -8184,7 +8149,7 @@ static PyObject *__pyx_pw_6schema_45_List_InterfaceNode_Method_Annotation_Builde return __pyx_r; } -/* "schema.pyx":281 +/* "schema.pyx":285 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -8206,60 +8171,60 @@ static PyObject *__pyx_pf_6schema_45_List_InterfaceNode_Method_Annotation_Builde __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":282 + /* "schema.pyx":286 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 282; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 286; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":283 + /* "schema.pyx":287 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 287; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 287; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":284 + /* "schema.pyx":288 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_19), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_19), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 288; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 288; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":285 + /* "schema.pyx":289 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 285; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":286 + /* "schema.pyx":290 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -8267,10 +8232,10 @@ static PyObject *__pyx_pf_6schema_45_List_InterfaceNode_Method_Annotation_Builde * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 286; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 286; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 286; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -8303,7 +8268,7 @@ static Py_ssize_t __pyx_pw_6schema_45_List_InterfaceNode_Method_Annotation_Build return __pyx_r; } -/* "schema.pyx":287 +/* "schema.pyx":291 * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -8316,7 +8281,7 @@ static Py_ssize_t __pyx_pf_6schema_45_List_InterfaceNode_Method_Annotation_Build __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":288 + /* "schema.pyx":292 * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -8332,7 +8297,7 @@ static Py_ssize_t __pyx_pf_6schema_45_List_InterfaceNode_Method_Annotation_Build return __pyx_r; } -/* "schema.pyx":291 +/* "schema.pyx":295 * cdef class _List_StructNode_StructNode_Member_Reader: * cdef List[C_StructNode.StructNode.Member].Reader thisptr * cdef init(self, List[C_StructNode.StructNode.Member].Reader other): # <<<<<<<<<<<<<< @@ -8345,7 +8310,7 @@ static PyObject *__pyx_f_6schema_41_List_StructNode_StructNode_Member_Reader_ini __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":292 + /* "schema.pyx":296 * cdef List[C_StructNode.StructNode.Member].Reader thisptr * cdef init(self, List[C_StructNode.StructNode.Member].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -8354,7 +8319,7 @@ static PyObject *__pyx_f_6schema_41_List_StructNode_StructNode_Member_Reader_ini */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":293 + /* "schema.pyx":297 * cdef init(self, List[C_StructNode.StructNode.Member].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -8384,7 +8349,7 @@ static PyObject *__pyx_pw_6schema_41_List_StructNode_StructNode_Member_Reader_1_ return __pyx_r; } -/* "schema.pyx":294 +/* "schema.pyx":298 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -8406,60 +8371,60 @@ static PyObject *__pyx_pf_6schema_41_List_StructNode_StructNode_Member_Reader___ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":295 + /* "schema.pyx":299 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 295; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 299; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":296 + /* "schema.pyx":300 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 296; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 296; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":297 + /* "schema.pyx":301 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_20), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 297; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_20), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 301; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 297; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 301; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":298 + /* "schema.pyx":302 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _StructNode_MemberReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 298; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 302; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":299 + /* "schema.pyx":303 * raise IndexError('Out of bounds') * index = index % size * return _StructNode_MemberReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -8467,10 +8432,10 @@ static PyObject *__pyx_pf_6schema_41_List_StructNode_StructNode_Member_Reader___ * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 299; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 303; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 299; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberReader *)((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 299; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 303; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberReader *)((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberReader *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 303; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -8503,7 +8468,7 @@ static Py_ssize_t __pyx_pw_6schema_41_List_StructNode_StructNode_Member_Reader_3 return __pyx_r; } -/* "schema.pyx":301 +/* "schema.pyx":305 * return _StructNode_MemberReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -8516,7 +8481,7 @@ static Py_ssize_t __pyx_pf_6schema_41_List_StructNode_StructNode_Member_Reader_2 __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":302 + /* "schema.pyx":306 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -8532,7 +8497,7 @@ static Py_ssize_t __pyx_pf_6schema_41_List_StructNode_StructNode_Member_Reader_2 return __pyx_r; } -/* "schema.pyx":305 +/* "schema.pyx":309 * cdef class _List_StructNode_StructNode_Member_Builder: * cdef List[C_StructNode.StructNode.Member].Builder thisptr * cdef init(self, List[C_StructNode.StructNode.Member].Builder other): # <<<<<<<<<<<<<< @@ -8545,7 +8510,7 @@ static PyObject *__pyx_f_6schema_42_List_StructNode_StructNode_Member_Builder_in __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":306 + /* "schema.pyx":310 * cdef List[C_StructNode.StructNode.Member].Builder thisptr * cdef init(self, List[C_StructNode.StructNode.Member].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -8554,7 +8519,7 @@ static PyObject *__pyx_f_6schema_42_List_StructNode_StructNode_Member_Builder_in */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":307 + /* "schema.pyx":311 * cdef init(self, List[C_StructNode.StructNode.Member].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -8584,7 +8549,7 @@ static PyObject *__pyx_pw_6schema_42_List_StructNode_StructNode_Member_Builder_1 return __pyx_r; } -/* "schema.pyx":308 +/* "schema.pyx":312 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -8606,60 +8571,60 @@ static PyObject *__pyx_pf_6schema_42_List_StructNode_StructNode_Member_Builder__ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":309 + /* "schema.pyx":313 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 309; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 313; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":310 + /* "schema.pyx":314 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 310; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 310; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 314; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 314; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":311 + /* "schema.pyx":315 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_21), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_21), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":312 + /* "schema.pyx":316 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _StructNode_MemberBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 312; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":313 + /* "schema.pyx":317 * raise IndexError('Out of bounds') * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -8667,10 +8632,10 @@ static PyObject *__pyx_pf_6schema_42_List_StructNode_StructNode_Member_Builder__ * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 313; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 313; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder *)((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 313; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder *)((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_MemberBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -8703,7 +8668,7 @@ static Py_ssize_t __pyx_pw_6schema_42_List_StructNode_StructNode_Member_Builder_ return __pyx_r; } -/* "schema.pyx":314 +/* "schema.pyx":318 * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -8716,7 +8681,7 @@ static Py_ssize_t __pyx_pf_6schema_42_List_StructNode_StructNode_Member_Builder_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":315 + /* "schema.pyx":319 * return _StructNode_MemberBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -8732,7 +8697,7 @@ static Py_ssize_t __pyx_pf_6schema_42_List_StructNode_StructNode_Member_Builder_ return __pyx_r; } -/* "schema.pyx":318 +/* "schema.pyx":322 * cdef class _List_Node_Annotation_Reader: * cdef List[C_Node.Annotation].Reader thisptr * cdef init(self, List[C_Node.Annotation].Reader other): # <<<<<<<<<<<<<< @@ -8745,7 +8710,7 @@ static PyObject *__pyx_f_6schema_28_List_Node_Annotation_Reader_init(struct __py __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":319 + /* "schema.pyx":323 * cdef List[C_Node.Annotation].Reader thisptr * cdef init(self, List[C_Node.Annotation].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -8754,7 +8719,7 @@ static PyObject *__pyx_f_6schema_28_List_Node_Annotation_Reader_init(struct __py */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":320 + /* "schema.pyx":324 * cdef init(self, List[C_Node.Annotation].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -8784,7 +8749,7 @@ static PyObject *__pyx_pw_6schema_28_List_Node_Annotation_Reader_1__getitem__(Py return __pyx_r; } -/* "schema.pyx":321 +/* "schema.pyx":325 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -8806,60 +8771,60 @@ static PyObject *__pyx_pf_6schema_28_List_Node_Annotation_Reader___getitem__(str __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":322 + /* "schema.pyx":326 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 322; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 326; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":323 + /* "schema.pyx":327 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 323; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 323; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 327; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 327; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":324 + /* "schema.pyx":328 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_22), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 324; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_22), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 328; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 324; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 328; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":325 + /* "schema.pyx":329 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 325; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 329; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":326 + /* "schema.pyx":330 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -8867,10 +8832,10 @@ static PyObject *__pyx_pf_6schema_28_List_Node_Annotation_Reader___getitem__(str * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 326; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 330; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 326; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 326; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 330; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 330; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -8903,7 +8868,7 @@ static Py_ssize_t __pyx_pw_6schema_28_List_Node_Annotation_Reader_3__len__(PyObj return __pyx_r; } -/* "schema.pyx":328 +/* "schema.pyx":332 * return _AnnotationReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -8916,7 +8881,7 @@ static Py_ssize_t __pyx_pf_6schema_28_List_Node_Annotation_Reader_2__len__(struc __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":329 + /* "schema.pyx":333 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -8932,7 +8897,7 @@ static Py_ssize_t __pyx_pf_6schema_28_List_Node_Annotation_Reader_2__len__(struc return __pyx_r; } -/* "schema.pyx":332 +/* "schema.pyx":336 * cdef class _List_Node_Annotation_Builder: * cdef List[C_Node.Annotation].Builder thisptr * cdef init(self, List[C_Node.Annotation].Builder other): # <<<<<<<<<<<<<< @@ -8945,7 +8910,7 @@ static PyObject *__pyx_f_6schema_29_List_Node_Annotation_Builder_init(struct __p __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":333 + /* "schema.pyx":337 * cdef List[C_Node.Annotation].Builder thisptr * cdef init(self, List[C_Node.Annotation].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -8954,7 +8919,7 @@ static PyObject *__pyx_f_6schema_29_List_Node_Annotation_Builder_init(struct __p */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":334 + /* "schema.pyx":338 * cdef init(self, List[C_Node.Annotation].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -8984,7 +8949,7 @@ static PyObject *__pyx_pw_6schema_29_List_Node_Annotation_Builder_1__getitem__(P return __pyx_r; } -/* "schema.pyx":335 +/* "schema.pyx":339 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -9006,60 +8971,60 @@ static PyObject *__pyx_pf_6schema_29_List_Node_Annotation_Builder___getitem__(st __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":336 + /* "schema.pyx":340 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 336; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":337 + /* "schema.pyx":341 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 337; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 337; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 341; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 341; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":338 + /* "schema.pyx":342 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_23), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 338; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_23), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 342; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 338; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 342; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":339 + /* "schema.pyx":343 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 339; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 343; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":340 + /* "schema.pyx":344 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -9067,10 +9032,10 @@ static PyObject *__pyx_pf_6schema_29_List_Node_Annotation_Builder___getitem__(st * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 344; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 344; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 344; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -9103,7 +9068,7 @@ static Py_ssize_t __pyx_pw_6schema_29_List_Node_Annotation_Builder_3__len__(PyOb return __pyx_r; } -/* "schema.pyx":341 +/* "schema.pyx":345 * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -9116,7 +9081,7 @@ static Py_ssize_t __pyx_pf_6schema_29_List_Node_Annotation_Builder_2__len__(stru __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":342 + /* "schema.pyx":346 * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -9132,7 +9097,7 @@ static Py_ssize_t __pyx_pf_6schema_29_List_Node_Annotation_Builder_2__len__(stru return __pyx_r; } -/* "schema.pyx":345 +/* "schema.pyx":349 * cdef class _List_CodeGeneratorRequest_Node_Reader: * cdef List[C_CodeGeneratorRequest.Node].Reader thisptr * cdef init(self, List[C_CodeGeneratorRequest.Node].Reader other): # <<<<<<<<<<<<<< @@ -9145,7 +9110,7 @@ static PyObject *__pyx_f_6schema_38_List_CodeGeneratorRequest_Node_Reader_init(s __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":346 + /* "schema.pyx":350 * cdef List[C_CodeGeneratorRequest.Node].Reader thisptr * cdef init(self, List[C_CodeGeneratorRequest.Node].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -9154,7 +9119,7 @@ static PyObject *__pyx_f_6schema_38_List_CodeGeneratorRequest_Node_Reader_init(s */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":347 + /* "schema.pyx":351 * cdef init(self, List[C_CodeGeneratorRequest.Node].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -9184,7 +9149,7 @@ static PyObject *__pyx_pw_6schema_38_List_CodeGeneratorRequest_Node_Reader_1__ge return __pyx_r; } -/* "schema.pyx":348 +/* "schema.pyx":352 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -9206,60 +9171,60 @@ static PyObject *__pyx_pf_6schema_38_List_CodeGeneratorRequest_Node_Reader___get __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":349 + /* "schema.pyx":353 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 349; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 353; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":350 + /* "schema.pyx":354 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 350; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 350; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":351 + /* "schema.pyx":355 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _NodeReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_24), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_24), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":352 + /* "schema.pyx":356 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _NodeReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 352; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 356; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":353 + /* "schema.pyx":357 * raise IndexError('Out of bounds') * index = index % size * return _NodeReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -9267,10 +9232,10 @@ static PyObject *__pyx_pf_6schema_38_List_CodeGeneratorRequest_Node_Reader___get * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 353; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 353; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__NodeReader *)((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1), ((::capnp::schema::Node::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 353; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__NodeReader *)((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1), ((::capnp::schema::Node::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -9303,7 +9268,7 @@ static Py_ssize_t __pyx_pw_6schema_38_List_CodeGeneratorRequest_Node_Reader_3__l return __pyx_r; } -/* "schema.pyx":355 +/* "schema.pyx":359 * return _NodeReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -9316,7 +9281,7 @@ static Py_ssize_t __pyx_pf_6schema_38_List_CodeGeneratorRequest_Node_Reader_2__l __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":356 + /* "schema.pyx":360 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -9332,7 +9297,7 @@ static Py_ssize_t __pyx_pf_6schema_38_List_CodeGeneratorRequest_Node_Reader_2__l return __pyx_r; } -/* "schema.pyx":359 +/* "schema.pyx":363 * cdef class _List_CodeGeneratorRequest_Node_Builder: * cdef List[C_CodeGeneratorRequest.Node].Builder thisptr * cdef init(self, List[C_CodeGeneratorRequest.Node].Builder other): # <<<<<<<<<<<<<< @@ -9345,7 +9310,7 @@ static PyObject *__pyx_f_6schema_39_List_CodeGeneratorRequest_Node_Builder_init( __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":360 + /* "schema.pyx":364 * cdef List[C_CodeGeneratorRequest.Node].Builder thisptr * cdef init(self, List[C_CodeGeneratorRequest.Node].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -9354,7 +9319,7 @@ static PyObject *__pyx_f_6schema_39_List_CodeGeneratorRequest_Node_Builder_init( */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":361 + /* "schema.pyx":365 * cdef init(self, List[C_CodeGeneratorRequest.Node].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -9384,7 +9349,7 @@ static PyObject *__pyx_pw_6schema_39_List_CodeGeneratorRequest_Node_Builder_1__g return __pyx_r; } -/* "schema.pyx":362 +/* "schema.pyx":366 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -9406,60 +9371,60 @@ static PyObject *__pyx_pf_6schema_39_List_CodeGeneratorRequest_Node_Builder___ge __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":363 + /* "schema.pyx":367 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 363; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":364 + /* "schema.pyx":368 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 364; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 364; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 368; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 368; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":365 + /* "schema.pyx":369 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _NodeBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_25), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_25), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 369; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 369; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":366 + /* "schema.pyx":370 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _NodeBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 366; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 370; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":367 + /* "schema.pyx":371 * raise IndexError('Out of bounds') * index = index % size * return _NodeBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -9467,10 +9432,10 @@ static PyObject *__pyx_pf_6schema_39_List_CodeGeneratorRequest_Node_Builder___ge * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1), ((::capnp::schema::Node::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1), ((::capnp::schema::Node::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -9503,7 +9468,7 @@ static Py_ssize_t __pyx_pw_6schema_39_List_CodeGeneratorRequest_Node_Builder_3__ return __pyx_r; } -/* "schema.pyx":368 +/* "schema.pyx":372 * index = index % size * return _NodeBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -9516,7 +9481,7 @@ static Py_ssize_t __pyx_pf_6schema_39_List_CodeGeneratorRequest_Node_Builder_2__ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":369 + /* "schema.pyx":373 * return _NodeBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -9532,7 +9497,7 @@ static Py_ssize_t __pyx_pf_6schema_39_List_CodeGeneratorRequest_Node_Builder_2__ return __pyx_r; } -/* "schema.pyx":372 +/* "schema.pyx":376 * cdef class _List_FileNode_FileNode_Import_Reader: * cdef List[C_FileNode.FileNode.Import].Reader thisptr * cdef init(self, List[C_FileNode.FileNode.Import].Reader other): # <<<<<<<<<<<<<< @@ -9545,7 +9510,7 @@ static PyObject *__pyx_f_6schema_37_List_FileNode_FileNode_Import_Reader_init(st __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":373 + /* "schema.pyx":377 * cdef List[C_FileNode.FileNode.Import].Reader thisptr * cdef init(self, List[C_FileNode.FileNode.Import].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -9554,7 +9519,7 @@ static PyObject *__pyx_f_6schema_37_List_FileNode_FileNode_Import_Reader_init(st */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":374 + /* "schema.pyx":378 * cdef init(self, List[C_FileNode.FileNode.Import].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -9584,7 +9549,7 @@ static PyObject *__pyx_pw_6schema_37_List_FileNode_FileNode_Import_Reader_1__get return __pyx_r; } -/* "schema.pyx":375 +/* "schema.pyx":379 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -9606,60 +9571,60 @@ static PyObject *__pyx_pf_6schema_37_List_FileNode_FileNode_Import_Reader___geti __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":376 + /* "schema.pyx":380 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 376; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 380; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":377 + /* "schema.pyx":381 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 377; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 377; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 381; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 381; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":378 + /* "schema.pyx":382 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _FileNode_ImportReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_26), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 378; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_26), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 382; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 378; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 382; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":379 + /* "schema.pyx":383 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _FileNode_ImportReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 379; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 383; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":380 + /* "schema.pyx":384 * raise IndexError('Out of bounds') * index = index % size * return _FileNode_ImportReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -9667,10 +9632,10 @@ static PyObject *__pyx_pf_6schema_37_List_FileNode_FileNode_Import_Reader___geti * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 380; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 380; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__FileNode_ImportReader *)((struct __pyx_obj_6schema__FileNode_ImportReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNode_ImportReader *)__pyx_t_1), ((::capnp::schema::FileNode::Import::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 380; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__FileNode_ImportReader *)((struct __pyx_obj_6schema__FileNode_ImportReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNode_ImportReader *)__pyx_t_1), ((::capnp::schema::FileNode::Import::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -9703,7 +9668,7 @@ static Py_ssize_t __pyx_pw_6schema_37_List_FileNode_FileNode_Import_Reader_3__le return __pyx_r; } -/* "schema.pyx":382 +/* "schema.pyx":386 * return _FileNode_ImportReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -9716,7 +9681,7 @@ static Py_ssize_t __pyx_pf_6schema_37_List_FileNode_FileNode_Import_Reader_2__le __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":383 + /* "schema.pyx":387 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -9732,7 +9697,7 @@ static Py_ssize_t __pyx_pf_6schema_37_List_FileNode_FileNode_Import_Reader_2__le return __pyx_r; } -/* "schema.pyx":386 +/* "schema.pyx":390 * cdef class _List_FileNode_FileNode_Import_Builder: * cdef List[C_FileNode.FileNode.Import].Builder thisptr * cdef init(self, List[C_FileNode.FileNode.Import].Builder other): # <<<<<<<<<<<<<< @@ -9745,7 +9710,7 @@ static PyObject *__pyx_f_6schema_38_List_FileNode_FileNode_Import_Builder_init(s __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":387 + /* "schema.pyx":391 * cdef List[C_FileNode.FileNode.Import].Builder thisptr * cdef init(self, List[C_FileNode.FileNode.Import].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -9754,7 +9719,7 @@ static PyObject *__pyx_f_6schema_38_List_FileNode_FileNode_Import_Builder_init(s */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":388 + /* "schema.pyx":392 * cdef init(self, List[C_FileNode.FileNode.Import].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -9784,7 +9749,7 @@ static PyObject *__pyx_pw_6schema_38_List_FileNode_FileNode_Import_Builder_1__ge return __pyx_r; } -/* "schema.pyx":389 +/* "schema.pyx":393 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -9806,60 +9771,60 @@ static PyObject *__pyx_pf_6schema_38_List_FileNode_FileNode_Import_Builder___get __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":390 + /* "schema.pyx":394 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 390; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 394; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":391 + /* "schema.pyx":395 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 391; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 391; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 395; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 395; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":392 + /* "schema.pyx":396 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _FileNode_ImportBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_27), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_27), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 396; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 396; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":393 + /* "schema.pyx":397 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _FileNode_ImportBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 393; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":394 + /* "schema.pyx":398 * raise IndexError('Out of bounds') * index = index % size * return _FileNode_ImportBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -9867,10 +9832,10 @@ static PyObject *__pyx_pf_6schema_38_List_FileNode_FileNode_Import_Builder___get * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 394; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 398; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 394; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__FileNode_ImportBuilder *)((struct __pyx_obj_6schema__FileNode_ImportBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNode_ImportBuilder *)__pyx_t_1), ((::capnp::schema::FileNode::Import::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 394; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 398; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__FileNode_ImportBuilder *)((struct __pyx_obj_6schema__FileNode_ImportBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNode_ImportBuilder *)__pyx_t_1), ((::capnp::schema::FileNode::Import::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 398; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -9903,7 +9868,7 @@ static Py_ssize_t __pyx_pw_6schema_38_List_FileNode_FileNode_Import_Builder_3__l return __pyx_r; } -/* "schema.pyx":395 +/* "schema.pyx":399 * index = index % size * return _FileNode_ImportBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -9916,7 +9881,7 @@ static Py_ssize_t __pyx_pf_6schema_38_List_FileNode_FileNode_Import_Builder_2__l __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":396 + /* "schema.pyx":400 * return _FileNode_ImportBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -9932,7 +9897,7 @@ static Py_ssize_t __pyx_pf_6schema_38_List_FileNode_FileNode_Import_Builder_2__l return __pyx_r; } -/* "schema.pyx":399 +/* "schema.pyx":403 * cdef class _List_EnumNode_Enumerant_Annotation_Reader: * cdef List[C_EnumNode.Enumerant.Annotation].Reader thisptr * cdef init(self, List[C_EnumNode.Enumerant.Annotation].Reader other): # <<<<<<<<<<<<<< @@ -9945,7 +9910,7 @@ static PyObject *__pyx_f_6schema_42_List_EnumNode_Enumerant_Annotation_Reader_in __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":400 + /* "schema.pyx":404 * cdef List[C_EnumNode.Enumerant.Annotation].Reader thisptr * cdef init(self, List[C_EnumNode.Enumerant.Annotation].Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -9954,7 +9919,7 @@ static PyObject *__pyx_f_6schema_42_List_EnumNode_Enumerant_Annotation_Reader_in */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":401 + /* "schema.pyx":405 * cdef init(self, List[C_EnumNode.Enumerant.Annotation].Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -9984,7 +9949,7 @@ static PyObject *__pyx_pw_6schema_42_List_EnumNode_Enumerant_Annotation_Reader_1 return __pyx_r; } -/* "schema.pyx":402 +/* "schema.pyx":406 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -10006,60 +9971,60 @@ static PyObject *__pyx_pf_6schema_42_List_EnumNode_Enumerant_Annotation_Reader__ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":403 + /* "schema.pyx":407 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 403; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":404 + /* "schema.pyx":408 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 404; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 404; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":405 + /* "schema.pyx":409 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_28), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_28), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 409; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 409; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":406 + /* "schema.pyx":410 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationReader().init(self.thisptr[index]) * */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 406; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 410; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":407 + /* "schema.pyx":411 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationReader().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -10067,10 +10032,10 @@ static PyObject *__pyx_pf_6schema_42_List_EnumNode_Enumerant_Annotation_Reader__ * def __len__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), ((::capnp::schema::Annotation::Reader)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -10103,7 +10068,7 @@ static Py_ssize_t __pyx_pw_6schema_42_List_EnumNode_Enumerant_Annotation_Reader_ return __pyx_r; } -/* "schema.pyx":409 +/* "schema.pyx":413 * return _AnnotationReader().init(self.thisptr[index]) * * def __len__(self): # <<<<<<<<<<<<<< @@ -10116,7 +10081,7 @@ static Py_ssize_t __pyx_pf_6schema_42_List_EnumNode_Enumerant_Annotation_Reader_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":410 + /* "schema.pyx":414 * * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -10132,7 +10097,7 @@ static Py_ssize_t __pyx_pf_6schema_42_List_EnumNode_Enumerant_Annotation_Reader_ return __pyx_r; } -/* "schema.pyx":413 +/* "schema.pyx":417 * cdef class _List_EnumNode_Enumerant_Annotation_Builder: * cdef List[C_EnumNode.Enumerant.Annotation].Builder thisptr * cdef init(self, List[C_EnumNode.Enumerant.Annotation].Builder other): # <<<<<<<<<<<<<< @@ -10145,7 +10110,7 @@ static PyObject *__pyx_f_6schema_43_List_EnumNode_Enumerant_Annotation_Builder_i __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":414 + /* "schema.pyx":418 * cdef List[C_EnumNode.Enumerant.Annotation].Builder thisptr * cdef init(self, List[C_EnumNode.Enumerant.Annotation].Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -10154,7 +10119,7 @@ static PyObject *__pyx_f_6schema_43_List_EnumNode_Enumerant_Annotation_Builder_i */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":415 + /* "schema.pyx":419 * cdef init(self, List[C_EnumNode.Enumerant.Annotation].Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -10184,7 +10149,7 @@ static PyObject *__pyx_pw_6schema_43_List_EnumNode_Enumerant_Annotation_Builder_ return __pyx_r; } -/* "schema.pyx":416 +/* "schema.pyx":420 * self.thisptr = other * return self * def __getitem__(self, index): # <<<<<<<<<<<<<< @@ -10206,60 +10171,60 @@ static PyObject *__pyx_pf_6schema_43_List_EnumNode_Enumerant_Annotation_Builder_ __Pyx_RefNannySetupContext("__getitem__", 0); __Pyx_INCREF(__pyx_v_index); - /* "schema.pyx":417 + /* "schema.pyx":421 * return self * def __getitem__(self, index): * size = self.thisptr.size() # <<<<<<<<<<<<<< * if index >= size: * raise IndexError('Out of bounds') */ - __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 417; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyLong_FromUnsignedLong(__pyx_v_self->thisptr.size()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 421; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_size = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":418 + /* "schema.pyx":422 * def __getitem__(self, index): * size = self.thisptr.size() * if index >= size: # <<<<<<<<<<<<<< * raise IndexError('Out of bounds') * index = index % size */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_RichCompare(__pyx_v_index, __pyx_v_size, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { - /* "schema.pyx":419 + /* "schema.pyx":423 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_29), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_builtin_IndexError, ((PyObject *)__pyx_k_tuple_29), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + {__pyx_filename = __pyx_f[0]; __pyx_lineno = 423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L3; } __pyx_L3:; - /* "schema.pyx":420 + /* "schema.pyx":424 * if index >= size: * raise IndexError('Out of bounds') * index = index % size # <<<<<<<<<<<<<< * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): */ - __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyNumber_Remainder(__pyx_v_index, __pyx_v_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 424; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_index); __pyx_v_index = __pyx_t_1; __pyx_t_1 = 0; - /* "schema.pyx":421 + /* "schema.pyx":425 * raise IndexError('Out of bounds') * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) # <<<<<<<<<<<<<< @@ -10267,10 +10232,10 @@ static PyObject *__pyx_pf_6schema_43_List_EnumNode_Enumerant_Annotation_Builder_ * return self.thisptr.size() */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 421; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 421; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 421; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsUnsignedInt(__pyx_v_index); if (unlikely((__pyx_t_3 == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_4 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), ((::capnp::schema::Annotation::Builder)(__pyx_v_self->thisptr[__pyx_t_3]))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_4; @@ -10303,7 +10268,7 @@ static Py_ssize_t __pyx_pw_6schema_43_List_EnumNode_Enumerant_Annotation_Builder return __pyx_r; } -/* "schema.pyx":422 +/* "schema.pyx":426 * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): # <<<<<<<<<<<<<< @@ -10316,7 +10281,7 @@ static Py_ssize_t __pyx_pf_6schema_43_List_EnumNode_Enumerant_Annotation_Builder __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__len__", 0); - /* "schema.pyx":423 + /* "schema.pyx":427 * return _AnnotationBuilder().init(self.thisptr[index]) * def __len__(self): * return self.thisptr.size() # <<<<<<<<<<<<<< @@ -10332,7 +10297,7 @@ static Py_ssize_t __pyx_pf_6schema_43_List_EnumNode_Enumerant_Annotation_Builder return __pyx_r; } -/* "schema.pyx":427 +/* "schema.pyx":431 * cdef class _CodeGeneratorRequestReader: * cdef C_CodeGeneratorRequest.Reader thisptr * cdef init(self, C_CodeGeneratorRequest.Reader other): # <<<<<<<<<<<<<< @@ -10345,7 +10310,7 @@ static PyObject *__pyx_f_6schema_27_CodeGeneratorRequestReader_init(struct __pyx __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":428 + /* "schema.pyx":432 * cdef C_CodeGeneratorRequest.Reader thisptr * cdef init(self, C_CodeGeneratorRequest.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -10354,7 +10319,7 @@ static PyObject *__pyx_f_6schema_27_CodeGeneratorRequestReader_init(struct __pyx */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":429 + /* "schema.pyx":433 * cdef init(self, C_CodeGeneratorRequest.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -10384,7 +10349,7 @@ static PyObject *__pyx_pw_6schema_27_CodeGeneratorRequestReader_5nodes_1__get__( return __pyx_r; } -/* "schema.pyx":432 +/* "schema.pyx":436 * * property nodes: * def __get__(self): # <<<<<<<<<<<<<< @@ -10402,7 +10367,7 @@ static PyObject *__pyx_pf_6schema_27_CodeGeneratorRequestReader_5nodes___get__(s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":433 + /* "schema.pyx":437 * property nodes: * def __get__(self): * return _List_CodeGeneratorRequest_Node_Reader().init(self.thisptr.getNodes()) # <<<<<<<<<<<<<< @@ -10410,9 +10375,9 @@ static PyObject *__pyx_pf_6schema_27_CodeGeneratorRequestReader_5nodes___get__(s * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 433; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 437; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Reader *)((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 433; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Reader *)((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 437; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -10443,7 +10408,7 @@ static PyObject *__pyx_pw_6schema_27_CodeGeneratorRequestReader_14requestedFiles return __pyx_r; } -/* "schema.pyx":435 +/* "schema.pyx":439 * return _List_CodeGeneratorRequest_Node_Reader().init(self.thisptr.getNodes()) * property requestedFiles: * def __get__(self): # <<<<<<<<<<<<<< @@ -10461,7 +10426,7 @@ static PyObject *__pyx_pf_6schema_27_CodeGeneratorRequestReader_14requestedFiles int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":436 + /* "schema.pyx":440 * property requestedFiles: * def __get__(self): * return _List_UInt64_Reader().init(self.thisptr.getRequestedFiles()) # <<<<<<<<<<<<<< @@ -10469,9 +10434,9 @@ static PyObject *__pyx_pf_6schema_27_CodeGeneratorRequestReader_14requestedFiles * cdef class _CodeGeneratorRequestBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_UInt64_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 436; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_UInt64_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 440; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_UInt64_Reader *)((struct __pyx_obj_6schema__List_UInt64_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_UInt64_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getRequestedFiles()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 436; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_UInt64_Reader *)((struct __pyx_obj_6schema__List_UInt64_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_UInt64_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getRequestedFiles()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 440; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -10491,7 +10456,7 @@ static PyObject *__pyx_pf_6schema_27_CodeGeneratorRequestReader_14requestedFiles return __pyx_r; } -/* "schema.pyx":440 +/* "schema.pyx":444 * cdef class _CodeGeneratorRequestBuilder: * cdef C_CodeGeneratorRequest.Builder thisptr * cdef init(self, C_CodeGeneratorRequest.Builder other): # <<<<<<<<<<<<<< @@ -10504,7 +10469,7 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_init(struct __py __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":441 + /* "schema.pyx":445 * cdef C_CodeGeneratorRequest.Builder thisptr * cdef init(self, C_CodeGeneratorRequest.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -10513,7 +10478,7 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_init(struct __py */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":442 + /* "schema.pyx":446 * cdef init(self, C_CodeGeneratorRequest.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -10543,7 +10508,7 @@ static PyObject *__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_5nodes_1__get__ return __pyx_r; } -/* "schema.pyx":445 +/* "schema.pyx":449 * * property nodes: * def __get__(self): # <<<<<<<<<<<<<< @@ -10561,7 +10526,7 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_5nodes___get__( int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":446 + /* "schema.pyx":450 * property nodes: * def __get__(self): * return _List_CodeGeneratorRequest_Node_Builder().init(self.thisptr.getNodes()) # <<<<<<<<<<<<<< @@ -10569,9 +10534,9 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_5nodes___get__( * return _List_CodeGeneratorRequest_Node_Builder().init(self.thisptr.initNodes(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 450; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Builder *)((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Builder *)((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 450; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -10591,7 +10556,7 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_5nodes___get__( return __pyx_r; } -/* "schema.pyx":447 +/* "schema.pyx":451 * def __get__(self): * return _List_CodeGeneratorRequest_Node_Builder().init(self.thisptr.getNodes()) * cpdef initNodes(self, uint num): # <<<<<<<<<<<<<< @@ -10614,18 +10579,18 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initNodes(struct if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initNodes); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initNodes); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_1initNodes)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -10636,7 +10601,7 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initNodes(struct __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":448 + /* "schema.pyx":452 * return _List_CodeGeneratorRequest_Node_Builder().init(self.thisptr.getNodes()) * cpdef initNodes(self, uint num): * return _List_CodeGeneratorRequest_Node_Builder().init(self.thisptr.initNodes(num)) # <<<<<<<<<<<<<< @@ -10644,9 +10609,9 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initNodes(struct * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Builder *)((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initNodes(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_CodeGeneratorRequest_Node_Builder *)((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initNodes(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -10678,7 +10643,7 @@ static PyObject *__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_1initNodes(PyOb __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initNodes (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 447; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -10691,7 +10656,7 @@ static PyObject *__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_1initNodes(PyOb return __pyx_r; } -/* "schema.pyx":447 +/* "schema.pyx":451 * def __get__(self): * return _List_CodeGeneratorRequest_Node_Builder().init(self.thisptr.getNodes()) * cpdef initNodes(self, uint num): # <<<<<<<<<<<<<< @@ -10708,7 +10673,7 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_initNodes(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initNodes", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)__pyx_v_self->__pyx_vtab)->initNodes(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)__pyx_v_self->__pyx_vtab)->initNodes(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -10737,7 +10702,7 @@ static PyObject *__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_14requestedFile return __pyx_r; } -/* "schema.pyx":450 +/* "schema.pyx":454 * return _List_CodeGeneratorRequest_Node_Builder().init(self.thisptr.initNodes(num)) * property requestedFiles: * def __get__(self): # <<<<<<<<<<<<<< @@ -10755,7 +10720,7 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_14requestedFile int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":451 + /* "schema.pyx":455 * property requestedFiles: * def __get__(self): * return _List_UInt64_Builder().init(self.thisptr.getRequestedFiles()) # <<<<<<<<<<<<<< @@ -10763,9 +10728,9 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_14requestedFile * return _List_UInt64_Builder().init(self.thisptr.initRequestedFiles(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_UInt64_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_UInt64_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_UInt64_Builder *)((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getRequestedFiles()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_UInt64_Builder *)((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getRequestedFiles()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -10785,7 +10750,7 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_14requestedFile return __pyx_r; } -/* "schema.pyx":452 +/* "schema.pyx":456 * def __get__(self): * return _List_UInt64_Builder().init(self.thisptr.getRequestedFiles()) * cpdef initRequestedFiles(self, uint num): # <<<<<<<<<<<<<< @@ -10808,18 +10773,18 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initRequestedFil if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRequestedFiles); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRequestedFiles); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_3initRequestedFiles)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -10830,7 +10795,7 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initRequestedFil __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":453 + /* "schema.pyx":457 * return _List_UInt64_Builder().init(self.thisptr.getRequestedFiles()) * cpdef initRequestedFiles(self, uint num): * return _List_UInt64_Builder().init(self.thisptr.initRequestedFiles(num)) # <<<<<<<<<<<<<< @@ -10838,9 +10803,9 @@ static PyObject *__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initRequestedFil * _ElementSize = make_enum('_ElementSize',inlineComposite = _ElementSize_inlineComposite,eightBytes = _ElementSize_eightBytes,pointer = _ElementSize_pointer,bit = _ElementSize_bit,twoBytes = _ElementSize_twoBytes,fourBytes = _ElementSize_fourBytes,byte = _ElementSize_byte,empty = _ElementSize_empty,) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_UInt64_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 453; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_UInt64_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 457; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_UInt64_Builder *)((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initRequestedFiles(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 453; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_UInt64_Builder *)((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_UInt64_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initRequestedFiles(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 457; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -10872,7 +10837,7 @@ static PyObject *__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_3initRequestedF __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initRequestedFiles (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -10885,7 +10850,7 @@ static PyObject *__pyx_pw_6schema_28_CodeGeneratorRequestBuilder_3initRequestedF return __pyx_r; } -/* "schema.pyx":452 +/* "schema.pyx":456 * def __get__(self): * return _List_UInt64_Builder().init(self.thisptr.getRequestedFiles()) * cpdef initRequestedFiles(self, uint num): # <<<<<<<<<<<<<< @@ -10902,7 +10867,7 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_2initRequestedF int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRequestedFiles", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)__pyx_v_self->__pyx_vtab)->initRequestedFiles(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 452; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)__pyx_v_self->__pyx_vtab)->initRequestedFiles(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -10920,7 +10885,7 @@ static PyObject *__pyx_pf_6schema_28_CodeGeneratorRequestBuilder_2initRequestedF return __pyx_r; } -/* "schema.pyx":461 +/* "schema.pyx":465 * cdef class _InterfaceNode_Method_ParamReader: * cdef C_InterfaceNode.Method.Param.Reader thisptr * cdef init(self, C_InterfaceNode.Method.Param.Reader other): # <<<<<<<<<<<<<< @@ -10933,7 +10898,7 @@ static PyObject *__pyx_f_6schema_33_InterfaceNode_Method_ParamReader_init(struct __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":462 + /* "schema.pyx":466 * cdef C_InterfaceNode.Method.Param.Reader thisptr * cdef init(self, C_InterfaceNode.Method.Param.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -10942,7 +10907,7 @@ static PyObject *__pyx_f_6schema_33_InterfaceNode_Method_ParamReader_init(struct */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":463 + /* "schema.pyx":467 * cdef init(self, C_InterfaceNode.Method.Param.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -10972,7 +10937,7 @@ static PyObject *__pyx_pw_6schema_33_InterfaceNode_Method_ParamReader_12defaultV return __pyx_r; } -/* "schema.pyx":466 +/* "schema.pyx":470 * * property defaultValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -10990,7 +10955,7 @@ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_12defaultV int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":467 + /* "schema.pyx":471 * property defaultValue: * def __get__(self): * return _ValueReader().init(self.thisptr.getDefaultValue()) # <<<<<<<<<<<<<< @@ -10998,9 +10963,9 @@ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_12defaultV * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 467; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 471; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 467; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 471; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11031,7 +10996,7 @@ static PyObject *__pyx_pw_6schema_33_InterfaceNode_Method_ParamReader_4type_1__g return __pyx_r; } -/* "schema.pyx":469 +/* "schema.pyx":473 * return _ValueReader().init(self.thisptr.getDefaultValue()) * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -11049,7 +11014,7 @@ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_4type___ge int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":470 + /* "schema.pyx":474 * property type: * def __get__(self): * return _TypeReader().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -11057,9 +11022,9 @@ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_4type___ge * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 470; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 470; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11090,32 +11055,43 @@ static PyObject *__pyx_pw_6schema_33_InterfaceNode_Method_ParamReader_4name_1__g return __pyx_r; } -/* "schema.pyx":472 +/* "schema.pyx":476 * return _TypeReader().init(self.thisptr.getType()) * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * property annotations: */ -static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_4name___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":473 + /* "schema.pyx":477 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * property annotations: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 477; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._InterfaceNode_Method_ParamReader.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -11133,8 +11109,8 @@ static PyObject *__pyx_pw_6schema_33_InterfaceNode_Method_ParamReader_11annotati return __pyx_r; } -/* "schema.pyx":475 - * return None +/* "schema.pyx":479 + * return self.thisptr.getName().cStr() * property annotations: * def __get__(self): # <<<<<<<<<<<<<< * return _List_InterfaceNode_Method_Param_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -11151,7 +11127,7 @@ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_11annotati int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":476 + /* "schema.pyx":480 * property annotations: * def __get__(self): * return _List_InterfaceNode_Method_Param_Annotation_Reader().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -11159,9 +11135,9 @@ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_11annotati * cdef class _InterfaceNode_Method_ParamBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 480; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 480; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11181,7 +11157,7 @@ static PyObject *__pyx_pf_6schema_33_InterfaceNode_Method_ParamReader_11annotati return __pyx_r; } -/* "schema.pyx":480 +/* "schema.pyx":484 * cdef class _InterfaceNode_Method_ParamBuilder: * cdef C_InterfaceNode.Method.Param.Builder thisptr * cdef init(self, C_InterfaceNode.Method.Param.Builder other): # <<<<<<<<<<<<<< @@ -11194,7 +11170,7 @@ static PyObject *__pyx_f_6schema_34_InterfaceNode_Method_ParamBuilder_init(struc __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":481 + /* "schema.pyx":485 * cdef C_InterfaceNode.Method.Param.Builder thisptr * cdef init(self, C_InterfaceNode.Method.Param.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -11203,7 +11179,7 @@ static PyObject *__pyx_f_6schema_34_InterfaceNode_Method_ParamBuilder_init(struc */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":482 + /* "schema.pyx":486 * cdef init(self, C_InterfaceNode.Method.Param.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -11233,7 +11209,7 @@ static PyObject *__pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_12default return __pyx_r; } -/* "schema.pyx":485 +/* "schema.pyx":489 * * property defaultValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -11251,7 +11227,7 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_12default int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":486 + /* "schema.pyx":490 * property defaultValue: * def __get__(self): * return _ValueBuilder().init(self.thisptr.getDefaultValue()) # <<<<<<<<<<<<<< @@ -11259,9 +11235,9 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_12default * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 486; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 490; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 486; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 490; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11292,7 +11268,7 @@ static int __pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_12defaultValue_ return __pyx_r; } -/* "schema.pyx":487 +/* "schema.pyx":491 * def __get__(self): * return _ValueBuilder().init(self.thisptr.getDefaultValue()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -11321,7 +11297,7 @@ static PyObject *__pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_4type_1__ return __pyx_r; } -/* "schema.pyx":490 +/* "schema.pyx":494 * pass * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -11339,7 +11315,7 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4type___g int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":491 + /* "schema.pyx":495 * property type: * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -11347,9 +11323,9 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4type___g * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 495; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11380,7 +11356,7 @@ static int __pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_4type_3__set__( return __pyx_r; } -/* "schema.pyx":492 +/* "schema.pyx":496 * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -11409,32 +11385,43 @@ static PyObject *__pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_4name_1__ return __pyx_r; } -/* "schema.pyx":495 +/* "schema.pyx":499 * pass * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_4name___get__(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":496 + /* "schema.pyx":500 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._InterfaceNode_Method_ParamBuilder.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -11452,9 +11439,9 @@ static int __pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_4name_3__set__( return __pyx_r; } -/* "schema.pyx":497 +/* "schema.pyx":501 * def __get__(self): - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property annotations: @@ -11481,7 +11468,7 @@ static PyObject *__pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_11annotat return __pyx_r; } -/* "schema.pyx":500 +/* "schema.pyx":504 * pass * property annotations: * def __get__(self): # <<<<<<<<<<<<<< @@ -11499,7 +11486,7 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_11annotat int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":501 + /* "schema.pyx":505 * property annotations: * def __get__(self): * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -11507,9 +11494,9 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_11annotat * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.initAnnotations(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11529,7 +11516,7 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_11annotat return __pyx_r; } -/* "schema.pyx":502 +/* "schema.pyx":506 * def __get__(self): * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -11552,18 +11539,18 @@ static PyObject *__pyx_f_6schema_34_InterfaceNode_Method_ParamBuilder_initAnnota if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 502; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 506; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_1initAnnotations)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 502; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 506; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 502; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 506; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 502; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 506; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -11574,7 +11561,7 @@ static PyObject *__pyx_f_6schema_34_InterfaceNode_Method_ParamBuilder_initAnnota __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":503 + /* "schema.pyx":507 * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.initAnnotations(num)) # <<<<<<<<<<<<<< @@ -11582,9 +11569,9 @@ static PyObject *__pyx_f_6schema_34_InterfaceNode_Method_ParamBuilder_initAnnota * cdef C_InterfaceNode.Method.Reader thisptr */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11616,7 +11603,7 @@ static PyObject *__pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_1initAnno __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initAnnotations (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 502; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 506; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -11629,7 +11616,7 @@ static PyObject *__pyx_pw_6schema_34_InterfaceNode_Method_ParamBuilder_1initAnno return __pyx_r; } -/* "schema.pyx":502 +/* "schema.pyx":506 * def __get__(self): * return _List_InterfaceNode_Method_Param_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -11646,7 +11633,7 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_initAnnot int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initAnnotations", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 502; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_Method_ParamBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 506; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -11664,7 +11651,7 @@ static PyObject *__pyx_pf_6schema_34_InterfaceNode_Method_ParamBuilder_initAnnot return __pyx_r; } -/* "schema.pyx":506 +/* "schema.pyx":510 * cdef class _InterfaceNode_MethodReader: * cdef C_InterfaceNode.Method.Reader thisptr * cdef init(self, C_InterfaceNode.Method.Reader other): # <<<<<<<<<<<<<< @@ -11677,7 +11664,7 @@ static PyObject *__pyx_f_6schema_27_InterfaceNode_MethodReader_init(struct __pyx __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":507 + /* "schema.pyx":511 * cdef C_InterfaceNode.Method.Reader thisptr * cdef init(self, C_InterfaceNode.Method.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -11686,7 +11673,7 @@ static PyObject *__pyx_f_6schema_27_InterfaceNode_MethodReader_init(struct __pyx */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":508 + /* "schema.pyx":512 * cdef init(self, C_InterfaceNode.Method.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -11716,7 +11703,7 @@ static PyObject *__pyx_pw_6schema_27_InterfaceNode_MethodReader_9codeOrder_1__ge return __pyx_r; } -/* "schema.pyx":511 +/* "schema.pyx":515 * * property codeOrder: * def __get__(self): # <<<<<<<<<<<<<< @@ -11733,7 +11720,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_9codeOrder___get int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":512 + /* "schema.pyx":516 * property codeOrder: * def __get__(self): * return self.thisptr.getCodeOrder() # <<<<<<<<<<<<<< @@ -11741,7 +11728,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_9codeOrder___get * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 512; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -11770,32 +11757,43 @@ static PyObject *__pyx_pw_6schema_27_InterfaceNode_MethodReader_4name_1__get__(P return __pyx_r; } -/* "schema.pyx":514 +/* "schema.pyx":518 * return self.thisptr.getCodeOrder() * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * property params: */ -static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_4name___get__(struct __pyx_obj_6schema__InterfaceNode_MethodReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":515 + /* "schema.pyx":519 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * property params: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 519; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._InterfaceNode_MethodReader.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -11813,8 +11811,8 @@ static PyObject *__pyx_pw_6schema_27_InterfaceNode_MethodReader_6params_1__get__ return __pyx_r; } -/* "schema.pyx":517 - * return None +/* "schema.pyx":521 + * return self.thisptr.getName().cStr() * property params: * def __get__(self): # <<<<<<<<<<<<<< * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader().init(self.thisptr.getParams()) @@ -11831,7 +11829,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_6params___get__( int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":518 + /* "schema.pyx":522 * property params: * def __get__(self): * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader().init(self.thisptr.getParams()) # <<<<<<<<<<<<<< @@ -11839,9 +11837,9 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_6params___get__( * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 518; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 522; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getParams()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 518; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getParams()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 522; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11872,7 +11870,7 @@ static PyObject *__pyx_pw_6schema_27_InterfaceNode_MethodReader_18requiredParamC return __pyx_r; } -/* "schema.pyx":520 +/* "schema.pyx":524 * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader().init(self.thisptr.getParams()) * property requiredParamCount: * def __get__(self): # <<<<<<<<<<<<<< @@ -11889,7 +11887,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_18requiredParamC int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":521 + /* "schema.pyx":525 * property requiredParamCount: * def __get__(self): * return self.thisptr.getRequiredParamCount() # <<<<<<<<<<<<<< @@ -11897,7 +11895,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_18requiredParamC * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getRequiredParamCount()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 521; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getRequiredParamCount()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 525; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -11926,7 +11924,7 @@ static PyObject *__pyx_pw_6schema_27_InterfaceNode_MethodReader_10returnType_1__ return __pyx_r; } -/* "schema.pyx":523 +/* "schema.pyx":527 * return self.thisptr.getRequiredParamCount() * property returnType: * def __get__(self): # <<<<<<<<<<<<<< @@ -11944,7 +11942,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_10returnType___g int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":524 + /* "schema.pyx":528 * property returnType: * def __get__(self): * return _TypeReader().init(self.thisptr.getReturnType()) # <<<<<<<<<<<<<< @@ -11952,9 +11950,9 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_10returnType___g * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 524; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 528; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getReturnType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 524; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getReturnType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 528; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -11985,7 +11983,7 @@ static PyObject *__pyx_pw_6schema_27_InterfaceNode_MethodReader_11annotations_1_ return __pyx_r; } -/* "schema.pyx":526 +/* "schema.pyx":530 * return _TypeReader().init(self.thisptr.getReturnType()) * property annotations: * def __get__(self): # <<<<<<<<<<<<<< @@ -12003,7 +12001,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_11annotations___ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":527 + /* "schema.pyx":531 * property annotations: * def __get__(self): * return _List_InterfaceNode_Method_Annotation_Reader().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -12011,9 +12009,9 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_11annotations___ * cdef class _InterfaceNode_MethodBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 527; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 531; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 527; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 531; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -12033,7 +12031,7 @@ static PyObject *__pyx_pf_6schema_27_InterfaceNode_MethodReader_11annotations___ return __pyx_r; } -/* "schema.pyx":531 +/* "schema.pyx":535 * cdef class _InterfaceNode_MethodBuilder: * cdef C_InterfaceNode.Method.Builder thisptr * cdef init(self, C_InterfaceNode.Method.Builder other): # <<<<<<<<<<<<<< @@ -12046,7 +12044,7 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_init(struct __py __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":532 + /* "schema.pyx":536 * cdef C_InterfaceNode.Method.Builder thisptr * cdef init(self, C_InterfaceNode.Method.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -12055,7 +12053,7 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_init(struct __py */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":533 + /* "schema.pyx":537 * cdef init(self, C_InterfaceNode.Method.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -12085,7 +12083,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_9codeOrder_1__g return __pyx_r; } -/* "schema.pyx":536 +/* "schema.pyx":540 * * property codeOrder: * def __get__(self): # <<<<<<<<<<<<<< @@ -12102,7 +12100,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_9codeOrder___ge int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":537 + /* "schema.pyx":541 * property codeOrder: * def __get__(self): * return self.thisptr.getCodeOrder() # <<<<<<<<<<<<<< @@ -12110,7 +12108,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_9codeOrder___ge * self.thisptr.setCodeOrder(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 537; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 541; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -12139,7 +12137,7 @@ static int __pyx_pw_6schema_28_InterfaceNode_MethodBuilder_9codeOrder_3__set__(P return __pyx_r; } -/* "schema.pyx":538 +/* "schema.pyx":542 * def __get__(self): * return self.thisptr.getCodeOrder() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -12156,14 +12154,14 @@ static int __pyx_pf_6schema_28_InterfaceNode_MethodBuilder_9codeOrder_2__set__(s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":539 + /* "schema.pyx":543 * return self.thisptr.getCodeOrder() * def __set__(self, val): * self.thisptr.setCodeOrder(val) # <<<<<<<<<<<<<< * property name: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 539; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 543; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setCodeOrder(__pyx_t_1); __pyx_r = 0; @@ -12187,32 +12185,43 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_4name_1__get__( return __pyx_r; } -/* "schema.pyx":541 +/* "schema.pyx":545 * self.thisptr.setCodeOrder(val) * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_4name___get__(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":542 + /* "schema.pyx":546 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 546; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._InterfaceNode_MethodBuilder.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -12230,9 +12239,9 @@ static int __pyx_pw_6schema_28_InterfaceNode_MethodBuilder_4name_3__set__(PyObje return __pyx_r; } -/* "schema.pyx":543 +/* "schema.pyx":547 * def __get__(self): - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property params: @@ -12259,7 +12268,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_6params_1__get_ return __pyx_r; } -/* "schema.pyx":546 +/* "schema.pyx":550 * pass * property params: * def __get__(self): # <<<<<<<<<<<<<< @@ -12277,7 +12286,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_6params___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":547 + /* "schema.pyx":551 * property params: * def __get__(self): * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder().init(self.thisptr.getParams()) # <<<<<<<<<<<<<< @@ -12285,9 +12294,9 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_6params___get__ * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder().init(self.thisptr.initParams(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 547; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 551; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getParams()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 547; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getParams()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 551; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -12307,7 +12316,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_6params___get__ return __pyx_r; } -/* "schema.pyx":548 +/* "schema.pyx":552 * def __get__(self): * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder().init(self.thisptr.getParams()) * cpdef initParams(self, uint num): # <<<<<<<<<<<<<< @@ -12330,18 +12339,18 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initParams(struc if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initParams); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 548; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initParams); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_1initParams)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 548; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 548; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 548; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -12352,7 +12361,7 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initParams(struc __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":549 + /* "schema.pyx":553 * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder().init(self.thisptr.getParams()) * cpdef initParams(self, uint num): * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder().init(self.thisptr.initParams(num)) # <<<<<<<<<<<<<< @@ -12360,9 +12369,9 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initParams(struc * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 553; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initParams(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initParams(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 553; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -12394,7 +12403,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_1initParams(PyO __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initParams (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 548; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 552; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -12407,7 +12416,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_1initParams(PyO return __pyx_r; } -/* "schema.pyx":548 +/* "schema.pyx":552 * def __get__(self): * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder().init(self.thisptr.getParams()) * cpdef initParams(self, uint num): # <<<<<<<<<<<<<< @@ -12424,7 +12433,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_initParams(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initParams", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder *)__pyx_v_self->__pyx_vtab)->initParams(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 548; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder *)__pyx_v_self->__pyx_vtab)->initParams(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -12453,7 +12462,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_18requiredParam return __pyx_r; } -/* "schema.pyx":551 +/* "schema.pyx":555 * return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder().init(self.thisptr.initParams(num)) * property requiredParamCount: * def __get__(self): # <<<<<<<<<<<<<< @@ -12470,7 +12479,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_18requiredParam int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":552 + /* "schema.pyx":556 * property requiredParamCount: * def __get__(self): * return self.thisptr.getRequiredParamCount() # <<<<<<<<<<<<<< @@ -12478,7 +12487,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_18requiredParam * self.thisptr.setRequiredParamCount(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getRequiredParamCount()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getRequiredParamCount()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 556; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -12507,7 +12516,7 @@ static int __pyx_pw_6schema_28_InterfaceNode_MethodBuilder_18requiredParamCount_ return __pyx_r; } -/* "schema.pyx":553 +/* "schema.pyx":557 * def __get__(self): * return self.thisptr.getRequiredParamCount() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -12524,14 +12533,14 @@ static int __pyx_pf_6schema_28_InterfaceNode_MethodBuilder_18requiredParamCount_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":554 + /* "schema.pyx":558 * return self.thisptr.getRequiredParamCount() * def __set__(self, val): * self.thisptr.setRequiredParamCount(val) # <<<<<<<<<<<<<< * property returnType: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 554; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 558; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setRequiredParamCount(__pyx_t_1); __pyx_r = 0; @@ -12555,7 +12564,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_10returnType_1_ return __pyx_r; } -/* "schema.pyx":556 +/* "schema.pyx":560 * self.thisptr.setRequiredParamCount(val) * property returnType: * def __get__(self): # <<<<<<<<<<<<<< @@ -12573,7 +12582,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_10returnType___ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":557 + /* "schema.pyx":561 * property returnType: * def __get__(self): * return _TypeBuilder().init(self.thisptr.getReturnType()) # <<<<<<<<<<<<<< @@ -12581,9 +12590,9 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_10returnType___ * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 557; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 561; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getReturnType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 557; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getReturnType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 561; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -12614,7 +12623,7 @@ static int __pyx_pw_6schema_28_InterfaceNode_MethodBuilder_10returnType_3__set__ return __pyx_r; } -/* "schema.pyx":558 +/* "schema.pyx":562 * def __get__(self): * return _TypeBuilder().init(self.thisptr.getReturnType()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -12643,7 +12652,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_11annotations_1 return __pyx_r; } -/* "schema.pyx":561 +/* "schema.pyx":565 * pass * property annotations: * def __get__(self): # <<<<<<<<<<<<<< @@ -12661,7 +12670,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_11annotations__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":562 + /* "schema.pyx":566 * property annotations: * def __get__(self): * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -12669,9 +12678,9 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_11annotations__ * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.initAnnotations(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 562; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 566; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 562; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 566; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -12691,7 +12700,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_11annotations__ return __pyx_r; } -/* "schema.pyx":563 +/* "schema.pyx":567 * def __get__(self): * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -12714,18 +12723,18 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initAnnotations( if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_3initAnnotations)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -12736,7 +12745,7 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initAnnotations( __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":564 + /* "schema.pyx":568 * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.initAnnotations(num)) # <<<<<<<<<<<<<< @@ -12744,9 +12753,9 @@ static PyObject *__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initAnnotations( * cdef C_InterfaceNode.Reader thisptr */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_Method_Annotation_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -12778,7 +12787,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_3initAnnotation __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initAnnotations (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 563; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -12791,7 +12800,7 @@ static PyObject *__pyx_pw_6schema_28_InterfaceNode_MethodBuilder_3initAnnotation return __pyx_r; } -/* "schema.pyx":563 +/* "schema.pyx":567 * def __get__(self): * return _List_InterfaceNode_Method_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -12808,7 +12817,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_2initAnnotation int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initAnnotations", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNode_MethodBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -12826,7 +12835,7 @@ static PyObject *__pyx_pf_6schema_28_InterfaceNode_MethodBuilder_2initAnnotation return __pyx_r; } -/* "schema.pyx":567 +/* "schema.pyx":571 * cdef class _InterfaceNodeReader: * cdef C_InterfaceNode.Reader thisptr * cdef init(self, C_InterfaceNode.Reader other): # <<<<<<<<<<<<<< @@ -12839,7 +12848,7 @@ static PyObject *__pyx_f_6schema_20_InterfaceNodeReader_init(struct __pyx_obj_6s __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":568 + /* "schema.pyx":572 * cdef C_InterfaceNode.Reader thisptr * cdef init(self, C_InterfaceNode.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -12848,7 +12857,7 @@ static PyObject *__pyx_f_6schema_20_InterfaceNodeReader_init(struct __pyx_obj_6s */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":569 + /* "schema.pyx":573 * cdef init(self, C_InterfaceNode.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -12878,7 +12887,7 @@ static PyObject *__pyx_pw_6schema_20_InterfaceNodeReader_7methods_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":572 +/* "schema.pyx":576 * * property methods: * def __get__(self): # <<<<<<<<<<<<<< @@ -12896,7 +12905,7 @@ static PyObject *__pyx_pf_6schema_20_InterfaceNodeReader_7methods___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":573 + /* "schema.pyx":577 * property methods: * def __get__(self): * return _List_InterfaceNode_InterfaceNode_Method_Reader().init(self.thisptr.getMethods()) # <<<<<<<<<<<<<< @@ -12904,9 +12913,9 @@ static PyObject *__pyx_pf_6schema_20_InterfaceNodeReader_7methods___get__(struct * cdef class _InterfaceNodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 573; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getMethods()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 573; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *)((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getMethods()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -12926,7 +12935,7 @@ static PyObject *__pyx_pf_6schema_20_InterfaceNodeReader_7methods___get__(struct return __pyx_r; } -/* "schema.pyx":577 +/* "schema.pyx":581 * cdef class _InterfaceNodeBuilder: * cdef C_InterfaceNode.Builder thisptr * cdef init(self, C_InterfaceNode.Builder other): # <<<<<<<<<<<<<< @@ -12939,7 +12948,7 @@ static PyObject *__pyx_f_6schema_21_InterfaceNodeBuilder_init(struct __pyx_obj_6 __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":578 + /* "schema.pyx":582 * cdef C_InterfaceNode.Builder thisptr * cdef init(self, C_InterfaceNode.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -12948,7 +12957,7 @@ static PyObject *__pyx_f_6schema_21_InterfaceNodeBuilder_init(struct __pyx_obj_6 */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":579 + /* "schema.pyx":583 * cdef init(self, C_InterfaceNode.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -12978,7 +12987,7 @@ static PyObject *__pyx_pw_6schema_21_InterfaceNodeBuilder_7methods_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":582 +/* "schema.pyx":586 * * property methods: * def __get__(self): # <<<<<<<<<<<<<< @@ -12996,7 +13005,7 @@ static PyObject *__pyx_pf_6schema_21_InterfaceNodeBuilder_7methods___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":583 + /* "schema.pyx":587 * property methods: * def __get__(self): * return _List_InterfaceNode_InterfaceNode_Method_Builder().init(self.thisptr.getMethods()) # <<<<<<<<<<<<<< @@ -13004,9 +13013,9 @@ static PyObject *__pyx_pf_6schema_21_InterfaceNodeBuilder_7methods___get__(struc * return _List_InterfaceNode_InterfaceNode_Method_Builder().init(self.thisptr.initMethods(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 583; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 587; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getMethods()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 583; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getMethods()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 587; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -13026,7 +13035,7 @@ static PyObject *__pyx_pf_6schema_21_InterfaceNodeBuilder_7methods___get__(struc return __pyx_r; } -/* "schema.pyx":584 +/* "schema.pyx":588 * def __get__(self): * return _List_InterfaceNode_InterfaceNode_Method_Builder().init(self.thisptr.getMethods()) * cpdef initMethods(self, uint num): # <<<<<<<<<<<<<< @@ -13049,18 +13058,18 @@ static PyObject *__pyx_f_6schema_21_InterfaceNodeBuilder_initMethods(struct __py if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initMethods); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 584; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initMethods); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_21_InterfaceNodeBuilder_1initMethods)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 584; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 584; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 584; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -13071,7 +13080,7 @@ static PyObject *__pyx_f_6schema_21_InterfaceNodeBuilder_initMethods(struct __py __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":585 + /* "schema.pyx":589 * return _List_InterfaceNode_InterfaceNode_Method_Builder().init(self.thisptr.getMethods()) * cpdef initMethods(self, uint num): * return _List_InterfaceNode_InterfaceNode_Method_Builder().init(self.thisptr.initMethods(num)) # <<<<<<<<<<<<<< @@ -13079,9 +13088,9 @@ static PyObject *__pyx_f_6schema_21_InterfaceNodeBuilder_initMethods(struct __py * */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 585; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initMethods(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 585; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initMethods(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -13113,7 +13122,7 @@ static PyObject *__pyx_pw_6schema_21_InterfaceNodeBuilder_1initMethods(PyObject __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initMethods (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 584; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -13126,7 +13135,7 @@ static PyObject *__pyx_pw_6schema_21_InterfaceNodeBuilder_1initMethods(PyObject return __pyx_r; } -/* "schema.pyx":584 +/* "schema.pyx":588 * def __get__(self): * return _List_InterfaceNode_InterfaceNode_Method_Builder().init(self.thisptr.getMethods()) * cpdef initMethods(self, uint num): # <<<<<<<<<<<<<< @@ -13143,7 +13152,7 @@ static PyObject *__pyx_pf_6schema_21_InterfaceNodeBuilder_initMethods(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initMethods", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)__pyx_v_self->__pyx_vtab)->initMethods(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 584; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)__pyx_v_self->__pyx_vtab)->initMethods(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13161,7 +13170,7 @@ static PyObject *__pyx_pf_6schema_21_InterfaceNodeBuilder_initMethods(struct __p return __pyx_r; } -/* "schema.pyx":591 +/* "schema.pyx":595 * cdef class _Value_BodyReader: * cdef C_Value.Body.Reader thisptr * cdef init(self, C_Value.Body.Reader other): # <<<<<<<<<<<<<< @@ -13174,7 +13183,7 @@ static PyObject *__pyx_f_6schema_17_Value_BodyReader_init(struct __pyx_obj_6sche __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":592 + /* "schema.pyx":596 * cdef C_Value.Body.Reader thisptr * cdef init(self, C_Value.Body.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -13183,7 +13192,7 @@ static PyObject *__pyx_f_6schema_17_Value_BodyReader_init(struct __pyx_obj_6sche */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":593 + /* "schema.pyx":597 * cdef init(self, C_Value.Body.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -13202,7 +13211,7 @@ static PyObject *__pyx_f_6schema_17_Value_BodyReader_init(struct __pyx_obj_6sche return __pyx_r; } -/* "schema.pyx":595 +/* "schema.pyx":599 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -13225,12 +13234,12 @@ static int __pyx_f_6schema_17_Value_BodyReader_which(struct __pyx_obj_6schema__V if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 595; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 599; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_17_Value_BodyReader_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 595; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 599; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 595; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 599; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -13239,7 +13248,7 @@ static int __pyx_f_6schema_17_Value_BodyReader_which(struct __pyx_obj_6schema__V __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":596 + /* "schema.pyx":600 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -13272,7 +13281,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_1which(PyObject *__pyx_v_s return __pyx_r; } -/* "schema.pyx":595 +/* "schema.pyx":599 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -13289,7 +13298,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_which(struct __pyx_obj_6sc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Value_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 595; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Value_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 599; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13318,7 +13327,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_11uint32Value_1__get__(PyO return __pyx_r; } -/* "schema.pyx":598 +/* "schema.pyx":602 * return self.thisptr.which() * property uint32Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13335,7 +13344,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint32Value___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":599 + /* "schema.pyx":603 * property uint32Value: * def __get__(self): * return self.thisptr.getUint32Value() # <<<<<<<<<<<<<< @@ -13343,7 +13352,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint32Value___get__(stru * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getUint32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 599; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getUint32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 603; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13372,7 +13381,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_12float64Value_1__get__(Py return __pyx_r; } -/* "schema.pyx":601 +/* "schema.pyx":605 * return self.thisptr.getUint32Value() * property float64Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13389,7 +13398,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_12float64Value___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":602 + /* "schema.pyx":606 * property float64Value: * def __get__(self): * return self.thisptr.getFloat64Value() # <<<<<<<<<<<<<< @@ -13397,7 +13406,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_12float64Value___get__(str * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 606; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13426,7 +13435,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_9voidValue_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":604 +/* "schema.pyx":608 * return self.thisptr.getFloat64Value() * property voidValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -13439,7 +13448,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9voidValue___get__(CYTHON_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":605 + /* "schema.pyx":609 * property voidValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -13469,32 +13478,53 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_9dataValue_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":607 +/* "schema.pyx":611 * return None * property dataValue: * def __get__(self): # <<<<<<<<<<<<<< - * return None - * property listValue: + * temp = self.thisptr.getDataValue() + * return (temp.begin())[:temp.size()] */ -static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9dataValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9dataValue___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self) { + ::capnp::Data::Reader __pyx_v_temp; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":608 + /* "schema.pyx":612 * property dataValue: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * temp = self.thisptr.getDataValue() # <<<<<<<<<<<<<< + * return (temp.begin())[:temp.size()] + * property listValue: + */ + __pyx_v_temp = __pyx_v_self->thisptr.getDataValue(); + + /* "schema.pyx":613 + * def __get__(self): + * temp = self.thisptr.getDataValue() + * return (temp.begin())[:temp.size()] # <<<<<<<<<<<<<< * property listValue: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromStringAndSize(((char *)__pyx_v_temp.begin()) + 0, __pyx_v_temp.size() - 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 613; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._Value_BodyReader.dataValue.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -13512,8 +13542,8 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_9listValue_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":610 - * return None +/* "schema.pyx":615 + * return (temp.begin())[:temp.size()] * property listValue: * def __get__(self): # <<<<<<<<<<<<<< * return None @@ -13525,7 +13555,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9listValue___get__(CYTHON_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":611 + /* "schema.pyx":616 * property listValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -13555,7 +13585,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_10int32Value_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":613 +/* "schema.pyx":618 * return None * property int32Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13572,7 +13602,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int32Value___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":614 + /* "schema.pyx":619 * property int32Value: * def __get__(self): * return self.thisptr.getInt32Value() # <<<<<<<<<<<<<< @@ -13580,7 +13610,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int32Value___get__(struc * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(__pyx_v_self->thisptr.getInt32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 614; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(__pyx_v_self->thisptr.getInt32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 619; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13609,7 +13639,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_9enumValue_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":616 +/* "schema.pyx":621 * return self.thisptr.getInt32Value() * property enumValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -13626,7 +13656,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9enumValue___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":617 + /* "schema.pyx":622 * property enumValue: * def __get__(self): * return self.thisptr.getEnumValue() # <<<<<<<<<<<<<< @@ -13634,7 +13664,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9enumValue___get__(struct * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getEnumValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 617; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getEnumValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 622; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13663,7 +13693,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_9int8Value_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":619 +/* "schema.pyx":624 * return self.thisptr.getEnumValue() * property int8Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13680,7 +13710,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9int8Value___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":620 + /* "schema.pyx":625 * property int8Value: * def __get__(self): * return self.thisptr.getInt8Value() # <<<<<<<<<<<<<< @@ -13688,7 +13718,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9int8Value___get__(struct * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int8_t(__pyx_v_self->thisptr.getInt8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 620; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int8_t(__pyx_v_self->thisptr.getInt8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 625; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13717,7 +13747,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_9boolValue_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":622 +/* "schema.pyx":627 * return self.thisptr.getInt8Value() * property boolValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -13734,7 +13764,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9boolValue___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":623 + /* "schema.pyx":628 * property boolValue: * def __get__(self): * return self.thisptr.getBoolValue() # <<<<<<<<<<<<<< @@ -13742,7 +13772,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9boolValue___get__(struct * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getBoolValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 623; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getBoolValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 628; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13771,7 +13801,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_10int16Value_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":625 +/* "schema.pyx":630 * return self.thisptr.getBoolValue() * property int16Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13788,7 +13818,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int16Value___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":626 + /* "schema.pyx":631 * property int16Value: * def __get__(self): * return self.thisptr.getInt16Value() # <<<<<<<<<<<<<< @@ -13796,7 +13826,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int16Value___get__(struc * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int16_t(__pyx_v_self->thisptr.getInt16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 626; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int16_t(__pyx_v_self->thisptr.getInt16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13825,7 +13855,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_12float32Value_1__get__(Py return __pyx_r; } -/* "schema.pyx":628 +/* "schema.pyx":633 * return self.thisptr.getInt16Value() * property float32Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13842,7 +13872,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_12float32Value___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":629 + /* "schema.pyx":634 * property float32Value: * def __get__(self): * return self.thisptr.getFloat32Value() # <<<<<<<<<<<<<< @@ -13850,7 +13880,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_12float32Value___get__(str * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 634; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13879,7 +13909,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_14interfaceValue_1__get__( return __pyx_r; } -/* "schema.pyx":631 +/* "schema.pyx":636 * return self.thisptr.getFloat32Value() * property interfaceValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -13892,7 +13922,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_14interfaceValue___get__(C __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":632 + /* "schema.pyx":637 * property interfaceValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -13922,7 +13952,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_11uint16Value_1__get__(PyO return __pyx_r; } -/* "schema.pyx":634 +/* "schema.pyx":639 * return None * property uint16Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13939,7 +13969,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint16Value___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":635 + /* "schema.pyx":640 * property uint16Value: * def __get__(self): * return self.thisptr.getUint16Value() # <<<<<<<<<<<<<< @@ -13947,7 +13977,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint16Value___get__(stru * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getUint16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 635; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getUint16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -13976,7 +14006,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_10uint8Value_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":637 +/* "schema.pyx":642 * return self.thisptr.getUint16Value() * property uint8Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -13993,7 +14023,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10uint8Value___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":638 + /* "schema.pyx":643 * property uint8Value: * def __get__(self): * return self.thisptr.getUint8Value() # <<<<<<<<<<<<<< @@ -14001,7 +14031,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10uint8Value___get__(struc * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint8_t(__pyx_v_self->thisptr.getUint8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint8_t(__pyx_v_self->thisptr.getUint8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14030,7 +14060,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_10int64Value_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":640 +/* "schema.pyx":645 * return self.thisptr.getUint8Value() * property int64Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -14047,7 +14077,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int64Value___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":641 + /* "schema.pyx":646 * property int64Value: * def __get__(self): * return self.thisptr.getInt64Value() # <<<<<<<<<<<<<< @@ -14055,7 +14085,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_10int64Value___get__(struc * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int64_t(__pyx_v_self->thisptr.getInt64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 641; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int64_t(__pyx_v_self->thisptr.getInt64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 646; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14084,7 +14114,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_11structValue_1__get__(PyO return __pyx_r; } -/* "schema.pyx":643 +/* "schema.pyx":648 * return self.thisptr.getInt64Value() * property structValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -14097,7 +14127,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11structValue___get__(CYTH __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":644 + /* "schema.pyx":649 * property structValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -14127,32 +14157,43 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_9textValue_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":646 +/* "schema.pyx":651 * return None * property textValue: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getTextValue().cStr() * property uint64Value: */ -static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9textValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_17_Value_BodyReader_9textValue___get__(struct __pyx_obj_6schema__Value_BodyReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":647 + /* "schema.pyx":652 * property textValue: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getTextValue().cStr() # <<<<<<<<<<<<<< * property uint64Value: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getTextValue().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 652; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._Value_BodyReader.textValue.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -14170,8 +14211,8 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_11uint64Value_1__get__(PyO return __pyx_r; } -/* "schema.pyx":649 - * return None +/* "schema.pyx":654 + * return self.thisptr.getTextValue().cStr() * property uint64Value: * def __get__(self): # <<<<<<<<<<<<<< * return self.thisptr.getUint64Value() @@ -14187,7 +14228,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint64Value___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":650 + /* "schema.pyx":655 * property uint64Value: * def __get__(self): * return self.thisptr.getUint64Value() # <<<<<<<<<<<<<< @@ -14195,7 +14236,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11uint64Value___get__(stru * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getUint64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 650; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getUint64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14224,7 +14265,7 @@ static PyObject *__pyx_pw_6schema_17_Value_BodyReader_11objectValue_1__get__(PyO return __pyx_r; } -/* "schema.pyx":652 +/* "schema.pyx":657 * return self.thisptr.getUint64Value() * property objectValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -14237,7 +14278,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11objectValue___get__(CYTH __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":653 + /* "schema.pyx":658 * property objectValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -14256,7 +14297,7 @@ static PyObject *__pyx_pf_6schema_17_Value_BodyReader_11objectValue___get__(CYTH return __pyx_r; } -/* "schema.pyx":657 +/* "schema.pyx":662 * cdef class _Value_BodyBuilder: * cdef C_Value.Body.Builder thisptr * cdef init(self, C_Value.Body.Builder other): # <<<<<<<<<<<<<< @@ -14269,7 +14310,7 @@ static PyObject *__pyx_f_6schema_18_Value_BodyBuilder_init(struct __pyx_obj_6sch __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":658 + /* "schema.pyx":663 * cdef C_Value.Body.Builder thisptr * cdef init(self, C_Value.Body.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -14278,7 +14319,7 @@ static PyObject *__pyx_f_6schema_18_Value_BodyBuilder_init(struct __pyx_obj_6sch */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":659 + /* "schema.pyx":664 * cdef init(self, C_Value.Body.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -14297,7 +14338,7 @@ static PyObject *__pyx_f_6schema_18_Value_BodyBuilder_init(struct __pyx_obj_6sch return __pyx_r; } -/* "schema.pyx":661 +/* "schema.pyx":666 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -14320,12 +14361,12 @@ static int __pyx_f_6schema_18_Value_BodyBuilder_which(struct __pyx_obj_6schema__ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_18_Value_BodyBuilder_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -14334,7 +14375,7 @@ static int __pyx_f_6schema_18_Value_BodyBuilder_which(struct __pyx_obj_6schema__ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":662 + /* "schema.pyx":667 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -14367,7 +14408,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_1which(PyObject *__pyx_v_ return __pyx_r; } -/* "schema.pyx":661 +/* "schema.pyx":666 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -14384,7 +14425,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_which(struct __pyx_obj_6s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Value_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Value_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14413,7 +14454,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_11uint32Value_1__get__(Py return __pyx_r; } -/* "schema.pyx":664 +/* "schema.pyx":669 * return self.thisptr.which() * property uint32Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -14430,7 +14471,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11uint32Value___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":665 + /* "schema.pyx":670 * property uint32Value: * def __get__(self): * return self.thisptr.getUint32Value() # <<<<<<<<<<<<<< @@ -14438,7 +14479,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11uint32Value___get__(str * self.thisptr.setUint32Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getUint32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 665; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getUint32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 670; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14467,7 +14508,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_11uint32Value_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":666 +/* "schema.pyx":671 * def __get__(self): * return self.thisptr.getUint32Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -14484,14 +14525,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_11uint32Value_2__set__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":667 + /* "schema.pyx":672 * return self.thisptr.getUint32Value() * def __set__(self, val): * self.thisptr.setUint32Value(val) # <<<<<<<<<<<<<< * property float64Value: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 667; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setUint32Value(__pyx_t_1); __pyx_r = 0; @@ -14515,7 +14556,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_12float64Value_1__get__(P return __pyx_r; } -/* "schema.pyx":669 +/* "schema.pyx":674 * self.thisptr.setUint32Value(val) * property float64Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -14532,7 +14573,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_12float64Value___get__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":670 + /* "schema.pyx":675 * property float64Value: * def __get__(self): * return self.thisptr.getFloat64Value() # <<<<<<<<<<<<<< @@ -14540,7 +14581,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_12float64Value___get__(st * self.thisptr.setFloat64Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 670; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 675; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14569,7 +14610,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_12float64Value_3__set__(PyObjec return __pyx_r; } -/* "schema.pyx":671 +/* "schema.pyx":676 * def __get__(self): * return self.thisptr.getFloat64Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -14586,14 +14627,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_12float64Value_2__set__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":672 + /* "schema.pyx":677 * return self.thisptr.getFloat64Value() * def __set__(self, val): * self.thisptr.setFloat64Value(val) # <<<<<<<<<<<<<< * property voidValue: * def __get__(self): */ - __pyx_t_1 = __pyx_PyFloat_AsDouble(__pyx_v_val); if (unlikely((__pyx_t_1 == (double)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __pyx_PyFloat_AsDouble(__pyx_v_val); if (unlikely((__pyx_t_1 == (double)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setFloat64Value(__pyx_t_1); __pyx_r = 0; @@ -14617,7 +14658,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_9voidValue_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":674 +/* "schema.pyx":679 * self.thisptr.setFloat64Value(val) * property voidValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -14630,7 +14671,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9voidValue___get__(CYTHON __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":675 + /* "schema.pyx":680 * property voidValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -14660,7 +14701,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_9voidValue_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":676 +/* "schema.pyx":681 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -14689,32 +14730,53 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_9dataValue_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":679 +/* "schema.pyx":684 * pass * property dataValue: * def __get__(self): # <<<<<<<<<<<<<< - * return None - * def __set__(self, val): + * temp = self.thisptr.getDataValue() + * return (temp.begin())[:temp.size()] */ -static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9dataValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9dataValue___get__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self) { + ::capnp::Data::Builder __pyx_v_temp; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":680 + /* "schema.pyx":685 * property dataValue: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * temp = self.thisptr.getDataValue() # <<<<<<<<<<<<<< + * return (temp.begin())[:temp.size()] + * def __set__(self, val): + */ + __pyx_v_temp = __pyx_v_self->thisptr.getDataValue(); + + /* "schema.pyx":686 + * def __get__(self): + * temp = self.thisptr.getDataValue() + * return (temp.begin())[:temp.size()] # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromStringAndSize(((char *)__pyx_v_temp.begin()) + 0, __pyx_v_temp.size() - 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 686; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._Value_BodyBuilder.dataValue.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -14732,9 +14794,9 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_9dataValue_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":681 - * def __get__(self): - * return None +/* "schema.pyx":687 + * temp = self.thisptr.getDataValue() + * return (temp.begin())[:temp.size()] * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property listValue: @@ -14761,7 +14823,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_9listValue_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":684 +/* "schema.pyx":690 * pass * property listValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -14774,7 +14836,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9listValue___get__(CYTHON __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":685 + /* "schema.pyx":691 * property listValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -14804,7 +14866,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_9listValue_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":686 +/* "schema.pyx":692 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -14833,7 +14895,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_10int32Value_1__get__(PyO return __pyx_r; } -/* "schema.pyx":689 +/* "schema.pyx":695 * pass * property int32Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -14850,7 +14912,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10int32Value___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":690 + /* "schema.pyx":696 * property int32Value: * def __get__(self): * return self.thisptr.getInt32Value() # <<<<<<<<<<<<<< @@ -14858,7 +14920,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10int32Value___get__(stru * self.thisptr.setInt32Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(__pyx_v_self->thisptr.getInt32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 690; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(__pyx_v_self->thisptr.getInt32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14887,7 +14949,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_10int32Value_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":691 +/* "schema.pyx":697 * def __get__(self): * return self.thisptr.getInt32Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -14904,14 +14966,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_10int32Value_2__set__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":692 + /* "schema.pyx":698 * return self.thisptr.getInt32Value() * def __set__(self, val): * self.thisptr.setInt32Value(val) # <<<<<<<<<<<<<< * property enumValue: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 692; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setInt32Value(__pyx_t_1); __pyx_r = 0; @@ -14935,7 +14997,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_9enumValue_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":694 +/* "schema.pyx":700 * self.thisptr.setInt32Value(val) * property enumValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -14952,7 +15014,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9enumValue___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":695 + /* "schema.pyx":701 * property enumValue: * def __get__(self): * return self.thisptr.getEnumValue() # <<<<<<<<<<<<<< @@ -14960,7 +15022,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9enumValue___get__(struct * self.thisptr.setEnumValue(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getEnumValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 695; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getEnumValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 701; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -14989,7 +15051,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_9enumValue_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":696 +/* "schema.pyx":702 * def __get__(self): * return self.thisptr.getEnumValue() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15006,14 +15068,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_9enumValue_2__set__(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":697 + /* "schema.pyx":703 * return self.thisptr.getEnumValue() * def __set__(self, val): * self.thisptr.setEnumValue(val) # <<<<<<<<<<<<<< * property int8Value: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setEnumValue(__pyx_t_1); __pyx_r = 0; @@ -15037,7 +15099,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_9int8Value_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":699 +/* "schema.pyx":705 * self.thisptr.setEnumValue(val) * property int8Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -15054,7 +15116,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9int8Value___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":700 + /* "schema.pyx":706 * property int8Value: * def __get__(self): * return self.thisptr.getInt8Value() # <<<<<<<<<<<<<< @@ -15062,7 +15124,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9int8Value___get__(struct * self.thisptr.setInt8Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int8_t(__pyx_v_self->thisptr.getInt8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int8_t(__pyx_v_self->thisptr.getInt8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 706; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -15091,7 +15153,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_9int8Value_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":701 +/* "schema.pyx":707 * def __get__(self): * return self.thisptr.getInt8Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15108,14 +15170,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_9int8Value_2__set__(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":702 + /* "schema.pyx":708 * return self.thisptr.getInt8Value() * def __set__(self, val): * self.thisptr.setInt8Value(val) # <<<<<<<<<<<<<< * property boolValue: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_int8_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int8_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 702; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_int8_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int8_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 708; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setInt8Value(__pyx_t_1); __pyx_r = 0; @@ -15139,7 +15201,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_9boolValue_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":704 +/* "schema.pyx":710 * self.thisptr.setInt8Value(val) * property boolValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -15156,7 +15218,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9boolValue___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":705 + /* "schema.pyx":711 * property boolValue: * def __get__(self): * return self.thisptr.getBoolValue() # <<<<<<<<<<<<<< @@ -15164,7 +15226,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9boolValue___get__(struct * self.thisptr.setBoolValue(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getBoolValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getBoolValue()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -15193,7 +15255,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_9boolValue_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":706 +/* "schema.pyx":712 * def __get__(self): * return self.thisptr.getBoolValue() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15210,14 +15272,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_9boolValue_2__set__(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":707 + /* "schema.pyx":713 * return self.thisptr.getBoolValue() * def __set__(self, val): * self.thisptr.setBoolValue(val) # <<<<<<<<<<<<<< * property int16Value: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 707; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setBoolValue(__pyx_t_1); __pyx_r = 0; @@ -15241,7 +15303,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_10int16Value_1__get__(PyO return __pyx_r; } -/* "schema.pyx":709 +/* "schema.pyx":715 * self.thisptr.setBoolValue(val) * property int16Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -15258,7 +15320,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10int16Value___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":710 + /* "schema.pyx":716 * property int16Value: * def __get__(self): * return self.thisptr.getInt16Value() # <<<<<<<<<<<<<< @@ -15266,7 +15328,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10int16Value___get__(stru * self.thisptr.setInt16Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int16_t(__pyx_v_self->thisptr.getInt16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int16_t(__pyx_v_self->thisptr.getInt16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 716; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -15295,7 +15357,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_10int16Value_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":711 +/* "schema.pyx":717 * def __get__(self): * return self.thisptr.getInt16Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15312,14 +15374,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_10int16Value_2__set__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":712 + /* "schema.pyx":718 * return self.thisptr.getInt16Value() * def __set__(self, val): * self.thisptr.setInt16Value(val) # <<<<<<<<<<<<<< * property float32Value: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_int16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_int16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 718; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setInt16Value(__pyx_t_1); __pyx_r = 0; @@ -15343,7 +15405,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_12float32Value_1__get__(P return __pyx_r; } -/* "schema.pyx":714 +/* "schema.pyx":720 * self.thisptr.setInt16Value(val) * property float32Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -15360,7 +15422,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_12float32Value___get__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":715 + /* "schema.pyx":721 * property float32Value: * def __get__(self): * return self.thisptr.getFloat32Value() # <<<<<<<<<<<<<< @@ -15368,7 +15430,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_12float32Value___get__(st * self.thisptr.setFloat32Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyFloat_FromDouble(__pyx_v_self->thisptr.getFloat32Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -15397,7 +15459,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_12float32Value_3__set__(PyObjec return __pyx_r; } -/* "schema.pyx":716 +/* "schema.pyx":722 * def __get__(self): * return self.thisptr.getFloat32Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15414,14 +15476,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_12float32Value_2__set__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":717 + /* "schema.pyx":723 * return self.thisptr.getFloat32Value() * def __set__(self, val): * self.thisptr.setFloat32Value(val) # <<<<<<<<<<<<<< * property interfaceValue: * def __get__(self): */ - __pyx_t_1 = __pyx_PyFloat_AsFloat(__pyx_v_val); if (unlikely((__pyx_t_1 == (float)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __pyx_PyFloat_AsFloat(__pyx_v_val); if (unlikely((__pyx_t_1 == (float)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setFloat32Value(__pyx_t_1); __pyx_r = 0; @@ -15445,7 +15507,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_14interfaceValue_1__get__ return __pyx_r; } -/* "schema.pyx":719 +/* "schema.pyx":725 * self.thisptr.setFloat32Value(val) * property interfaceValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -15458,7 +15520,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_14interfaceValue___get__( __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":720 + /* "schema.pyx":726 * property interfaceValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -15488,7 +15550,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_14interfaceValue_3__set__(PyObj return __pyx_r; } -/* "schema.pyx":721 +/* "schema.pyx":727 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15517,7 +15579,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_11uint16Value_1__get__(Py return __pyx_r; } -/* "schema.pyx":724 +/* "schema.pyx":730 * pass * property uint16Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -15534,7 +15596,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11uint16Value___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":725 + /* "schema.pyx":731 * property uint16Value: * def __get__(self): * return self.thisptr.getUint16Value() # <<<<<<<<<<<<<< @@ -15542,7 +15604,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11uint16Value___get__(str * self.thisptr.setUint16Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getUint16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getUint16Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -15571,7 +15633,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_11uint16Value_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":726 +/* "schema.pyx":732 * def __get__(self): * return self.thisptr.getUint16Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15588,14 +15650,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_11uint16Value_2__set__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":727 + /* "schema.pyx":733 * return self.thisptr.getUint16Value() * def __set__(self, val): * self.thisptr.setUint16Value(val) # <<<<<<<<<<<<<< * property uint8Value: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setUint16Value(__pyx_t_1); __pyx_r = 0; @@ -15619,7 +15681,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_10uint8Value_1__get__(PyO return __pyx_r; } -/* "schema.pyx":729 +/* "schema.pyx":735 * self.thisptr.setUint16Value(val) * property uint8Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -15636,7 +15698,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10uint8Value___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":730 + /* "schema.pyx":736 * property uint8Value: * def __get__(self): * return self.thisptr.getUint8Value() # <<<<<<<<<<<<<< @@ -15644,7 +15706,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10uint8Value___get__(stru * self.thisptr.setUint8Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint8_t(__pyx_v_self->thisptr.getUint8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint8_t(__pyx_v_self->thisptr.getUint8Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 736; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -15673,7 +15735,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_10uint8Value_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":731 +/* "schema.pyx":737 * def __get__(self): * return self.thisptr.getUint8Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15690,14 +15752,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_10uint8Value_2__set__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":732 + /* "schema.pyx":738 * return self.thisptr.getUint8Value() * def __set__(self, val): * self.thisptr.setUint8Value(val) # <<<<<<<<<<<<<< * property int64Value: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint8_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint8_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 732; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint8_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint8_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 738; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setUint8Value(__pyx_t_1); __pyx_r = 0; @@ -15721,7 +15783,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_10int64Value_1__get__(PyO return __pyx_r; } -/* "schema.pyx":734 +/* "schema.pyx":740 * self.thisptr.setUint8Value(val) * property int64Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -15738,7 +15800,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10int64Value___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":735 + /* "schema.pyx":741 * property int64Value: * def __get__(self): * return self.thisptr.getInt64Value() # <<<<<<<<<<<<<< @@ -15746,7 +15808,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_10int64Value___get__(stru * self.thisptr.setInt64Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_int64_t(__pyx_v_self->thisptr.getInt64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_int64_t(__pyx_v_self->thisptr.getInt64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -15775,7 +15837,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_10int64Value_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":736 +/* "schema.pyx":742 * def __get__(self): * return self.thisptr.getInt64Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15792,14 +15854,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_10int64Value_2__set__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":737 + /* "schema.pyx":743 * return self.thisptr.getInt64Value() * def __set__(self, val): * self.thisptr.setInt64Value(val) # <<<<<<<<<<<<<< * property structValue: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_int64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_int64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (int64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setInt64Value(__pyx_t_1); __pyx_r = 0; @@ -15823,7 +15885,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_11structValue_1__get__(Py return __pyx_r; } -/* "schema.pyx":739 +/* "schema.pyx":745 * self.thisptr.setInt64Value(val) * property structValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -15836,7 +15898,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11structValue___get__(CYT __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":740 + /* "schema.pyx":746 * property structValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -15866,7 +15928,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_11structValue_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":741 +/* "schema.pyx":747 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -15895,32 +15957,43 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_9textValue_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":744 +/* "schema.pyx":750 * pass * property textValue: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getTextValue().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9textValue___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_9textValue___get__(struct __pyx_obj_6schema__Value_BodyBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":745 + /* "schema.pyx":751 * property textValue: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getTextValue().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getTextValue().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._Value_BodyBuilder.textValue.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -15938,9 +16011,9 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_9textValue_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":746 +/* "schema.pyx":752 * def __get__(self): - * return None + * return self.thisptr.getTextValue().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property uint64Value: @@ -15967,7 +16040,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_11uint64Value_1__get__(Py return __pyx_r; } -/* "schema.pyx":749 +/* "schema.pyx":755 * pass * property uint64Value: * def __get__(self): # <<<<<<<<<<<<<< @@ -15984,7 +16057,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11uint64Value___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":750 + /* "schema.pyx":756 * property uint64Value: * def __get__(self): * return self.thisptr.getUint64Value() # <<<<<<<<<<<<<< @@ -15992,7 +16065,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11uint64Value___get__(str * self.thisptr.setUint64Value(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getUint64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getUint64Value()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 756; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -16021,7 +16094,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_11uint64Value_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":751 +/* "schema.pyx":757 * def __get__(self): * return self.thisptr.getUint64Value() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -16038,14 +16111,14 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_11uint64Value_2__set__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":752 + /* "schema.pyx":758 * return self.thisptr.getUint64Value() * def __set__(self, val): * self.thisptr.setUint64Value(val) # <<<<<<<<<<<<<< * property objectValue: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 752; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 758; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setUint64Value(__pyx_t_1); __pyx_r = 0; @@ -16069,7 +16142,7 @@ static PyObject *__pyx_pw_6schema_18_Value_BodyBuilder_11objectValue_1__get__(Py return __pyx_r; } -/* "schema.pyx":754 +/* "schema.pyx":760 * self.thisptr.setUint64Value(val) * property objectValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -16082,7 +16155,7 @@ static PyObject *__pyx_pf_6schema_18_Value_BodyBuilder_11objectValue___get__(CYT __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":755 + /* "schema.pyx":761 * property objectValue: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -16112,7 +16185,7 @@ static int __pyx_pw_6schema_18_Value_BodyBuilder_11objectValue_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":756 +/* "schema.pyx":762 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -16130,7 +16203,7 @@ static int __pyx_pf_6schema_18_Value_BodyBuilder_11objectValue_2__set__(CYTHON_U return __pyx_r; } -/* "schema.pyx":760 +/* "schema.pyx":766 * cdef class _ValueReader: * cdef C_Value.Reader thisptr * cdef init(self, C_Value.Reader other): # <<<<<<<<<<<<<< @@ -16143,7 +16216,7 @@ static PyObject *__pyx_f_6schema_12_ValueReader_init(struct __pyx_obj_6schema__V __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":761 + /* "schema.pyx":767 * cdef C_Value.Reader thisptr * cdef init(self, C_Value.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -16152,7 +16225,7 @@ static PyObject *__pyx_f_6schema_12_ValueReader_init(struct __pyx_obj_6schema__V */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":762 + /* "schema.pyx":768 * cdef init(self, C_Value.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -16182,7 +16255,7 @@ static PyObject *__pyx_pw_6schema_12_ValueReader_4body_1__get__(PyObject *__pyx_ return __pyx_r; } -/* "schema.pyx":765 +/* "schema.pyx":771 * * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -16200,7 +16273,7 @@ static PyObject *__pyx_pf_6schema_12_ValueReader_4body___get__(struct __pyx_obj_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":766 + /* "schema.pyx":772 * property body: * def __get__(self): * return _Value_BodyReader().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -16208,9 +16281,9 @@ static PyObject *__pyx_pf_6schema_12_ValueReader_4body___get__(struct __pyx_obj_ * cdef class _ValueBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 772; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Value_BodyReader *)((struct __pyx_obj_6schema__Value_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Value_BodyReader *)__pyx_t_1), ((::capnp::schema::Value::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Value_BodyReader *)((struct __pyx_obj_6schema__Value_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Value_BodyReader *)__pyx_t_1), ((::capnp::schema::Value::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 772; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -16230,7 +16303,7 @@ static PyObject *__pyx_pf_6schema_12_ValueReader_4body___get__(struct __pyx_obj_ return __pyx_r; } -/* "schema.pyx":770 +/* "schema.pyx":776 * cdef class _ValueBuilder: * cdef C_Value.Builder thisptr * cdef init(self, C_Value.Builder other): # <<<<<<<<<<<<<< @@ -16243,7 +16316,7 @@ static PyObject *__pyx_f_6schema_13_ValueBuilder_init(struct __pyx_obj_6schema__ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":771 + /* "schema.pyx":777 * cdef C_Value.Builder thisptr * cdef init(self, C_Value.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -16252,7 +16325,7 @@ static PyObject *__pyx_f_6schema_13_ValueBuilder_init(struct __pyx_obj_6schema__ */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":772 + /* "schema.pyx":778 * cdef init(self, C_Value.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -16282,7 +16355,7 @@ static PyObject *__pyx_pw_6schema_13_ValueBuilder_4body_1__get__(PyObject *__pyx return __pyx_r; } -/* "schema.pyx":775 +/* "schema.pyx":781 * * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -16300,7 +16373,7 @@ static PyObject *__pyx_pf_6schema_13_ValueBuilder_4body___get__(struct __pyx_obj int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":776 + /* "schema.pyx":782 * property body: * def __get__(self): * return _Value_BodyBuilder().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -16308,9 +16381,9 @@ static PyObject *__pyx_pf_6schema_13_ValueBuilder_4body___get__(struct __pyx_obj * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 776; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 782; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Value_BodyBuilder *)((struct __pyx_obj_6schema__Value_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Value_BodyBuilder *)__pyx_t_1), ((::capnp::schema::Value::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 776; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Value_BodyBuilder *)((struct __pyx_obj_6schema__Value_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Value_BodyBuilder *)__pyx_t_1), ((::capnp::schema::Value::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 782; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -16341,7 +16414,7 @@ static int __pyx_pw_6schema_13_ValueBuilder_4body_3__set__(PyObject *__pyx_v_sel return __pyx_r; } -/* "schema.pyx":777 +/* "schema.pyx":783 * def __get__(self): * return _Value_BodyBuilder().init(self.thisptr.getBody()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -16359,7 +16432,7 @@ static int __pyx_pf_6schema_13_ValueBuilder_4body_2__set__(CYTHON_UNUSED struct return __pyx_r; } -/* "schema.pyx":782 +/* "schema.pyx":788 * cdef class _ConstNodeReader: * cdef C_ConstNode.Reader thisptr * cdef init(self, C_ConstNode.Reader other): # <<<<<<<<<<<<<< @@ -16372,7 +16445,7 @@ static PyObject *__pyx_f_6schema_16_ConstNodeReader_init(struct __pyx_obj_6schem __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":783 + /* "schema.pyx":789 * cdef C_ConstNode.Reader thisptr * cdef init(self, C_ConstNode.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -16381,7 +16454,7 @@ static PyObject *__pyx_f_6schema_16_ConstNodeReader_init(struct __pyx_obj_6schem */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":784 + /* "schema.pyx":790 * cdef init(self, C_ConstNode.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -16411,7 +16484,7 @@ static PyObject *__pyx_pw_6schema_16_ConstNodeReader_4type_1__get__(PyObject *__ return __pyx_r; } -/* "schema.pyx":787 +/* "schema.pyx":793 * * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -16429,7 +16502,7 @@ static PyObject *__pyx_pf_6schema_16_ConstNodeReader_4type___get__(struct __pyx_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":788 + /* "schema.pyx":794 * property type: * def __get__(self): * return _TypeReader().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -16437,9 +16510,9 @@ static PyObject *__pyx_pf_6schema_16_ConstNodeReader_4type___get__(struct __pyx_ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 788; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 794; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 788; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 794; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -16470,7 +16543,7 @@ static PyObject *__pyx_pw_6schema_16_ConstNodeReader_5value_1__get__(PyObject *_ return __pyx_r; } -/* "schema.pyx":790 +/* "schema.pyx":796 * return _TypeReader().init(self.thisptr.getType()) * property value: * def __get__(self): # <<<<<<<<<<<<<< @@ -16488,7 +16561,7 @@ static PyObject *__pyx_pf_6schema_16_ConstNodeReader_5value___get__(struct __pyx int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":791 + /* "schema.pyx":797 * property value: * def __get__(self): * return _ValueReader().init(self.thisptr.getValue()) # <<<<<<<<<<<<<< @@ -16496,9 +16569,9 @@ static PyObject *__pyx_pf_6schema_16_ConstNodeReader_5value___get__(struct __pyx * cdef class _ConstNodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -16518,7 +16591,7 @@ static PyObject *__pyx_pf_6schema_16_ConstNodeReader_5value___get__(struct __pyx return __pyx_r; } -/* "schema.pyx":795 +/* "schema.pyx":801 * cdef class _ConstNodeBuilder: * cdef C_ConstNode.Builder thisptr * cdef init(self, C_ConstNode.Builder other): # <<<<<<<<<<<<<< @@ -16531,7 +16604,7 @@ static PyObject *__pyx_f_6schema_17_ConstNodeBuilder_init(struct __pyx_obj_6sche __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":796 + /* "schema.pyx":802 * cdef C_ConstNode.Builder thisptr * cdef init(self, C_ConstNode.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -16540,7 +16613,7 @@ static PyObject *__pyx_f_6schema_17_ConstNodeBuilder_init(struct __pyx_obj_6sche */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":797 + /* "schema.pyx":803 * cdef init(self, C_ConstNode.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -16570,7 +16643,7 @@ static PyObject *__pyx_pw_6schema_17_ConstNodeBuilder_4type_1__get__(PyObject *_ return __pyx_r; } -/* "schema.pyx":800 +/* "schema.pyx":806 * * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -16588,7 +16661,7 @@ static PyObject *__pyx_pf_6schema_17_ConstNodeBuilder_4type___get__(struct __pyx int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":801 + /* "schema.pyx":807 * property type: * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -16596,9 +16669,9 @@ static PyObject *__pyx_pf_6schema_17_ConstNodeBuilder_4type___get__(struct __pyx * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 801; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 807; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 801; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 807; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -16629,7 +16702,7 @@ static int __pyx_pw_6schema_17_ConstNodeBuilder_4type_3__set__(PyObject *__pyx_v return __pyx_r; } -/* "schema.pyx":802 +/* "schema.pyx":808 * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -16658,7 +16731,7 @@ static PyObject *__pyx_pw_6schema_17_ConstNodeBuilder_5value_1__get__(PyObject * return __pyx_r; } -/* "schema.pyx":805 +/* "schema.pyx":811 * pass * property value: * def __get__(self): # <<<<<<<<<<<<<< @@ -16676,7 +16749,7 @@ static PyObject *__pyx_pf_6schema_17_ConstNodeBuilder_5value___get__(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":806 + /* "schema.pyx":812 * property value: * def __get__(self): * return _ValueBuilder().init(self.thisptr.getValue()) # <<<<<<<<<<<<<< @@ -16684,9 +16757,9 @@ static PyObject *__pyx_pf_6schema_17_ConstNodeBuilder_5value___get__(struct __py * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 806; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 812; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 806; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 812; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -16717,7 +16790,7 @@ static int __pyx_pw_6schema_17_ConstNodeBuilder_5value_3__set__(PyObject *__pyx_ return __pyx_r; } -/* "schema.pyx":807 +/* "schema.pyx":813 * def __get__(self): * return _ValueBuilder().init(self.thisptr.getValue()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -16735,7 +16808,7 @@ static int __pyx_pf_6schema_17_ConstNodeBuilder_5value_2__set__(CYTHON_UNUSED st return __pyx_r; } -/* "schema.pyx":814 +/* "schema.pyx":820 * cdef class _Type_BodyReader: * cdef C_Type.Body.Reader thisptr * cdef init(self, C_Type.Body.Reader other): # <<<<<<<<<<<<<< @@ -16748,7 +16821,7 @@ static PyObject *__pyx_f_6schema_16_Type_BodyReader_init(struct __pyx_obj_6schem __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":815 + /* "schema.pyx":821 * cdef C_Type.Body.Reader thisptr * cdef init(self, C_Type.Body.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -16757,7 +16830,7 @@ static PyObject *__pyx_f_6schema_16_Type_BodyReader_init(struct __pyx_obj_6schem */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":816 + /* "schema.pyx":822 * cdef init(self, C_Type.Body.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -16776,7 +16849,7 @@ static PyObject *__pyx_f_6schema_16_Type_BodyReader_init(struct __pyx_obj_6schem return __pyx_r; } -/* "schema.pyx":818 +/* "schema.pyx":824 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -16799,12 +16872,12 @@ static int __pyx_f_6schema_16_Type_BodyReader_which(struct __pyx_obj_6schema__Ty if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 824; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_16_Type_BodyReader_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 824; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 824; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -16813,7 +16886,7 @@ static int __pyx_f_6schema_16_Type_BodyReader_which(struct __pyx_obj_6schema__Ty __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":819 + /* "schema.pyx":825 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -16846,7 +16919,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_1which(PyObject *__pyx_v_se return __pyx_r; } -/* "schema.pyx":818 +/* "schema.pyx":824 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -16863,7 +16936,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_which(struct __pyx_obj_6sch int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Type_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Type_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 824; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -16892,7 +16965,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_8boolType_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":821 +/* "schema.pyx":827 * return self.thisptr.which() * property boolType: * def __get__(self): # <<<<<<<<<<<<<< @@ -16905,7 +16978,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8boolType___get__(CYTHON_UN __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":822 + /* "schema.pyx":828 * property boolType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -16935,7 +17008,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_10structType_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":824 +/* "schema.pyx":830 * return None * property structType: * def __get__(self): # <<<<<<<<<<<<<< @@ -16952,7 +17025,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_10structType___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":825 + /* "schema.pyx":831 * property structType: * def __get__(self): * return self.thisptr.getStructType() # <<<<<<<<<<<<<< @@ -16960,7 +17033,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_10structType___get__(struct * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getStructType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 825; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getStructType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 831; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -16989,7 +17062,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_9int32Type_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":827 +/* "schema.pyx":833 * return self.thisptr.getStructType() * property int32Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17002,7 +17075,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_9int32Type___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":828 + /* "schema.pyx":834 * property int32Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17032,7 +17105,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_8voidType_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":830 +/* "schema.pyx":836 * return None * property voidType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17045,7 +17118,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8voidType___get__(CYTHON_UN __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":831 + /* "schema.pyx":837 * property voidType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17075,7 +17148,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_10uint16Type_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":833 +/* "schema.pyx":839 * return None * property uint16Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17088,7 +17161,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_10uint16Type___get__(CYTHON __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":834 + /* "schema.pyx":840 * property uint16Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17118,7 +17191,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_8dataType_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":836 +/* "schema.pyx":842 * return None * property dataType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17131,7 +17204,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8dataType___get__(CYTHON_UN __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":837 + /* "schema.pyx":843 * property dataType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17161,7 +17234,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_10objectType_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":839 +/* "schema.pyx":845 * return None * property objectType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17174,7 +17247,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_10objectType___get__(CYTHON __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":840 + /* "schema.pyx":846 * property objectType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17204,7 +17277,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_9int64Type_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":842 +/* "schema.pyx":848 * return None * property int64Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17217,7 +17290,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_9int64Type___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":843 + /* "schema.pyx":849 * property int64Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17247,7 +17320,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_11float64Type_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":845 +/* "schema.pyx":851 * return None * property float64Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17260,7 +17333,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_11float64Type___get__(CYTHO __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":846 + /* "schema.pyx":852 * property float64Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17290,7 +17363,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_13interfaceType_1__get__(Py return __pyx_r; } -/* "schema.pyx":848 +/* "schema.pyx":854 * return None * property interfaceType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17307,7 +17380,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_13interfaceType___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":849 + /* "schema.pyx":855 * property interfaceType: * def __get__(self): * return self.thisptr.getInterfaceType() # <<<<<<<<<<<<<< @@ -17315,7 +17388,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_13interfaceType___get__(str * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getInterfaceType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 849; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getInterfaceType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 855; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -17344,7 +17417,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_10uint32Type_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":851 +/* "schema.pyx":857 * return self.thisptr.getInterfaceType() * property uint32Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17357,7 +17430,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_10uint32Type___get__(CYTHON __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":852 + /* "schema.pyx":858 * property uint32Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17387,7 +17460,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_9uint8Type_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":854 +/* "schema.pyx":860 * return None * property uint8Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17400,7 +17473,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_9uint8Type___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":855 + /* "schema.pyx":861 * property uint8Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17430,7 +17503,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_8listType_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":857 +/* "schema.pyx":863 * return None * property listType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17448,7 +17521,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8listType___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":858 + /* "schema.pyx":864 * property listType: * def __get__(self): * return _TypeReader().init(self.thisptr.getListType()) # <<<<<<<<<<<<<< @@ -17456,9 +17529,9 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8listType___get__(struct __ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 858; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 864; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getListType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 858; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getListType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 864; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -17489,7 +17562,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_8int8Type_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":860 +/* "schema.pyx":866 * return _TypeReader().init(self.thisptr.getListType()) * property int8Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17502,7 +17575,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8int8Type___get__(CYTHON_UN __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":861 + /* "schema.pyx":867 * property int8Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17532,7 +17605,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_11float32Type_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":863 +/* "schema.pyx":869 * return None * property float32Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17545,7 +17618,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_11float32Type___get__(CYTHO __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":864 + /* "schema.pyx":870 * property float32Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17575,7 +17648,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_8enumType_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":866 +/* "schema.pyx":872 * return None * property enumType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17592,7 +17665,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8enumType___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":867 + /* "schema.pyx":873 * property enumType: * def __get__(self): * return self.thisptr.getEnumType() # <<<<<<<<<<<<<< @@ -17600,7 +17673,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8enumType___get__(struct __ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getEnumType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 867; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getEnumType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -17629,7 +17702,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_10uint64Type_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":869 +/* "schema.pyx":875 * return self.thisptr.getEnumType() * property uint64Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17642,7 +17715,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_10uint64Type___get__(CYTHON __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":870 + /* "schema.pyx":876 * property uint64Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17672,7 +17745,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_8textType_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":872 +/* "schema.pyx":878 * return None * property textType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17685,7 +17758,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_8textType___get__(CYTHON_UN __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":873 + /* "schema.pyx":879 * property textType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17715,7 +17788,7 @@ static PyObject *__pyx_pw_6schema_16_Type_BodyReader_9int16Type_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":875 +/* "schema.pyx":881 * return None * property int16Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -17728,7 +17801,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_9int16Type___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":876 + /* "schema.pyx":882 * property int16Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17747,7 +17820,7 @@ static PyObject *__pyx_pf_6schema_16_Type_BodyReader_9int16Type___get__(CYTHON_U return __pyx_r; } -/* "schema.pyx":880 +/* "schema.pyx":886 * cdef class _Type_BodyBuilder: * cdef C_Type.Body.Builder thisptr * cdef init(self, C_Type.Body.Builder other): # <<<<<<<<<<<<<< @@ -17760,7 +17833,7 @@ static PyObject *__pyx_f_6schema_17_Type_BodyBuilder_init(struct __pyx_obj_6sche __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":881 + /* "schema.pyx":887 * cdef C_Type.Body.Builder thisptr * cdef init(self, C_Type.Body.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -17769,7 +17842,7 @@ static PyObject *__pyx_f_6schema_17_Type_BodyBuilder_init(struct __pyx_obj_6sche */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":882 + /* "schema.pyx":888 * cdef init(self, C_Type.Body.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -17788,7 +17861,7 @@ static PyObject *__pyx_f_6schema_17_Type_BodyBuilder_init(struct __pyx_obj_6sche return __pyx_r; } -/* "schema.pyx":884 +/* "schema.pyx":890 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -17811,12 +17884,12 @@ static int __pyx_f_6schema_17_Type_BodyBuilder_which(struct __pyx_obj_6schema__T if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 890; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_17_Type_BodyBuilder_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 890; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 890; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -17825,7 +17898,7 @@ static int __pyx_f_6schema_17_Type_BodyBuilder_which(struct __pyx_obj_6schema__T __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":885 + /* "schema.pyx":891 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -17858,7 +17931,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_1which(PyObject *__pyx_v_s return __pyx_r; } -/* "schema.pyx":884 +/* "schema.pyx":890 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -17875,7 +17948,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_which(struct __pyx_obj_6sc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Type_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Type_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 890; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -17904,7 +17977,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_8boolType_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":887 +/* "schema.pyx":893 * return self.thisptr.which() * property boolType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17917,7 +17990,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8boolType___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":888 + /* "schema.pyx":894 * property boolType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -17947,7 +18020,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_8boolType_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":889 +/* "schema.pyx":895 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -17976,7 +18049,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_10structType_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":892 +/* "schema.pyx":898 * pass * property structType: * def __get__(self): # <<<<<<<<<<<<<< @@ -17993,7 +18066,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_10structType___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":893 + /* "schema.pyx":899 * property structType: * def __get__(self): * return self.thisptr.getStructType() # <<<<<<<<<<<<<< @@ -18001,7 +18074,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_10structType___get__(struc * self.thisptr.setStructType(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getStructType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 893; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getStructType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 899; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -18030,7 +18103,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_10structType_3__set__(PyObject * return __pyx_r; } -/* "schema.pyx":894 +/* "schema.pyx":900 * def __get__(self): * return self.thisptr.getStructType() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18047,14 +18120,14 @@ static int __pyx_pf_6schema_17_Type_BodyBuilder_10structType_2__set__(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":895 + /* "schema.pyx":901 * return self.thisptr.getStructType() * def __set__(self, val): * self.thisptr.setStructType(val) # <<<<<<<<<<<<<< * property int32Type: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 895; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 901; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setStructType(__pyx_t_1); __pyx_r = 0; @@ -18078,7 +18151,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_9int32Type_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":897 +/* "schema.pyx":903 * self.thisptr.setStructType(val) * property int32Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -18091,7 +18164,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_9int32Type___get__(CYTHON_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":898 + /* "schema.pyx":904 * property int32Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18121,7 +18194,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_9int32Type_3__set__(PyObject *__ return __pyx_r; } -/* "schema.pyx":899 +/* "schema.pyx":905 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18150,7 +18223,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_8voidType_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":902 +/* "schema.pyx":908 * pass * property voidType: * def __get__(self): # <<<<<<<<<<<<<< @@ -18163,7 +18236,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8voidType___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":903 + /* "schema.pyx":909 * property voidType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18193,7 +18266,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_8voidType_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":904 +/* "schema.pyx":910 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18222,7 +18295,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_10uint16Type_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":907 +/* "schema.pyx":913 * pass * property uint16Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -18235,7 +18308,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_10uint16Type___get__(CYTHO __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":908 + /* "schema.pyx":914 * property uint16Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18265,7 +18338,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_10uint16Type_3__set__(PyObject * return __pyx_r; } -/* "schema.pyx":909 +/* "schema.pyx":915 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18294,7 +18367,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_8dataType_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":912 +/* "schema.pyx":918 * pass * property dataType: * def __get__(self): # <<<<<<<<<<<<<< @@ -18307,7 +18380,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8dataType___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":913 + /* "schema.pyx":919 * property dataType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18337,7 +18410,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_8dataType_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":914 +/* "schema.pyx":920 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18366,7 +18439,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_10objectType_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":917 +/* "schema.pyx":923 * pass * property objectType: * def __get__(self): # <<<<<<<<<<<<<< @@ -18379,7 +18452,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_10objectType___get__(CYTHO __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":918 + /* "schema.pyx":924 * property objectType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18409,7 +18482,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_10objectType_3__set__(PyObject * return __pyx_r; } -/* "schema.pyx":919 +/* "schema.pyx":925 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18438,7 +18511,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_9int64Type_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":922 +/* "schema.pyx":928 * pass * property int64Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -18451,7 +18524,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_9int64Type___get__(CYTHON_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":923 + /* "schema.pyx":929 * property int64Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18481,7 +18554,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_9int64Type_3__set__(PyObject *__ return __pyx_r; } -/* "schema.pyx":924 +/* "schema.pyx":930 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18510,7 +18583,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_11float64Type_1__get__(PyO return __pyx_r; } -/* "schema.pyx":927 +/* "schema.pyx":933 * pass * property float64Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -18523,7 +18596,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_11float64Type___get__(CYTH __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":928 + /* "schema.pyx":934 * property float64Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18553,7 +18626,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_11float64Type_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":929 +/* "schema.pyx":935 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18582,7 +18655,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_13interfaceType_1__get__(P return __pyx_r; } -/* "schema.pyx":932 +/* "schema.pyx":938 * pass * property interfaceType: * def __get__(self): # <<<<<<<<<<<<<< @@ -18599,7 +18672,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_13interfaceType___get__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":933 + /* "schema.pyx":939 * property interfaceType: * def __get__(self): * return self.thisptr.getInterfaceType() # <<<<<<<<<<<<<< @@ -18607,7 +18680,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_13interfaceType___get__(st * self.thisptr.setInterfaceType(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getInterfaceType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 933; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getInterfaceType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 939; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -18636,7 +18709,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_13interfaceType_3__set__(PyObjec return __pyx_r; } -/* "schema.pyx":934 +/* "schema.pyx":940 * def __get__(self): * return self.thisptr.getInterfaceType() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18653,14 +18726,14 @@ static int __pyx_pf_6schema_17_Type_BodyBuilder_13interfaceType_2__set__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":935 + /* "schema.pyx":941 * return self.thisptr.getInterfaceType() * def __set__(self, val): * self.thisptr.setInterfaceType(val) # <<<<<<<<<<<<<< * property uint32Type: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 935; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 941; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setInterfaceType(__pyx_t_1); __pyx_r = 0; @@ -18684,7 +18757,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_10uint32Type_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":937 +/* "schema.pyx":943 * self.thisptr.setInterfaceType(val) * property uint32Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -18697,7 +18770,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_10uint32Type___get__(CYTHO __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":938 + /* "schema.pyx":944 * property uint32Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18727,7 +18800,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_10uint32Type_3__set__(PyObject * return __pyx_r; } -/* "schema.pyx":939 +/* "schema.pyx":945 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18756,7 +18829,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_9uint8Type_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":942 +/* "schema.pyx":948 * pass * property uint8Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -18769,7 +18842,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_9uint8Type___get__(CYTHON_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":943 + /* "schema.pyx":949 * property uint8Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18799,7 +18872,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_9uint8Type_3__set__(PyObject *__ return __pyx_r; } -/* "schema.pyx":944 +/* "schema.pyx":950 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18828,7 +18901,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_8listType_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":947 +/* "schema.pyx":953 * pass * property listType: * def __get__(self): # <<<<<<<<<<<<<< @@ -18846,7 +18919,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8listType___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":948 + /* "schema.pyx":954 * property listType: * def __get__(self): * return _TypeBuilder().init(self.thisptr.getListType()) # <<<<<<<<<<<<<< @@ -18854,9 +18927,9 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8listType___get__(struct _ * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 948; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 954; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getListType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 948; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getListType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 954; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -18887,7 +18960,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_8listType_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":949 +/* "schema.pyx":955 * def __get__(self): * return _TypeBuilder().init(self.thisptr.getListType()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18916,7 +18989,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_8int8Type_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":952 +/* "schema.pyx":958 * pass * property int8Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -18929,7 +19002,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8int8Type___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":953 + /* "schema.pyx":959 * property int8Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -18959,7 +19032,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_8int8Type_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":954 +/* "schema.pyx":960 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -18988,7 +19061,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_11float32Type_1__get__(PyO return __pyx_r; } -/* "schema.pyx":957 +/* "schema.pyx":963 * pass * property float32Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -19001,7 +19074,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_11float32Type___get__(CYTH __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":958 + /* "schema.pyx":964 * property float32Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -19031,7 +19104,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_11float32Type_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":959 +/* "schema.pyx":965 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -19060,7 +19133,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_8enumType_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":962 +/* "schema.pyx":968 * pass * property enumType: * def __get__(self): # <<<<<<<<<<<<<< @@ -19077,7 +19150,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8enumType___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":963 + /* "schema.pyx":969 * property enumType: * def __get__(self): * return self.thisptr.getEnumType() # <<<<<<<<<<<<<< @@ -19085,7 +19158,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8enumType___get__(struct _ * self.thisptr.setEnumType(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getEnumType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 963; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getEnumType()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 969; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -19114,7 +19187,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_8enumType_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":964 +/* "schema.pyx":970 * def __get__(self): * return self.thisptr.getEnumType() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -19131,14 +19204,14 @@ static int __pyx_pf_6schema_17_Type_BodyBuilder_8enumType_2__set__(struct __pyx_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":965 + /* "schema.pyx":971 * return self.thisptr.getEnumType() * def __set__(self, val): * self.thisptr.setEnumType(val) # <<<<<<<<<<<<<< * property uint64Type: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 965; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 971; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setEnumType(__pyx_t_1); __pyx_r = 0; @@ -19162,7 +19235,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_10uint64Type_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":967 +/* "schema.pyx":973 * self.thisptr.setEnumType(val) * property uint64Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -19175,7 +19248,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_10uint64Type___get__(CYTHO __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":968 + /* "schema.pyx":974 * property uint64Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -19205,7 +19278,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_10uint64Type_3__set__(PyObject * return __pyx_r; } -/* "schema.pyx":969 +/* "schema.pyx":975 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -19234,7 +19307,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_8textType_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":972 +/* "schema.pyx":978 * pass * property textType: * def __get__(self): # <<<<<<<<<<<<<< @@ -19247,7 +19320,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_8textType___get__(CYTHON_U __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":973 + /* "schema.pyx":979 * property textType: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -19277,7 +19350,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_8textType_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":974 +/* "schema.pyx":980 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -19306,7 +19379,7 @@ static PyObject *__pyx_pw_6schema_17_Type_BodyBuilder_9int16Type_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":977 +/* "schema.pyx":983 * pass * property int16Type: * def __get__(self): # <<<<<<<<<<<<<< @@ -19319,7 +19392,7 @@ static PyObject *__pyx_pf_6schema_17_Type_BodyBuilder_9int16Type___get__(CYTHON_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":978 + /* "schema.pyx":984 * property int16Type: * def __get__(self): * return None # <<<<<<<<<<<<<< @@ -19349,7 +19422,7 @@ static int __pyx_pw_6schema_17_Type_BodyBuilder_9int16Type_3__set__(PyObject *__ return __pyx_r; } -/* "schema.pyx":979 +/* "schema.pyx":985 * def __get__(self): * return None * def __set__(self, val): # <<<<<<<<<<<<<< @@ -19367,7 +19440,7 @@ static int __pyx_pf_6schema_17_Type_BodyBuilder_9int16Type_2__set__(CYTHON_UNUSE return __pyx_r; } -/* "schema.pyx":983 +/* "schema.pyx":989 * cdef class _TypeReader: * cdef C_Type.Reader thisptr * cdef init(self, C_Type.Reader other): # <<<<<<<<<<<<<< @@ -19380,7 +19453,7 @@ static PyObject *__pyx_f_6schema_11_TypeReader_init(struct __pyx_obj_6schema__Ty __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":984 + /* "schema.pyx":990 * cdef C_Type.Reader thisptr * cdef init(self, C_Type.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -19389,7 +19462,7 @@ static PyObject *__pyx_f_6schema_11_TypeReader_init(struct __pyx_obj_6schema__Ty */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":985 + /* "schema.pyx":991 * cdef init(self, C_Type.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -19419,7 +19492,7 @@ static PyObject *__pyx_pw_6schema_11_TypeReader_4body_1__get__(PyObject *__pyx_v return __pyx_r; } -/* "schema.pyx":988 +/* "schema.pyx":994 * * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -19437,7 +19510,7 @@ static PyObject *__pyx_pf_6schema_11_TypeReader_4body___get__(struct __pyx_obj_6 int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":989 + /* "schema.pyx":995 * property body: * def __get__(self): * return _Type_BodyReader().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -19445,9 +19518,9 @@ static PyObject *__pyx_pf_6schema_11_TypeReader_4body___get__(struct __pyx_obj_6 * cdef class _TypeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 989; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 995; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Type_BodyReader *)((struct __pyx_obj_6schema__Type_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Type_BodyReader *)__pyx_t_1), ((::capnp::schema::Type::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 989; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Type_BodyReader *)((struct __pyx_obj_6schema__Type_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Type_BodyReader *)__pyx_t_1), ((::capnp::schema::Type::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 995; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -19467,7 +19540,7 @@ static PyObject *__pyx_pf_6schema_11_TypeReader_4body___get__(struct __pyx_obj_6 return __pyx_r; } -/* "schema.pyx":993 +/* "schema.pyx":999 * cdef class _TypeBuilder: * cdef C_Type.Builder thisptr * cdef init(self, C_Type.Builder other): # <<<<<<<<<<<<<< @@ -19480,7 +19553,7 @@ static PyObject *__pyx_f_6schema_12_TypeBuilder_init(struct __pyx_obj_6schema__T __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":994 + /* "schema.pyx":1000 * cdef C_Type.Builder thisptr * cdef init(self, C_Type.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -19489,7 +19562,7 @@ static PyObject *__pyx_f_6schema_12_TypeBuilder_init(struct __pyx_obj_6schema__T */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":995 + /* "schema.pyx":1001 * cdef init(self, C_Type.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -19519,7 +19592,7 @@ static PyObject *__pyx_pw_6schema_12_TypeBuilder_4body_1__get__(PyObject *__pyx_ return __pyx_r; } -/* "schema.pyx":998 +/* "schema.pyx":1004 * * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -19537,7 +19610,7 @@ static PyObject *__pyx_pf_6schema_12_TypeBuilder_4body___get__(struct __pyx_obj_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":999 + /* "schema.pyx":1005 * property body: * def __get__(self): * return _Type_BodyBuilder().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -19545,9 +19618,9 @@ static PyObject *__pyx_pf_6schema_12_TypeBuilder_4body___get__(struct __pyx_obj_ * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 999; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1005; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Type_BodyBuilder *)((struct __pyx_obj_6schema__Type_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Type_BodyBuilder *)__pyx_t_1), ((::capnp::schema::Type::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 999; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Type_BodyBuilder *)((struct __pyx_obj_6schema__Type_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Type_BodyBuilder *)__pyx_t_1), ((::capnp::schema::Type::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1005; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -19578,7 +19651,7 @@ static int __pyx_pw_6schema_12_TypeBuilder_4body_3__set__(PyObject *__pyx_v_self return __pyx_r; } -/* "schema.pyx":1000 +/* "schema.pyx":1006 * def __get__(self): * return _Type_BodyBuilder().init(self.thisptr.getBody()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -19596,7 +19669,7 @@ static int __pyx_pf_6schema_12_TypeBuilder_4body_2__set__(CYTHON_UNUSED struct _ return __pyx_r; } -/* "schema.pyx":1006 +/* "schema.pyx":1012 * cdef class _FileNode_ImportReader: * cdef C_FileNode.Import.Reader thisptr * cdef init(self, C_FileNode.Import.Reader other): # <<<<<<<<<<<<<< @@ -19609,7 +19682,7 @@ static PyObject *__pyx_f_6schema_22_FileNode_ImportReader_init(struct __pyx_obj_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1007 + /* "schema.pyx":1013 * cdef C_FileNode.Import.Reader thisptr * cdef init(self, C_FileNode.Import.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -19618,7 +19691,7 @@ static PyObject *__pyx_f_6schema_22_FileNode_ImportReader_init(struct __pyx_obj_ */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1008 + /* "schema.pyx":1014 * cdef init(self, C_FileNode.Import.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -19648,7 +19721,7 @@ static PyObject *__pyx_pw_6schema_22_FileNode_ImportReader_2id_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1011 +/* "schema.pyx":1017 * * property id: * def __get__(self): # <<<<<<<<<<<<<< @@ -19665,7 +19738,7 @@ static PyObject *__pyx_pf_6schema_22_FileNode_ImportReader_2id___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1012 + /* "schema.pyx":1018 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -19673,7 +19746,7 @@ static PyObject *__pyx_pf_6schema_22_FileNode_ImportReader_2id___get__(struct __ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1012; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1018; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -19702,39 +19775,50 @@ static PyObject *__pyx_pw_6schema_22_FileNode_ImportReader_4name_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":1014 +/* "schema.pyx":1020 * return self.thisptr.getId() * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * */ -static PyObject *__pyx_pf_6schema_22_FileNode_ImportReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__FileNode_ImportReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_22_FileNode_ImportReader_4name___get__(struct __pyx_obj_6schema__FileNode_ImportReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1015 + /* "schema.pyx":1021 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * * cdef class _FileNode_ImportBuilder: */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1021; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._FileNode_ImportReader.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } -/* "schema.pyx":1019 +/* "schema.pyx":1025 * cdef class _FileNode_ImportBuilder: * cdef C_FileNode.Import.Builder thisptr * cdef init(self, C_FileNode.Import.Builder other): # <<<<<<<<<<<<<< @@ -19747,7 +19831,7 @@ static PyObject *__pyx_f_6schema_23_FileNode_ImportBuilder_init(struct __pyx_obj __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1020 + /* "schema.pyx":1026 * cdef C_FileNode.Import.Builder thisptr * cdef init(self, C_FileNode.Import.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -19756,7 +19840,7 @@ static PyObject *__pyx_f_6schema_23_FileNode_ImportBuilder_init(struct __pyx_obj */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1021 + /* "schema.pyx":1027 * cdef init(self, C_FileNode.Import.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -19786,7 +19870,7 @@ static PyObject *__pyx_pw_6schema_23_FileNode_ImportBuilder_2id_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":1024 +/* "schema.pyx":1030 * * property id: * def __get__(self): # <<<<<<<<<<<<<< @@ -19803,7 +19887,7 @@ static PyObject *__pyx_pf_6schema_23_FileNode_ImportBuilder_2id___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1025 + /* "schema.pyx":1031 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -19811,7 +19895,7 @@ static PyObject *__pyx_pf_6schema_23_FileNode_ImportBuilder_2id___get__(struct _ * self.thisptr.setId(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1025; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1031; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -19840,7 +19924,7 @@ static int __pyx_pw_6schema_23_FileNode_ImportBuilder_2id_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":1026 +/* "schema.pyx":1032 * def __get__(self): * return self.thisptr.getId() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -19857,14 +19941,14 @@ static int __pyx_pf_6schema_23_FileNode_ImportBuilder_2id_2__set__(struct __pyx_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1027 + /* "schema.pyx":1033 * return self.thisptr.getId() * def __set__(self, val): * self.thisptr.setId(val) # <<<<<<<<<<<<<< * property name: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1027; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1033; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setId(__pyx_t_1); __pyx_r = 0; @@ -19888,32 +19972,43 @@ static PyObject *__pyx_pw_6schema_23_FileNode_ImportBuilder_4name_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":1029 +/* "schema.pyx":1035 * self.thisptr.setId(val) * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_23_FileNode_ImportBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__FileNode_ImportBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_23_FileNode_ImportBuilder_4name___get__(struct __pyx_obj_6schema__FileNode_ImportBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1030 + /* "schema.pyx":1036 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1036; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._FileNode_ImportBuilder.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -19931,9 +20026,9 @@ static int __pyx_pw_6schema_23_FileNode_ImportBuilder_4name_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":1031 +/* "schema.pyx":1037 * def __get__(self): - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * cdef class _FileNodeReader: @@ -19949,7 +20044,7 @@ static int __pyx_pf_6schema_23_FileNode_ImportBuilder_4name_2__set__(CYTHON_UNUS return __pyx_r; } -/* "schema.pyx":1035 +/* "schema.pyx":1041 * cdef class _FileNodeReader: * cdef C_FileNode.Reader thisptr * cdef init(self, C_FileNode.Reader other): # <<<<<<<<<<<<<< @@ -19962,7 +20057,7 @@ static PyObject *__pyx_f_6schema_15_FileNodeReader_init(struct __pyx_obj_6schema __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1036 + /* "schema.pyx":1042 * cdef C_FileNode.Reader thisptr * cdef init(self, C_FileNode.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -19971,7 +20066,7 @@ static PyObject *__pyx_f_6schema_15_FileNodeReader_init(struct __pyx_obj_6schema */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1037 + /* "schema.pyx":1043 * cdef init(self, C_FileNode.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -20001,7 +20096,7 @@ static PyObject *__pyx_pw_6schema_15_FileNodeReader_7imports_1__get__(PyObject * return __pyx_r; } -/* "schema.pyx":1040 +/* "schema.pyx":1046 * * property imports: * def __get__(self): # <<<<<<<<<<<<<< @@ -20019,7 +20114,7 @@ static PyObject *__pyx_pf_6schema_15_FileNodeReader_7imports___get__(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1041 + /* "schema.pyx":1047 * property imports: * def __get__(self): * return _List_FileNode_FileNode_Import_Reader().init(self.thisptr.getImports()) # <<<<<<<<<<<<<< @@ -20027,9 +20122,9 @@ static PyObject *__pyx_pf_6schema_15_FileNodeReader_7imports___get__(struct __py * cdef class _FileNodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_FileNode_FileNode_Import_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1041; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_FileNode_FileNode_Import_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1047; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Reader *)((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getImports()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1041; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Reader *)((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getImports()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1047; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20049,7 +20144,7 @@ static PyObject *__pyx_pf_6schema_15_FileNodeReader_7imports___get__(struct __py return __pyx_r; } -/* "schema.pyx":1045 +/* "schema.pyx":1051 * cdef class _FileNodeBuilder: * cdef C_FileNode.Builder thisptr * cdef init(self, C_FileNode.Builder other): # <<<<<<<<<<<<<< @@ -20062,7 +20157,7 @@ static PyObject *__pyx_f_6schema_16_FileNodeBuilder_init(struct __pyx_obj_6schem __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1046 + /* "schema.pyx":1052 * cdef C_FileNode.Builder thisptr * cdef init(self, C_FileNode.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -20071,7 +20166,7 @@ static PyObject *__pyx_f_6schema_16_FileNodeBuilder_init(struct __pyx_obj_6schem */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1047 + /* "schema.pyx":1053 * cdef init(self, C_FileNode.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -20101,7 +20196,7 @@ static PyObject *__pyx_pw_6schema_16_FileNodeBuilder_7imports_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1050 +/* "schema.pyx":1056 * * property imports: * def __get__(self): # <<<<<<<<<<<<<< @@ -20119,7 +20214,7 @@ static PyObject *__pyx_pf_6schema_16_FileNodeBuilder_7imports___get__(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1051 + /* "schema.pyx":1057 * property imports: * def __get__(self): * return _List_FileNode_FileNode_Import_Builder().init(self.thisptr.getImports()) # <<<<<<<<<<<<<< @@ -20127,9 +20222,9 @@ static PyObject *__pyx_pf_6schema_16_FileNodeBuilder_7imports___get__(struct __p * return _List_FileNode_FileNode_Import_Builder().init(self.thisptr.initImports(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_FileNode_FileNode_Import_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1051; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_FileNode_FileNode_Import_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Builder *)((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getImports()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1051; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Builder *)((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getImports()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20149,7 +20244,7 @@ static PyObject *__pyx_pf_6schema_16_FileNodeBuilder_7imports___get__(struct __p return __pyx_r; } -/* "schema.pyx":1052 +/* "schema.pyx":1058 * def __get__(self): * return _List_FileNode_FileNode_Import_Builder().init(self.thisptr.getImports()) * cpdef initImports(self, uint num): # <<<<<<<<<<<<<< @@ -20172,18 +20267,18 @@ static PyObject *__pyx_f_6schema_16_FileNodeBuilder_initImports(struct __pyx_obj if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initImports); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initImports); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1058; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_16_FileNodeBuilder_1initImports)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1058; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1058; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1058; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -20194,7 +20289,7 @@ static PyObject *__pyx_f_6schema_16_FileNodeBuilder_initImports(struct __pyx_obj __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1053 + /* "schema.pyx":1059 * return _List_FileNode_FileNode_Import_Builder().init(self.thisptr.getImports()) * cpdef initImports(self, uint num): * return _List_FileNode_FileNode_Import_Builder().init(self.thisptr.initImports(num)) # <<<<<<<<<<<<<< @@ -20202,9 +20297,9 @@ static PyObject *__pyx_f_6schema_16_FileNodeBuilder_initImports(struct __pyx_obj * */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_FileNode_FileNode_Import_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1053; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_FileNode_FileNode_Import_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1059; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Builder *)((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initImports(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1053; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_FileNode_FileNode_Import_Builder *)((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initImports(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1059; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20236,7 +20331,7 @@ static PyObject *__pyx_pw_6schema_16_FileNodeBuilder_1initImports(PyObject *__py __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initImports (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1058; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -20249,7 +20344,7 @@ static PyObject *__pyx_pw_6schema_16_FileNodeBuilder_1initImports(PyObject *__py return __pyx_r; } -/* "schema.pyx":1052 +/* "schema.pyx":1058 * def __get__(self): * return _List_FileNode_FileNode_Import_Builder().init(self.thisptr.getImports()) * cpdef initImports(self, uint num): # <<<<<<<<<<<<<< @@ -20266,7 +20361,7 @@ static PyObject *__pyx_pf_6schema_16_FileNodeBuilder_initImports(struct __pyx_ob int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initImports", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)__pyx_v_self->__pyx_vtab)->initImports(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)__pyx_v_self->__pyx_vtab)->initImports(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1058; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -20284,7 +20379,7 @@ static PyObject *__pyx_pf_6schema_16_FileNodeBuilder_initImports(struct __pyx_ob return __pyx_r; } -/* "schema.pyx":1059 +/* "schema.pyx":1065 * cdef class _Node_BodyReader: * cdef C_Node.Body.Reader thisptr * cdef init(self, C_Node.Body.Reader other): # <<<<<<<<<<<<<< @@ -20297,7 +20392,7 @@ static PyObject *__pyx_f_6schema_16_Node_BodyReader_init(struct __pyx_obj_6schem __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1060 + /* "schema.pyx":1066 * cdef C_Node.Body.Reader thisptr * cdef init(self, C_Node.Body.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -20306,7 +20401,7 @@ static PyObject *__pyx_f_6schema_16_Node_BodyReader_init(struct __pyx_obj_6schem */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1061 + /* "schema.pyx":1067 * cdef init(self, C_Node.Body.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -20325,7 +20420,7 @@ static PyObject *__pyx_f_6schema_16_Node_BodyReader_init(struct __pyx_obj_6schem return __pyx_r; } -/* "schema.pyx":1063 +/* "schema.pyx":1069 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -20348,12 +20443,12 @@ static int __pyx_f_6schema_16_Node_BodyReader_which(struct __pyx_obj_6schema__No if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1063; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1069; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_16_Node_BodyReader_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1063; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1069; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1063; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1069; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -20362,7 +20457,7 @@ static int __pyx_f_6schema_16_Node_BodyReader_which(struct __pyx_obj_6schema__No __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1064 + /* "schema.pyx":1070 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -20395,7 +20490,7 @@ static PyObject *__pyx_pw_6schema_16_Node_BodyReader_1which(PyObject *__pyx_v_se return __pyx_r; } -/* "schema.pyx":1063 +/* "schema.pyx":1069 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -20412,7 +20507,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_which(struct __pyx_obj_6sch int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Node_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1063; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Node_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1069; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -20441,7 +20536,7 @@ static PyObject *__pyx_pw_6schema_16_Node_BodyReader_14annotationNode_1__get__(P return __pyx_r; } -/* "schema.pyx":1066 +/* "schema.pyx":1072 * return self.thisptr.which() * property annotationNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -20459,7 +20554,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_14annotationNode___get__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1067 + /* "schema.pyx":1073 * property annotationNode: * def __get__(self): * return _AnnotationNodeReader().init(self.thisptr.getAnnotationNode()) # <<<<<<<<<<<<<< @@ -20467,9 +20562,9 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_14annotationNode___get__(st * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1067; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeReader *)((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1), ((::capnp::schema::AnnotationNode::Reader)__pyx_v_self->thisptr.getAnnotationNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1067; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeReader *)((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1), ((::capnp::schema::AnnotationNode::Reader)__pyx_v_self->thisptr.getAnnotationNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20500,7 +20595,7 @@ static PyObject *__pyx_pw_6schema_16_Node_BodyReader_13interfaceNode_1__get__(Py return __pyx_r; } -/* "schema.pyx":1069 +/* "schema.pyx":1075 * return _AnnotationNodeReader().init(self.thisptr.getAnnotationNode()) * property interfaceNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -20518,7 +20613,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_13interfaceNode___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1070 + /* "schema.pyx":1076 * property interfaceNode: * def __get__(self): * return _InterfaceNodeReader().init(self.thisptr.getInterfaceNode()) # <<<<<<<<<<<<<< @@ -20526,9 +20621,9 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_13interfaceNode___get__(str * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1070; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1076; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeReader *)((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Reader)__pyx_v_self->thisptr.getInterfaceNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1070; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeReader *)((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Reader)__pyx_v_self->thisptr.getInterfaceNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1076; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20559,7 +20654,7 @@ static PyObject *__pyx_pw_6schema_16_Node_BodyReader_8enumNode_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1072 +/* "schema.pyx":1078 * return _InterfaceNodeReader().init(self.thisptr.getInterfaceNode()) * property enumNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -20577,7 +20672,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_8enumNode___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1073 + /* "schema.pyx":1079 * property enumNode: * def __get__(self): * return _EnumNodeReader().init(self.thisptr.getEnumNode()) # <<<<<<<<<<<<<< @@ -20585,9 +20680,9 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_8enumNode___get__(struct __ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1079; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeReader *)((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1), ((::capnp::schema::EnumNode::Reader)__pyx_v_self->thisptr.getEnumNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeReader *)((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1), ((::capnp::schema::EnumNode::Reader)__pyx_v_self->thisptr.getEnumNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1079; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20618,7 +20713,7 @@ static PyObject *__pyx_pw_6schema_16_Node_BodyReader_10structNode_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":1075 +/* "schema.pyx":1081 * return _EnumNodeReader().init(self.thisptr.getEnumNode()) * property structNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -20636,7 +20731,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_10structNode___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1076 + /* "schema.pyx":1082 * property structNode: * def __get__(self): * return _StructNodeReader().init(self.thisptr.getStructNode()) # <<<<<<<<<<<<<< @@ -20644,9 +20739,9 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_10structNode___get__(struct * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1076; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeReader *)((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1), ((::capnp::schema::StructNode::Reader)__pyx_v_self->thisptr.getStructNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1076; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeReader *)((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1), ((::capnp::schema::StructNode::Reader)__pyx_v_self->thisptr.getStructNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20677,7 +20772,7 @@ static PyObject *__pyx_pw_6schema_16_Node_BodyReader_9constNode_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":1078 +/* "schema.pyx":1084 * return _StructNodeReader().init(self.thisptr.getStructNode()) * property constNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -20695,7 +20790,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_9constNode___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1079 + /* "schema.pyx":1085 * property constNode: * def __get__(self): * return _ConstNodeReader().init(self.thisptr.getConstNode()) # <<<<<<<<<<<<<< @@ -20703,9 +20798,9 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_9constNode___get__(struct _ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1079; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1085; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeReader *)((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1), ((::capnp::schema::ConstNode::Reader)__pyx_v_self->thisptr.getConstNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1079; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeReader *)((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1), ((::capnp::schema::ConstNode::Reader)__pyx_v_self->thisptr.getConstNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1085; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20736,7 +20831,7 @@ static PyObject *__pyx_pw_6schema_16_Node_BodyReader_8fileNode_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1081 +/* "schema.pyx":1087 * return _ConstNodeReader().init(self.thisptr.getConstNode()) * property fileNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -20754,7 +20849,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_8fileNode___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1082 + /* "schema.pyx":1088 * property fileNode: * def __get__(self): * return _FileNodeReader().init(self.thisptr.getFileNode()) # <<<<<<<<<<<<<< @@ -20762,9 +20857,9 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_8fileNode___get__(struct __ * cdef class _Node_BodyBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1088; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeReader *)((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1), ((::capnp::schema::FileNode::Reader)__pyx_v_self->thisptr.getFileNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeReader *)((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1), ((::capnp::schema::FileNode::Reader)__pyx_v_self->thisptr.getFileNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1088; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -20784,7 +20879,7 @@ static PyObject *__pyx_pf_6schema_16_Node_BodyReader_8fileNode___get__(struct __ return __pyx_r; } -/* "schema.pyx":1086 +/* "schema.pyx":1092 * cdef class _Node_BodyBuilder: * cdef C_Node.Body.Builder thisptr * cdef init(self, C_Node.Body.Builder other): # <<<<<<<<<<<<<< @@ -20797,7 +20892,7 @@ static PyObject *__pyx_f_6schema_17_Node_BodyBuilder_init(struct __pyx_obj_6sche __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1087 + /* "schema.pyx":1093 * cdef C_Node.Body.Builder thisptr * cdef init(self, C_Node.Body.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -20806,7 +20901,7 @@ static PyObject *__pyx_f_6schema_17_Node_BodyBuilder_init(struct __pyx_obj_6sche */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1088 + /* "schema.pyx":1094 * cdef init(self, C_Node.Body.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -20825,7 +20920,7 @@ static PyObject *__pyx_f_6schema_17_Node_BodyBuilder_init(struct __pyx_obj_6sche return __pyx_r; } -/* "schema.pyx":1090 +/* "schema.pyx":1096 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -20848,12 +20943,12 @@ static int __pyx_f_6schema_17_Node_BodyBuilder_which(struct __pyx_obj_6schema__N if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1090; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1096; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_17_Node_BodyBuilder_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1090; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1096; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1090; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1096; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -20862,7 +20957,7 @@ static int __pyx_f_6schema_17_Node_BodyBuilder_which(struct __pyx_obj_6schema__N __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1091 + /* "schema.pyx":1097 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -20895,7 +20990,7 @@ static PyObject *__pyx_pw_6schema_17_Node_BodyBuilder_1which(PyObject *__pyx_v_s return __pyx_r; } -/* "schema.pyx":1090 +/* "schema.pyx":1096 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -20912,7 +21007,7 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_which(struct __pyx_obj_6sc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Node_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1090; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__Node_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1096; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -20941,7 +21036,7 @@ static PyObject *__pyx_pw_6schema_17_Node_BodyBuilder_14annotationNode_1__get__( return __pyx_r; } -/* "schema.pyx":1093 +/* "schema.pyx":1099 * return self.thisptr.which() * property annotationNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -20959,7 +21054,7 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_14annotationNode___get__(s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1094 + /* "schema.pyx":1100 * property annotationNode: * def __get__(self): * return _AnnotationNodeBuilder().init(self.thisptr.getAnnotationNode()) # <<<<<<<<<<<<<< @@ -20967,9 +21062,9 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_14annotationNode___get__(s * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1094; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder *)((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1), ((::capnp::schema::AnnotationNode::Builder)__pyx_v_self->thisptr.getAnnotationNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1094; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder *)((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1), ((::capnp::schema::AnnotationNode::Builder)__pyx_v_self->thisptr.getAnnotationNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -21000,7 +21095,7 @@ static int __pyx_pw_6schema_17_Node_BodyBuilder_14annotationNode_3__set__(PyObje return __pyx_r; } -/* "schema.pyx":1095 +/* "schema.pyx":1101 * def __get__(self): * return _AnnotationNodeBuilder().init(self.thisptr.getAnnotationNode()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -21029,7 +21124,7 @@ static PyObject *__pyx_pw_6schema_17_Node_BodyBuilder_13interfaceNode_1__get__(P return __pyx_r; } -/* "schema.pyx":1098 +/* "schema.pyx":1104 * pass * property interfaceNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -21047,7 +21142,7 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_13interfaceNode___get__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1099 + /* "schema.pyx":1105 * property interfaceNode: * def __get__(self): * return _InterfaceNodeBuilder().init(self.thisptr.getInterfaceNode()) # <<<<<<<<<<<<<< @@ -21055,9 +21150,9 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_13interfaceNode___get__(st * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1099; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1105; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Builder)__pyx_v_self->thisptr.getInterfaceNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1099; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1), ((::capnp::schema::InterfaceNode::Builder)__pyx_v_self->thisptr.getInterfaceNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1105; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -21088,7 +21183,7 @@ static int __pyx_pw_6schema_17_Node_BodyBuilder_13interfaceNode_3__set__(PyObjec return __pyx_r; } -/* "schema.pyx":1100 +/* "schema.pyx":1106 * def __get__(self): * return _InterfaceNodeBuilder().init(self.thisptr.getInterfaceNode()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -21117,7 +21212,7 @@ static PyObject *__pyx_pw_6schema_17_Node_BodyBuilder_8enumNode_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":1103 +/* "schema.pyx":1109 * pass * property enumNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -21135,7 +21230,7 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_8enumNode___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1104 + /* "schema.pyx":1110 * property enumNode: * def __get__(self): * return _EnumNodeBuilder().init(self.thisptr.getEnumNode()) # <<<<<<<<<<<<<< @@ -21143,9 +21238,9 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_8enumNode___get__(struct _ * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1110; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1), ((::capnp::schema::EnumNode::Builder)__pyx_v_self->thisptr.getEnumNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1), ((::capnp::schema::EnumNode::Builder)__pyx_v_self->thisptr.getEnumNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1110; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -21176,7 +21271,7 @@ static int __pyx_pw_6schema_17_Node_BodyBuilder_8enumNode_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":1105 +/* "schema.pyx":1111 * def __get__(self): * return _EnumNodeBuilder().init(self.thisptr.getEnumNode()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -21205,7 +21300,7 @@ static PyObject *__pyx_pw_6schema_17_Node_BodyBuilder_10structNode_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":1108 +/* "schema.pyx":1114 * pass * property structNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -21223,7 +21318,7 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_10structNode___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1109 + /* "schema.pyx":1115 * property structNode: * def __get__(self): * return _StructNodeBuilder().init(self.thisptr.getStructNode()) # <<<<<<<<<<<<<< @@ -21231,9 +21326,9 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_10structNode___get__(struc * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1109; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1115; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Builder)__pyx_v_self->thisptr.getStructNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1109; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Builder)__pyx_v_self->thisptr.getStructNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1115; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -21264,7 +21359,7 @@ static int __pyx_pw_6schema_17_Node_BodyBuilder_10structNode_3__set__(PyObject * return __pyx_r; } -/* "schema.pyx":1110 +/* "schema.pyx":1116 * def __get__(self): * return _StructNodeBuilder().init(self.thisptr.getStructNode()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -21293,7 +21388,7 @@ static PyObject *__pyx_pw_6schema_17_Node_BodyBuilder_9constNode_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":1113 +/* "schema.pyx":1119 * pass * property constNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -21311,7 +21406,7 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_9constNode___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1114 + /* "schema.pyx":1120 * property constNode: * def __get__(self): * return _ConstNodeBuilder().init(self.thisptr.getConstNode()) # <<<<<<<<<<<<<< @@ -21319,9 +21414,9 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_9constNode___get__(struct * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1120; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeBuilder *)((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1), ((::capnp::schema::ConstNode::Builder)__pyx_v_self->thisptr.getConstNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeBuilder *)((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1), ((::capnp::schema::ConstNode::Builder)__pyx_v_self->thisptr.getConstNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1120; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -21352,7 +21447,7 @@ static int __pyx_pw_6schema_17_Node_BodyBuilder_9constNode_3__set__(PyObject *__ return __pyx_r; } -/* "schema.pyx":1115 +/* "schema.pyx":1121 * def __get__(self): * return _ConstNodeBuilder().init(self.thisptr.getConstNode()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -21381,7 +21476,7 @@ static PyObject *__pyx_pw_6schema_17_Node_BodyBuilder_8fileNode_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":1118 +/* "schema.pyx":1124 * pass * property fileNode: * def __get__(self): # <<<<<<<<<<<<<< @@ -21399,7 +21494,7 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_8fileNode___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1119 + /* "schema.pyx":1125 * property fileNode: * def __get__(self): * return _FileNodeBuilder().init(self.thisptr.getFileNode()) # <<<<<<<<<<<<<< @@ -21407,9 +21502,9 @@ static PyObject *__pyx_pf_6schema_17_Node_BodyBuilder_8fileNode___get__(struct _ * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1119; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1125; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1), ((::capnp::schema::FileNode::Builder)__pyx_v_self->thisptr.getFileNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1119; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1), ((::capnp::schema::FileNode::Builder)__pyx_v_self->thisptr.getFileNode())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1125; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -21440,7 +21535,7 @@ static int __pyx_pw_6schema_17_Node_BodyBuilder_8fileNode_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":1120 +/* "schema.pyx":1126 * def __get__(self): * return _FileNodeBuilder().init(self.thisptr.getFileNode()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -21458,7 +21553,7 @@ static int __pyx_pf_6schema_17_Node_BodyBuilder_8fileNode_2__set__(CYTHON_UNUSED return __pyx_r; } -/* "schema.pyx":1125 +/* "schema.pyx":1131 * cdef class _Node_NestedNodeReader: * cdef C_Node.NestedNode.Reader thisptr * cdef init(self, C_Node.NestedNode.Reader other): # <<<<<<<<<<<<<< @@ -21471,7 +21566,7 @@ static PyObject *__pyx_f_6schema_22_Node_NestedNodeReader_init(struct __pyx_obj_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1126 + /* "schema.pyx":1132 * cdef C_Node.NestedNode.Reader thisptr * cdef init(self, C_Node.NestedNode.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -21480,7 +21575,7 @@ static PyObject *__pyx_f_6schema_22_Node_NestedNodeReader_init(struct __pyx_obj_ */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1127 + /* "schema.pyx":1133 * cdef init(self, C_Node.NestedNode.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -21510,32 +21605,43 @@ static PyObject *__pyx_pw_6schema_22_Node_NestedNodeReader_4name_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":1130 +/* "schema.pyx":1136 * * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * property id: */ -static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Node_NestedNodeReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_4name___get__(struct __pyx_obj_6schema__Node_NestedNodeReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1131 + /* "schema.pyx":1137 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * property id: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1137; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._Node_NestedNodeReader.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -21553,8 +21659,8 @@ static PyObject *__pyx_pw_6schema_22_Node_NestedNodeReader_2id_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1133 - * return None +/* "schema.pyx":1139 + * return self.thisptr.getName().cStr() * property id: * def __get__(self): # <<<<<<<<<<<<<< * return self.thisptr.getId() @@ -21570,7 +21676,7 @@ static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_2id___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1134 + /* "schema.pyx":1140 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -21578,7 +21684,7 @@ static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_2id___get__(struct __ * cdef class _Node_NestedNodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1134; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1140; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -21596,7 +21702,7 @@ static PyObject *__pyx_pf_6schema_22_Node_NestedNodeReader_2id___get__(struct __ return __pyx_r; } -/* "schema.pyx":1138 +/* "schema.pyx":1144 * cdef class _Node_NestedNodeBuilder: * cdef C_Node.NestedNode.Builder thisptr * cdef init(self, C_Node.NestedNode.Builder other): # <<<<<<<<<<<<<< @@ -21609,7 +21715,7 @@ static PyObject *__pyx_f_6schema_23_Node_NestedNodeBuilder_init(struct __pyx_obj __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1139 + /* "schema.pyx":1145 * cdef C_Node.NestedNode.Builder thisptr * cdef init(self, C_Node.NestedNode.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -21618,7 +21724,7 @@ static PyObject *__pyx_f_6schema_23_Node_NestedNodeBuilder_init(struct __pyx_obj */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1140 + /* "schema.pyx":1146 * cdef init(self, C_Node.NestedNode.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -21648,32 +21754,43 @@ static PyObject *__pyx_pw_6schema_23_Node_NestedNodeBuilder_4name_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":1143 +/* "schema.pyx":1149 * * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_23_Node_NestedNodeBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__Node_NestedNodeBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_23_Node_NestedNodeBuilder_4name___get__(struct __pyx_obj_6schema__Node_NestedNodeBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1144 + /* "schema.pyx":1150 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1150; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._Node_NestedNodeBuilder.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -21691,9 +21808,9 @@ static int __pyx_pw_6schema_23_Node_NestedNodeBuilder_4name_3__set__(PyObject *_ return __pyx_r; } -/* "schema.pyx":1145 +/* "schema.pyx":1151 * def __get__(self): - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property id: @@ -21720,7 +21837,7 @@ static PyObject *__pyx_pw_6schema_23_Node_NestedNodeBuilder_2id_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":1148 +/* "schema.pyx":1154 * pass * property id: * def __get__(self): # <<<<<<<<<<<<<< @@ -21737,7 +21854,7 @@ static PyObject *__pyx_pf_6schema_23_Node_NestedNodeBuilder_2id___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1149 + /* "schema.pyx":1155 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -21745,7 +21862,7 @@ static PyObject *__pyx_pf_6schema_23_Node_NestedNodeBuilder_2id___get__(struct _ * self.thisptr.setId(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1149; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1155; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -21774,7 +21891,7 @@ static int __pyx_pw_6schema_23_Node_NestedNodeBuilder_2id_3__set__(PyObject *__p return __pyx_r; } -/* "schema.pyx":1150 +/* "schema.pyx":1156 * def __get__(self): * return self.thisptr.getId() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -21791,14 +21908,14 @@ static int __pyx_pf_6schema_23_Node_NestedNodeBuilder_2id_2__set__(struct __pyx_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1151 + /* "schema.pyx":1157 * return self.thisptr.getId() * def __set__(self, val): * self.thisptr.setId(val) # <<<<<<<<<<<<<< * cdef class _NodeReader: * cdef C_Node.Reader thisptr */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1151; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1157; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setId(__pyx_t_1); __pyx_r = 0; @@ -21811,7 +21928,7 @@ static int __pyx_pf_6schema_23_Node_NestedNodeBuilder_2id_2__set__(struct __pyx_ return __pyx_r; } -/* "schema.pyx":1154 +/* "schema.pyx":1160 * cdef class _NodeReader: * cdef C_Node.Reader thisptr * cdef init(self, C_Node.Reader other): # <<<<<<<<<<<<<< @@ -21824,7 +21941,7 @@ static PyObject *__pyx_f_6schema_11_NodeReader_init(struct __pyx_obj_6schema__No __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1155 + /* "schema.pyx":1161 * cdef C_Node.Reader thisptr * cdef init(self, C_Node.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -21833,7 +21950,7 @@ static PyObject *__pyx_f_6schema_11_NodeReader_init(struct __pyx_obj_6schema__No */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1156 + /* "schema.pyx":1162 * cdef init(self, C_Node.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -21863,7 +21980,7 @@ static PyObject *__pyx_pw_6schema_11_NodeReader_4body_1__get__(PyObject *__pyx_v return __pyx_r; } -/* "schema.pyx":1159 +/* "schema.pyx":1165 * * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -21881,7 +21998,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_4body___get__(struct __pyx_obj_6 int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1160 + /* "schema.pyx":1166 * property body: * def __get__(self): * return _Node_BodyReader().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -21889,9 +22006,9 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_4body___get__(struct __pyx_obj_6 * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1160; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Node_BodyReader *)((struct __pyx_obj_6schema__Node_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_BodyReader *)__pyx_t_1), ((::capnp::schema::Node::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1160; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Node_BodyReader *)((struct __pyx_obj_6schema__Node_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_BodyReader *)__pyx_t_1), ((::capnp::schema::Node::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -21922,32 +22039,43 @@ static PyObject *__pyx_pw_6schema_11_NodeReader_11displayName_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1162 +/* "schema.pyx":1168 * return _Node_BodyReader().init(self.thisptr.getBody()) * property displayName: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getDisplayName().cStr() * property annotations: */ -static PyObject *__pyx_pf_6schema_11_NodeReader_11displayName___get__(CYTHON_UNUSED struct __pyx_obj_6schema__NodeReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_11_NodeReader_11displayName___get__(struct __pyx_obj_6schema__NodeReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1163 + /* "schema.pyx":1169 * property displayName: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getDisplayName().cStr() # <<<<<<<<<<<<<< * property annotations: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getDisplayName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1169; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._NodeReader.displayName.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -21965,8 +22093,8 @@ static PyObject *__pyx_pw_6schema_11_NodeReader_11annotations_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1165 - * return None +/* "schema.pyx":1171 + * return self.thisptr.getDisplayName().cStr() * property annotations: * def __get__(self): # <<<<<<<<<<<<<< * return _List_Node_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -21983,7 +22111,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_11annotations___get__(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1166 + /* "schema.pyx":1172 * property annotations: * def __get__(self): * return _List_Node_Annotation_Reader().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -21991,9 +22119,9 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_11annotations___get__(struct __p * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1172; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Annotation_Reader *)((struct __pyx_obj_6schema__List_Node_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Annotation_Reader *)((struct __pyx_obj_6schema__List_Node_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1172; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -22024,7 +22152,7 @@ static PyObject *__pyx_pw_6schema_11_NodeReader_7scopeId_1__get__(PyObject *__py return __pyx_r; } -/* "schema.pyx":1168 +/* "schema.pyx":1174 * return _List_Node_Annotation_Reader().init(self.thisptr.getAnnotations()) * property scopeId: * def __get__(self): # <<<<<<<<<<<<<< @@ -22041,7 +22169,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_7scopeId___get__(struct __pyx_ob int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1169 + /* "schema.pyx":1175 * property scopeId: * def __get__(self): * return self.thisptr.getScopeId() # <<<<<<<<<<<<<< @@ -22049,7 +22177,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_7scopeId___get__(struct __pyx_ob * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getScopeId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1169; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getScopeId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1175; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -22078,7 +22206,7 @@ static PyObject *__pyx_pw_6schema_11_NodeReader_11nestedNodes_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1171 +/* "schema.pyx":1177 * return self.thisptr.getScopeId() * property nestedNodes: * def __get__(self): # <<<<<<<<<<<<<< @@ -22096,7 +22224,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_11nestedNodes___get__(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1172 + /* "schema.pyx":1178 * property nestedNodes: * def __get__(self): * return _List_Node_Node_NestedNode_Reader().init(self.thisptr.getNestedNodes()) # <<<<<<<<<<<<<< @@ -22104,9 +22232,9 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_11nestedNodes___get__(struct __p * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Node_NestedNode_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1172; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Node_NestedNode_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1178; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Reader *)((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getNestedNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1172; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Reader *)((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getNestedNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1178; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -22137,7 +22265,7 @@ static PyObject *__pyx_pw_6schema_11_NodeReader_2id_1__get__(PyObject *__pyx_v_s return __pyx_r; } -/* "schema.pyx":1174 +/* "schema.pyx":1180 * return _List_Node_Node_NestedNode_Reader().init(self.thisptr.getNestedNodes()) * property id: * def __get__(self): # <<<<<<<<<<<<<< @@ -22154,7 +22282,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_2id___get__(struct __pyx_obj_6sc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1175 + /* "schema.pyx":1181 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -22162,7 +22290,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_2id___get__(struct __pyx_obj_6sc * cdef class _NodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1175; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -22180,7 +22308,7 @@ static PyObject *__pyx_pf_6schema_11_NodeReader_2id___get__(struct __pyx_obj_6sc return __pyx_r; } -/* "schema.pyx":1179 +/* "schema.pyx":1185 * cdef class _NodeBuilder: * cdef C_Node.Builder thisptr * cdef init(self, C_Node.Builder other): # <<<<<<<<<<<<<< @@ -22193,7 +22321,7 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_init(struct __pyx_obj_6schema__N __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1180 + /* "schema.pyx":1186 * cdef C_Node.Builder thisptr * cdef init(self, C_Node.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -22202,7 +22330,7 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_init(struct __pyx_obj_6schema__N */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1181 + /* "schema.pyx":1187 * cdef init(self, C_Node.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -22232,7 +22360,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_4body_1__get__(PyObject *__pyx_ return __pyx_r; } -/* "schema.pyx":1184 +/* "schema.pyx":1190 * * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -22250,7 +22378,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_4body___get__(struct __pyx_obj_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1185 + /* "schema.pyx":1191 * property body: * def __get__(self): * return _Node_BodyBuilder().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -22258,9 +22386,9 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_4body___get__(struct __pyx_obj_ * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1191; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Node_BodyBuilder *)((struct __pyx_obj_6schema__Node_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_BodyBuilder *)__pyx_t_1), ((::capnp::schema::Node::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__Node_BodyBuilder *)((struct __pyx_obj_6schema__Node_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__Node_BodyBuilder *)__pyx_t_1), ((::capnp::schema::Node::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1191; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -22291,7 +22419,7 @@ static int __pyx_pw_6schema_12_NodeBuilder_4body_3__set__(PyObject *__pyx_v_self return __pyx_r; } -/* "schema.pyx":1186 +/* "schema.pyx":1192 * def __get__(self): * return _Node_BodyBuilder().init(self.thisptr.getBody()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -22320,32 +22448,43 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_11displayName_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1189 +/* "schema.pyx":1195 * pass * property displayName: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getDisplayName().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_12_NodeBuilder_11displayName___get__(CYTHON_UNUSED struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_12_NodeBuilder_11displayName___get__(struct __pyx_obj_6schema__NodeBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1190 + /* "schema.pyx":1196 * property displayName: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getDisplayName().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getDisplayName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1196; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._NodeBuilder.displayName.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -22363,9 +22502,9 @@ static int __pyx_pw_6schema_12_NodeBuilder_11displayName_3__set__(PyObject *__py return __pyx_r; } -/* "schema.pyx":1191 +/* "schema.pyx":1197 * def __get__(self): - * return None + * return self.thisptr.getDisplayName().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property annotations: @@ -22392,7 +22531,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_11annotations_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1194 +/* "schema.pyx":1200 * pass * property annotations: * def __get__(self): # <<<<<<<<<<<<<< @@ -22410,7 +22549,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_11annotations___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1195 + /* "schema.pyx":1201 * property annotations: * def __get__(self): * return _List_Node_Annotation_Builder().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -22418,9 +22557,9 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_11annotations___get__(struct __ * return _List_Node_Annotation_Builder().init(self.thisptr.initAnnotations(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1201; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Annotation_Builder *)((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Annotation_Builder *)((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1201; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -22440,7 +22579,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_11annotations___get__(struct __ return __pyx_r; } -/* "schema.pyx":1196 +/* "schema.pyx":1202 * def __get__(self): * return _List_Node_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -22463,18 +22602,18 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_initAnnotations(struct __pyx_obj if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1196; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_12_NodeBuilder_1initAnnotations)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1196; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1196; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1196; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -22485,7 +22624,7 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_initAnnotations(struct __pyx_obj __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1197 + /* "schema.pyx":1203 * return _List_Node_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): * return _List_Node_Annotation_Builder().init(self.thisptr.initAnnotations(num)) # <<<<<<<<<<<<<< @@ -22493,9 +22632,9 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_initAnnotations(struct __pyx_obj * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1197; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Annotation_Builder *)((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1197; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Annotation_Builder *)((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -22527,7 +22666,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_1initAnnotations(PyObject *__py __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initAnnotations (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1196; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1202; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -22540,7 +22679,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_1initAnnotations(PyObject *__py return __pyx_r; } -/* "schema.pyx":1196 +/* "schema.pyx":1202 * def __get__(self): * return _List_Node_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -22557,7 +22696,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_initAnnotations(struct __pyx_ob int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initAnnotations", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1196; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -22586,7 +22725,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_7scopeId_1__get__(PyObject *__p return __pyx_r; } -/* "schema.pyx":1199 +/* "schema.pyx":1205 * return _List_Node_Annotation_Builder().init(self.thisptr.initAnnotations(num)) * property scopeId: * def __get__(self): # <<<<<<<<<<<<<< @@ -22603,7 +22742,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_7scopeId___get__(struct __pyx_o int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1200 + /* "schema.pyx":1206 * property scopeId: * def __get__(self): * return self.thisptr.getScopeId() # <<<<<<<<<<<<<< @@ -22611,7 +22750,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_7scopeId___get__(struct __pyx_o * self.thisptr.setScopeId(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getScopeId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1200; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getScopeId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -22640,7 +22779,7 @@ static int __pyx_pw_6schema_12_NodeBuilder_7scopeId_3__set__(PyObject *__pyx_v_s return __pyx_r; } -/* "schema.pyx":1201 +/* "schema.pyx":1207 * def __get__(self): * return self.thisptr.getScopeId() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -22657,14 +22796,14 @@ static int __pyx_pf_6schema_12_NodeBuilder_7scopeId_2__set__(struct __pyx_obj_6s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1202 + /* "schema.pyx":1208 * return self.thisptr.getScopeId() * def __set__(self, val): * self.thisptr.setScopeId(val) # <<<<<<<<<<<<<< * property nestedNodes: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1208; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setScopeId(__pyx_t_1); __pyx_r = 0; @@ -22688,7 +22827,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_11nestedNodes_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1204 +/* "schema.pyx":1210 * self.thisptr.setScopeId(val) * property nestedNodes: * def __get__(self): # <<<<<<<<<<<<<< @@ -22706,7 +22845,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_11nestedNodes___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1205 + /* "schema.pyx":1211 * property nestedNodes: * def __get__(self): * return _List_Node_Node_NestedNode_Builder().init(self.thisptr.getNestedNodes()) # <<<<<<<<<<<<<< @@ -22714,9 +22853,9 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_11nestedNodes___get__(struct __ * return _List_Node_Node_NestedNode_Builder().init(self.thisptr.initNestedNodes(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Node_NestedNode_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1205; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Node_NestedNode_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1211; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Builder *)((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getNestedNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1205; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Builder *)((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getNestedNodes()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1211; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -22736,7 +22875,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_11nestedNodes___get__(struct __ return __pyx_r; } -/* "schema.pyx":1206 +/* "schema.pyx":1212 * def __get__(self): * return _List_Node_Node_NestedNode_Builder().init(self.thisptr.getNestedNodes()) * cpdef initNestedNodes(self, uint num): # <<<<<<<<<<<<<< @@ -22759,18 +22898,18 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_initNestedNodes(struct __pyx_obj if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initNestedNodes); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initNestedNodes); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_12_NodeBuilder_3initNestedNodes)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -22781,7 +22920,7 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_initNestedNodes(struct __pyx_obj __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1207 + /* "schema.pyx":1213 * return _List_Node_Node_NestedNode_Builder().init(self.thisptr.getNestedNodes()) * cpdef initNestedNodes(self, uint num): * return _List_Node_Node_NestedNode_Builder().init(self.thisptr.initNestedNodes(num)) # <<<<<<<<<<<<<< @@ -22789,9 +22928,9 @@ static PyObject *__pyx_f_6schema_12_NodeBuilder_initNestedNodes(struct __pyx_obj * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Node_NestedNode_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1207; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_Node_Node_NestedNode_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1213; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Builder *)((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initNestedNodes(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1207; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_Node_Node_NestedNode_Builder *)((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initNestedNodes(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1213; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -22823,7 +22962,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_3initNestedNodes(PyObject *__py __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initNestedNodes (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1206; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1212; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -22836,7 +22975,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_3initNestedNodes(PyObject *__py return __pyx_r; } -/* "schema.pyx":1206 +/* "schema.pyx":1212 * def __get__(self): * return _List_Node_Node_NestedNode_Builder().init(self.thisptr.getNestedNodes()) * cpdef initNestedNodes(self, uint num): # <<<<<<<<<<<<<< @@ -22853,7 +22992,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_2initNestedNodes(struct __pyx_o int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initNestedNodes", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)__pyx_v_self->__pyx_vtab)->initNestedNodes(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1206; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)__pyx_v_self->__pyx_vtab)->initNestedNodes(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -22882,7 +23021,7 @@ static PyObject *__pyx_pw_6schema_12_NodeBuilder_2id_1__get__(PyObject *__pyx_v_ return __pyx_r; } -/* "schema.pyx":1209 +/* "schema.pyx":1215 * return _List_Node_Node_NestedNode_Builder().init(self.thisptr.initNestedNodes(num)) * property id: * def __get__(self): # <<<<<<<<<<<<<< @@ -22899,7 +23038,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_2id___get__(struct __pyx_obj_6s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1210 + /* "schema.pyx":1216 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -22907,7 +23046,7 @@ static PyObject *__pyx_pf_6schema_12_NodeBuilder_2id___get__(struct __pyx_obj_6s * self.thisptr.setId(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1210; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1216; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -22936,7 +23075,7 @@ static int __pyx_pw_6schema_12_NodeBuilder_2id_3__set__(PyObject *__pyx_v_self, return __pyx_r; } -/* "schema.pyx":1211 +/* "schema.pyx":1217 * def __get__(self): * return self.thisptr.getId() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -22953,14 +23092,14 @@ static int __pyx_pf_6schema_12_NodeBuilder_2id_2__set__(struct __pyx_obj_6schema int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1212 + /* "schema.pyx":1218 * return self.thisptr.getId() * def __set__(self, val): * self.thisptr.setId(val) # <<<<<<<<<<<<<< * * cdef class _AnnotationNodeReader: */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1218; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setId(__pyx_t_1); __pyx_r = 0; @@ -22973,7 +23112,7 @@ static int __pyx_pf_6schema_12_NodeBuilder_2id_2__set__(struct __pyx_obj_6schema return __pyx_r; } -/* "schema.pyx":1216 +/* "schema.pyx":1222 * cdef class _AnnotationNodeReader: * cdef C_AnnotationNode.Reader thisptr * cdef init(self, C_AnnotationNode.Reader other): # <<<<<<<<<<<<<< @@ -22986,7 +23125,7 @@ static PyObject *__pyx_f_6schema_21_AnnotationNodeReader_init(struct __pyx_obj_6 __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1217 + /* "schema.pyx":1223 * cdef C_AnnotationNode.Reader thisptr * cdef init(self, C_AnnotationNode.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -22995,7 +23134,7 @@ static PyObject *__pyx_f_6schema_21_AnnotationNodeReader_init(struct __pyx_obj_6 */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1218 + /* "schema.pyx":1224 * cdef init(self, C_AnnotationNode.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -23025,7 +23164,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_12targetsField_1__get_ return __pyx_r; } -/* "schema.pyx":1221 +/* "schema.pyx":1227 * * property targetsField: * def __get__(self): # <<<<<<<<<<<<<< @@ -23042,7 +23181,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsField___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1222 + /* "schema.pyx":1228 * property targetsField: * def __get__(self): * return self.thisptr.getTargetsField() # <<<<<<<<<<<<<< @@ -23050,7 +23189,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsField___get__ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsField()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1222; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsField()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1228; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23079,7 +23218,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_12targetsConst_1__get_ return __pyx_r; } -/* "schema.pyx":1224 +/* "schema.pyx":1230 * return self.thisptr.getTargetsField() * property targetsConst: * def __get__(self): # <<<<<<<<<<<<<< @@ -23096,7 +23235,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsConst___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1225 + /* "schema.pyx":1231 * property targetsConst: * def __get__(self): * return self.thisptr.getTargetsConst() # <<<<<<<<<<<<<< @@ -23104,7 +23243,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsConst___get__ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsConst()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsConst()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23133,7 +23272,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_11targetsFile_1__get__ return __pyx_r; } -/* "schema.pyx":1227 +/* "schema.pyx":1233 * return self.thisptr.getTargetsConst() * property targetsFile: * def __get__(self): # <<<<<<<<<<<<<< @@ -23150,7 +23289,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_11targetsFile___get__( int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1228 + /* "schema.pyx":1234 * property targetsFile: * def __get__(self): * return self.thisptr.getTargetsFile() # <<<<<<<<<<<<<< @@ -23158,7 +23297,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_11targetsFile___get__( * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsFile()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1228; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsFile()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1234; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23187,7 +23326,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_13targetsStruct_1__get return __pyx_r; } -/* "schema.pyx":1230 +/* "schema.pyx":1236 * return self.thisptr.getTargetsFile() * property targetsStruct: * def __get__(self): # <<<<<<<<<<<<<< @@ -23204,7 +23343,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_13targetsStruct___get_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1231 + /* "schema.pyx":1237 * property targetsStruct: * def __get__(self): * return self.thisptr.getTargetsStruct() # <<<<<<<<<<<<<< @@ -23212,7 +23351,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_13targetsStruct___get_ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsStruct()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsStruct()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1237; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23241,7 +23380,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_12targetsParam_1__get_ return __pyx_r; } -/* "schema.pyx":1233 +/* "schema.pyx":1239 * return self.thisptr.getTargetsStruct() * property targetsParam: * def __get__(self): # <<<<<<<<<<<<<< @@ -23258,7 +23397,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsParam___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1234 + /* "schema.pyx":1240 * property targetsParam: * def __get__(self): * return self.thisptr.getTargetsParam() # <<<<<<<<<<<<<< @@ -23266,7 +23405,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsParam___get__ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsParam()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1234; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsParam()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1240; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23295,7 +23434,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_12targetsUnion_1__get_ return __pyx_r; } -/* "schema.pyx":1236 +/* "schema.pyx":1242 * return self.thisptr.getTargetsParam() * property targetsUnion: * def __get__(self): # <<<<<<<<<<<<<< @@ -23312,7 +23451,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsUnion___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1237 + /* "schema.pyx":1243 * property targetsUnion: * def __get__(self): * return self.thisptr.getTargetsUnion() # <<<<<<<<<<<<<< @@ -23320,7 +23459,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_12targetsUnion___get__ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsUnion()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1237; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsUnion()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1243; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23349,7 +23488,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_17targetsAnnotation_1_ return __pyx_r; } -/* "schema.pyx":1239 +/* "schema.pyx":1245 * return self.thisptr.getTargetsUnion() * property targetsAnnotation: * def __get__(self): # <<<<<<<<<<<<<< @@ -23366,7 +23505,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_17targetsAnnotation___ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1240 + /* "schema.pyx":1246 * property targetsAnnotation: * def __get__(self): * return self.thisptr.getTargetsAnnotation() # <<<<<<<<<<<<<< @@ -23374,7 +23513,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_17targetsAnnotation___ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsAnnotation()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1240; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsAnnotation()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1246; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23403,7 +23542,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_16targetsEnumerant_1__ return __pyx_r; } -/* "schema.pyx":1242 +/* "schema.pyx":1248 * return self.thisptr.getTargetsAnnotation() * property targetsEnumerant: * def __get__(self): # <<<<<<<<<<<<<< @@ -23420,7 +23559,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_16targetsEnumerant___g int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1243 + /* "schema.pyx":1249 * property targetsEnumerant: * def __get__(self): * return self.thisptr.getTargetsEnumerant() # <<<<<<<<<<<<<< @@ -23428,7 +23567,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_16targetsEnumerant___g * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnumerant()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1243; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnumerant()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23457,7 +23596,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_4type_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":1245 +/* "schema.pyx":1251 * return self.thisptr.getTargetsEnumerant() * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -23475,7 +23614,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_4type___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1246 + /* "schema.pyx":1252 * property type: * def __get__(self): * return _TypeReader().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -23483,9 +23622,9 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_4type___get__(struct _ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1246; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1246; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -23516,7 +23655,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_11targetsEnum_1__get__ return __pyx_r; } -/* "schema.pyx":1248 +/* "schema.pyx":1254 * return _TypeReader().init(self.thisptr.getType()) * property targetsEnum: * def __get__(self): # <<<<<<<<<<<<<< @@ -23533,7 +23672,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_11targetsEnum___get__( int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1249 + /* "schema.pyx":1255 * property targetsEnum: * def __get__(self): * return self.thisptr.getTargetsEnum() # <<<<<<<<<<<<<< @@ -23541,7 +23680,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_11targetsEnum___get__( * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnum()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnum()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1255; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23570,7 +23709,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_16targetsInterface_1__ return __pyx_r; } -/* "schema.pyx":1251 +/* "schema.pyx":1257 * return self.thisptr.getTargetsEnum() * property targetsInterface: * def __get__(self): # <<<<<<<<<<<<<< @@ -23587,7 +23726,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_16targetsInterface___g int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1252 + /* "schema.pyx":1258 * property targetsInterface: * def __get__(self): * return self.thisptr.getTargetsInterface() # <<<<<<<<<<<<<< @@ -23595,7 +23734,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_16targetsInterface___g * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsInterface()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsInterface()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1258; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23624,7 +23763,7 @@ static PyObject *__pyx_pw_6schema_21_AnnotationNodeReader_13targetsMethod_1__get return __pyx_r; } -/* "schema.pyx":1254 +/* "schema.pyx":1260 * return self.thisptr.getTargetsInterface() * property targetsMethod: * def __get__(self): # <<<<<<<<<<<<<< @@ -23641,7 +23780,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_13targetsMethod___get_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1255 + /* "schema.pyx":1261 * property targetsMethod: * def __get__(self): * return self.thisptr.getTargetsMethod() # <<<<<<<<<<<<<< @@ -23649,7 +23788,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_13targetsMethod___get_ * cdef class _AnnotationNodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsMethod()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1255; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsMethod()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1261; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23667,7 +23806,7 @@ static PyObject *__pyx_pf_6schema_21_AnnotationNodeReader_13targetsMethod___get_ return __pyx_r; } -/* "schema.pyx":1259 +/* "schema.pyx":1265 * cdef class _AnnotationNodeBuilder: * cdef C_AnnotationNode.Builder thisptr * cdef init(self, C_AnnotationNode.Builder other): # <<<<<<<<<<<<<< @@ -23680,7 +23819,7 @@ static PyObject *__pyx_f_6schema_22_AnnotationNodeBuilder_init(struct __pyx_obj_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1260 + /* "schema.pyx":1266 * cdef C_AnnotationNode.Builder thisptr * cdef init(self, C_AnnotationNode.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -23689,7 +23828,7 @@ static PyObject *__pyx_f_6schema_22_AnnotationNodeBuilder_init(struct __pyx_obj_ */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1261 + /* "schema.pyx":1267 * cdef init(self, C_AnnotationNode.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -23719,7 +23858,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsField_1__get return __pyx_r; } -/* "schema.pyx":1264 +/* "schema.pyx":1270 * * property targetsField: * def __get__(self): # <<<<<<<<<<<<<< @@ -23736,7 +23875,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsField___get_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1265 + /* "schema.pyx":1271 * property targetsField: * def __get__(self): * return self.thisptr.getTargetsField() # <<<<<<<<<<<<<< @@ -23744,7 +23883,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsField___get_ * self.thisptr.setTargetsField(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsField()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1265; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsField()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1271; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23773,7 +23912,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsField_3__set__(PyO return __pyx_r; } -/* "schema.pyx":1266 +/* "schema.pyx":1272 * def __get__(self): * return self.thisptr.getTargetsField() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -23790,14 +23929,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsField_2__set__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1267 + /* "schema.pyx":1273 * return self.thisptr.getTargetsField() * def __set__(self, val): * self.thisptr.setTargetsField(val) # <<<<<<<<<<<<<< * property targetsConst: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1267; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1273; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsField(__pyx_t_1); __pyx_r = 0; @@ -23821,7 +23960,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsConst_1__get return __pyx_r; } -/* "schema.pyx":1269 +/* "schema.pyx":1275 * self.thisptr.setTargetsField(val) * property targetsConst: * def __get__(self): # <<<<<<<<<<<<<< @@ -23838,7 +23977,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsConst___get_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1270 + /* "schema.pyx":1276 * property targetsConst: * def __get__(self): * return self.thisptr.getTargetsConst() # <<<<<<<<<<<<<< @@ -23846,7 +23985,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsConst___get_ * self.thisptr.setTargetsConst(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsConst()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1270; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsConst()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1276; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23875,7 +24014,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsConst_3__set__(PyO return __pyx_r; } -/* "schema.pyx":1271 +/* "schema.pyx":1277 * def __get__(self): * return self.thisptr.getTargetsConst() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -23892,14 +24031,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsConst_2__set__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1272 + /* "schema.pyx":1278 * return self.thisptr.getTargetsConst() * def __set__(self, val): * self.thisptr.setTargetsConst(val) # <<<<<<<<<<<<<< * property targetsFile: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1272; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1278; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsConst(__pyx_t_1); __pyx_r = 0; @@ -23923,7 +24062,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_11targetsFile_1__get_ return __pyx_r; } -/* "schema.pyx":1274 +/* "schema.pyx":1280 * self.thisptr.setTargetsConst(val) * property targetsFile: * def __get__(self): # <<<<<<<<<<<<<< @@ -23940,7 +24079,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_11targetsFile___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1275 + /* "schema.pyx":1281 * property targetsFile: * def __get__(self): * return self.thisptr.getTargetsFile() # <<<<<<<<<<<<<< @@ -23948,7 +24087,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_11targetsFile___get__ * self.thisptr.setTargetsFile(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsFile()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1275; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsFile()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1281; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -23977,7 +24116,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_11targetsFile_3__set__(PyOb return __pyx_r; } -/* "schema.pyx":1276 +/* "schema.pyx":1282 * def __get__(self): * return self.thisptr.getTargetsFile() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -23994,14 +24133,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_11targetsFile_2__set__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1277 + /* "schema.pyx":1283 * return self.thisptr.getTargetsFile() * def __set__(self, val): * self.thisptr.setTargetsFile(val) # <<<<<<<<<<<<<< * property targetsStruct: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1277; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsFile(__pyx_t_1); __pyx_r = 0; @@ -24025,7 +24164,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_13targetsStruct_1__ge return __pyx_r; } -/* "schema.pyx":1279 +/* "schema.pyx":1285 * self.thisptr.setTargetsFile(val) * property targetsStruct: * def __get__(self): # <<<<<<<<<<<<<< @@ -24042,7 +24181,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsStruct___get int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1280 + /* "schema.pyx":1286 * property targetsStruct: * def __get__(self): * return self.thisptr.getTargetsStruct() # <<<<<<<<<<<<<< @@ -24050,7 +24189,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsStruct___get * self.thisptr.setTargetsStruct(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsStruct()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1280; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsStruct()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1286; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24079,7 +24218,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_13targetsStruct_3__set__(Py return __pyx_r; } -/* "schema.pyx":1281 +/* "schema.pyx":1287 * def __get__(self): * return self.thisptr.getTargetsStruct() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24096,14 +24235,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsStruct_2__set__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1282 + /* "schema.pyx":1288 * return self.thisptr.getTargetsStruct() * def __set__(self, val): * self.thisptr.setTargetsStruct(val) # <<<<<<<<<<<<<< * property targetsParam: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1282; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1288; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsStruct(__pyx_t_1); __pyx_r = 0; @@ -24127,7 +24266,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsParam_1__get return __pyx_r; } -/* "schema.pyx":1284 +/* "schema.pyx":1290 * self.thisptr.setTargetsStruct(val) * property targetsParam: * def __get__(self): # <<<<<<<<<<<<<< @@ -24144,7 +24283,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsParam___get_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1285 + /* "schema.pyx":1291 * property targetsParam: * def __get__(self): * return self.thisptr.getTargetsParam() # <<<<<<<<<<<<<< @@ -24152,7 +24291,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsParam___get_ * self.thisptr.setTargetsParam(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsParam()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1285; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsParam()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1291; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24181,7 +24320,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsParam_3__set__(PyO return __pyx_r; } -/* "schema.pyx":1286 +/* "schema.pyx":1292 * def __get__(self): * return self.thisptr.getTargetsParam() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24198,14 +24337,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsParam_2__set__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1287 + /* "schema.pyx":1293 * return self.thisptr.getTargetsParam() * def __set__(self, val): * self.thisptr.setTargetsParam(val) # <<<<<<<<<<<<<< * property targetsUnion: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1287; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsParam(__pyx_t_1); __pyx_r = 0; @@ -24229,7 +24368,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsUnion_1__get return __pyx_r; } -/* "schema.pyx":1289 +/* "schema.pyx":1295 * self.thisptr.setTargetsParam(val) * property targetsUnion: * def __get__(self): # <<<<<<<<<<<<<< @@ -24246,7 +24385,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsUnion___get_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1290 + /* "schema.pyx":1296 * property targetsUnion: * def __get__(self): * return self.thisptr.getTargetsUnion() # <<<<<<<<<<<<<< @@ -24254,7 +24393,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsUnion___get_ * self.thisptr.setTargetsUnion(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsUnion()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsUnion()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1296; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24283,7 +24422,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_12targetsUnion_3__set__(PyO return __pyx_r; } -/* "schema.pyx":1291 +/* "schema.pyx":1297 * def __get__(self): * return self.thisptr.getTargetsUnion() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24300,14 +24439,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_12targetsUnion_2__set__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1292 + /* "schema.pyx":1298 * return self.thisptr.getTargetsUnion() * def __set__(self, val): * self.thisptr.setTargetsUnion(val) # <<<<<<<<<<<<<< * property targetsAnnotation: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1292; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1298; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsUnion(__pyx_t_1); __pyx_r = 0; @@ -24331,7 +24470,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_17targetsAnnotation_1 return __pyx_r; } -/* "schema.pyx":1294 +/* "schema.pyx":1300 * self.thisptr.setTargetsUnion(val) * property targetsAnnotation: * def __get__(self): # <<<<<<<<<<<<<< @@ -24348,7 +24487,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_17targetsAnnotation__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1295 + /* "schema.pyx":1301 * property targetsAnnotation: * def __get__(self): * return self.thisptr.getTargetsAnnotation() # <<<<<<<<<<<<<< @@ -24356,7 +24495,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_17targetsAnnotation__ * self.thisptr.setTargetsAnnotation(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsAnnotation()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1295; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsAnnotation()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1301; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24385,7 +24524,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_17targetsAnnotation_3__set_ return __pyx_r; } -/* "schema.pyx":1296 +/* "schema.pyx":1302 * def __get__(self): * return self.thisptr.getTargetsAnnotation() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24402,14 +24541,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_17targetsAnnotation_2__set_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1297 + /* "schema.pyx":1303 * return self.thisptr.getTargetsAnnotation() * def __set__(self, val): * self.thisptr.setTargetsAnnotation(val) # <<<<<<<<<<<<<< * property targetsEnumerant: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1297; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1303; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsAnnotation(__pyx_t_1); __pyx_r = 0; @@ -24433,7 +24572,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_16targetsEnumerant_1_ return __pyx_r; } -/* "schema.pyx":1299 +/* "schema.pyx":1305 * self.thisptr.setTargetsAnnotation(val) * property targetsEnumerant: * def __get__(self): # <<<<<<<<<<<<<< @@ -24450,7 +24589,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_16targetsEnumerant___ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1300 + /* "schema.pyx":1306 * property targetsEnumerant: * def __get__(self): * return self.thisptr.getTargetsEnumerant() # <<<<<<<<<<<<<< @@ -24458,7 +24597,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_16targetsEnumerant___ * self.thisptr.setTargetsEnumerant(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnumerant()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnumerant()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24487,7 +24626,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_16targetsEnumerant_3__set__ return __pyx_r; } -/* "schema.pyx":1301 +/* "schema.pyx":1307 * def __get__(self): * return self.thisptr.getTargetsEnumerant() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24504,14 +24643,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_16targetsEnumerant_2__set__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1302 + /* "schema.pyx":1308 * return self.thisptr.getTargetsEnumerant() * def __set__(self, val): * self.thisptr.setTargetsEnumerant(val) # <<<<<<<<<<<<<< * property type: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1302; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1308; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsEnumerant(__pyx_t_1); __pyx_r = 0; @@ -24535,7 +24674,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_4type_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":1304 +/* "schema.pyx":1310 * self.thisptr.setTargetsEnumerant(val) * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -24553,7 +24692,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_4type___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1305 + /* "schema.pyx":1311 * property type: * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -24561,9 +24700,9 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_4type___get__(struct * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1305; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1305; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -24594,7 +24733,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_4type_3__set__(PyObject *__ return __pyx_r; } -/* "schema.pyx":1306 +/* "schema.pyx":1312 * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24623,7 +24762,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_11targetsEnum_1__get_ return __pyx_r; } -/* "schema.pyx":1309 +/* "schema.pyx":1315 * pass * property targetsEnum: * def __get__(self): # <<<<<<<<<<<<<< @@ -24640,7 +24779,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_11targetsEnum___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1310 + /* "schema.pyx":1316 * property targetsEnum: * def __get__(self): * return self.thisptr.getTargetsEnum() # <<<<<<<<<<<<<< @@ -24648,7 +24787,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_11targetsEnum___get__ * self.thisptr.setTargetsEnum(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnum()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1310; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsEnum()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1316; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24677,7 +24816,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_11targetsEnum_3__set__(PyOb return __pyx_r; } -/* "schema.pyx":1311 +/* "schema.pyx":1317 * def __get__(self): * return self.thisptr.getTargetsEnum() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24694,14 +24833,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_11targetsEnum_2__set__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1312 + /* "schema.pyx":1318 * return self.thisptr.getTargetsEnum() * def __set__(self, val): * self.thisptr.setTargetsEnum(val) # <<<<<<<<<<<<<< * property targetsInterface: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1312; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsEnum(__pyx_t_1); __pyx_r = 0; @@ -24725,7 +24864,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_16targetsInterface_1_ return __pyx_r; } -/* "schema.pyx":1314 +/* "schema.pyx":1320 * self.thisptr.setTargetsEnum(val) * property targetsInterface: * def __get__(self): # <<<<<<<<<<<<<< @@ -24742,7 +24881,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_16targetsInterface___ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1315 + /* "schema.pyx":1321 * property targetsInterface: * def __get__(self): * return self.thisptr.getTargetsInterface() # <<<<<<<<<<<<<< @@ -24750,7 +24889,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_16targetsInterface___ * self.thisptr.setTargetsInterface(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsInterface()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsInterface()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1321; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24779,7 +24918,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_16targetsInterface_3__set__ return __pyx_r; } -/* "schema.pyx":1316 +/* "schema.pyx":1322 * def __get__(self): * return self.thisptr.getTargetsInterface() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24796,14 +24935,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_16targetsInterface_2__set__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1317 + /* "schema.pyx":1323 * return self.thisptr.getTargetsInterface() * def __set__(self, val): * self.thisptr.setTargetsInterface(val) # <<<<<<<<<<<<<< * property targetsMethod: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1323; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsInterface(__pyx_t_1); __pyx_r = 0; @@ -24827,7 +24966,7 @@ static PyObject *__pyx_pw_6schema_22_AnnotationNodeBuilder_13targetsMethod_1__ge return __pyx_r; } -/* "schema.pyx":1319 +/* "schema.pyx":1325 * self.thisptr.setTargetsInterface(val) * property targetsMethod: * def __get__(self): # <<<<<<<<<<<<<< @@ -24844,7 +24983,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsMethod___get int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1320 + /* "schema.pyx":1326 * property targetsMethod: * def __get__(self): * return self.thisptr.getTargetsMethod() # <<<<<<<<<<<<<< @@ -24852,7 +24991,7 @@ static PyObject *__pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsMethod___get * self.thisptr.setTargetsMethod(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsMethod()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1320; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->thisptr.getTargetsMethod()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1326; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -24881,7 +25020,7 @@ static int __pyx_pw_6schema_22_AnnotationNodeBuilder_13targetsMethod_3__set__(Py return __pyx_r; } -/* "schema.pyx":1321 +/* "schema.pyx":1327 * def __get__(self): * return self.thisptr.getTargetsMethod() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -24898,14 +25037,14 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsMethod_2__set__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1322 + /* "schema.pyx":1328 * return self.thisptr.getTargetsMethod() * def __set__(self, val): * self.thisptr.setTargetsMethod(val) # <<<<<<<<<<<<<< * * */ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1322; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1328; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setTargetsMethod(__pyx_t_1); __pyx_r = 0; @@ -24918,7 +25057,7 @@ static int __pyx_pf_6schema_22_AnnotationNodeBuilder_13targetsMethod_2__set__(st return __pyx_r; } -/* "schema.pyx":1327 +/* "schema.pyx":1333 * cdef class _EnumNode_EnumerantReader: * cdef C_EnumNode.Enumerant.Reader thisptr * cdef init(self, C_EnumNode.Enumerant.Reader other): # <<<<<<<<<<<<<< @@ -24931,7 +25070,7 @@ static PyObject *__pyx_f_6schema_25_EnumNode_EnumerantReader_init(struct __pyx_o __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1328 + /* "schema.pyx":1334 * cdef C_EnumNode.Enumerant.Reader thisptr * cdef init(self, C_EnumNode.Enumerant.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -24940,7 +25079,7 @@ static PyObject *__pyx_f_6schema_25_EnumNode_EnumerantReader_init(struct __pyx_o */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1329 + /* "schema.pyx":1335 * cdef init(self, C_EnumNode.Enumerant.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -24970,7 +25109,7 @@ static PyObject *__pyx_pw_6schema_25_EnumNode_EnumerantReader_9codeOrder_1__get_ return __pyx_r; } -/* "schema.pyx":1332 +/* "schema.pyx":1338 * * property codeOrder: * def __get__(self): # <<<<<<<<<<<<<< @@ -24987,7 +25126,7 @@ static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_9codeOrder___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1333 + /* "schema.pyx":1339 * property codeOrder: * def __get__(self): * return self.thisptr.getCodeOrder() # <<<<<<<<<<<<<< @@ -24995,7 +25134,7 @@ static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_9codeOrder___get__ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1333; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1339; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -25024,32 +25163,43 @@ static PyObject *__pyx_pw_6schema_25_EnumNode_EnumerantReader_4name_1__get__(PyO return __pyx_r; } -/* "schema.pyx":1335 +/* "schema.pyx":1341 * return self.thisptr.getCodeOrder() * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * property annotations: */ -static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__EnumNode_EnumerantReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_4name___get__(struct __pyx_obj_6schema__EnumNode_EnumerantReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1336 + /* "schema.pyx":1342 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * property annotations: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1342; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._EnumNode_EnumerantReader.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -25067,8 +25217,8 @@ static PyObject *__pyx_pw_6schema_25_EnumNode_EnumerantReader_11annotations_1__g return __pyx_r; } -/* "schema.pyx":1338 - * return None +/* "schema.pyx":1344 + * return self.thisptr.getName().cStr() * property annotations: * def __get__(self): # <<<<<<<<<<<<<< * return _List_EnumNode_Enumerant_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -25085,7 +25235,7 @@ static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_11annotations___ge int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1339 + /* "schema.pyx":1345 * property annotations: * def __get__(self): * return _List_EnumNode_Enumerant_Annotation_Reader().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -25093,9 +25243,9 @@ static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_11annotations___ge * cdef class _EnumNode_EnumerantBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1339; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1345; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Reader *)((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1339; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Reader *)((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1345; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -25115,7 +25265,7 @@ static PyObject *__pyx_pf_6schema_25_EnumNode_EnumerantReader_11annotations___ge return __pyx_r; } -/* "schema.pyx":1343 +/* "schema.pyx":1349 * cdef class _EnumNode_EnumerantBuilder: * cdef C_EnumNode.Enumerant.Builder thisptr * cdef init(self, C_EnumNode.Enumerant.Builder other): # <<<<<<<<<<<<<< @@ -25128,7 +25278,7 @@ static PyObject *__pyx_f_6schema_26_EnumNode_EnumerantBuilder_init(struct __pyx_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1344 + /* "schema.pyx":1350 * cdef C_EnumNode.Enumerant.Builder thisptr * cdef init(self, C_EnumNode.Enumerant.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -25137,7 +25287,7 @@ static PyObject *__pyx_f_6schema_26_EnumNode_EnumerantBuilder_init(struct __pyx_ */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1345 + /* "schema.pyx":1351 * cdef init(self, C_EnumNode.Enumerant.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -25167,7 +25317,7 @@ static PyObject *__pyx_pw_6schema_26_EnumNode_EnumerantBuilder_9codeOrder_1__get return __pyx_r; } -/* "schema.pyx":1348 +/* "schema.pyx":1354 * * property codeOrder: * def __get__(self): # <<<<<<<<<<<<<< @@ -25184,7 +25334,7 @@ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_9codeOrder___get_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1349 + /* "schema.pyx":1355 * property codeOrder: * def __get__(self): * return self.thisptr.getCodeOrder() # <<<<<<<<<<<<<< @@ -25192,7 +25342,7 @@ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_9codeOrder___get_ * self.thisptr.setCodeOrder(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1349; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -25221,7 +25371,7 @@ static int __pyx_pw_6schema_26_EnumNode_EnumerantBuilder_9codeOrder_3__set__(PyO return __pyx_r; } -/* "schema.pyx":1350 +/* "schema.pyx":1356 * def __get__(self): * return self.thisptr.getCodeOrder() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -25238,14 +25388,14 @@ static int __pyx_pf_6schema_26_EnumNode_EnumerantBuilder_9codeOrder_2__set__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1351 + /* "schema.pyx":1357 * return self.thisptr.getCodeOrder() * def __set__(self, val): * self.thisptr.setCodeOrder(val) # <<<<<<<<<<<<<< * property name: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setCodeOrder(__pyx_t_1); __pyx_r = 0; @@ -25269,32 +25419,43 @@ static PyObject *__pyx_pw_6schema_26_EnumNode_EnumerantBuilder_4name_1__get__(Py return __pyx_r; } -/* "schema.pyx":1353 +/* "schema.pyx":1359 * self.thisptr.setCodeOrder(val) * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_4name___get__(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1354 + /* "schema.pyx":1360 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1360; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._EnumNode_EnumerantBuilder.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -25312,9 +25473,9 @@ static int __pyx_pw_6schema_26_EnumNode_EnumerantBuilder_4name_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":1355 +/* "schema.pyx":1361 * def __get__(self): - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property annotations: @@ -25341,7 +25502,7 @@ static PyObject *__pyx_pw_6schema_26_EnumNode_EnumerantBuilder_11annotations_1__ return __pyx_r; } -/* "schema.pyx":1358 +/* "schema.pyx":1364 * pass * property annotations: * def __get__(self): # <<<<<<<<<<<<<< @@ -25359,7 +25520,7 @@ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_11annotations___g int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1359 + /* "schema.pyx":1365 * property annotations: * def __get__(self): * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -25367,9 +25528,9 @@ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_11annotations___g * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.initAnnotations(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1359; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Builder *)((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1359; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Builder *)((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -25389,7 +25550,7 @@ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_11annotations___g return __pyx_r; } -/* "schema.pyx":1360 +/* "schema.pyx":1366 * def __get__(self): * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -25412,18 +25573,18 @@ static PyObject *__pyx_f_6schema_26_EnumNode_EnumerantBuilder_initAnnotations(st if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1360; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1366; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_26_EnumNode_EnumerantBuilder_1initAnnotations)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1360; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1366; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1360; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1366; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1360; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1366; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -25434,7 +25595,7 @@ static PyObject *__pyx_f_6schema_26_EnumNode_EnumerantBuilder_initAnnotations(st __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1361 + /* "schema.pyx":1367 * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.initAnnotations(num)) # <<<<<<<<<<<<<< @@ -25442,9 +25603,9 @@ static PyObject *__pyx_f_6schema_26_EnumNode_EnumerantBuilder_initAnnotations(st * cdef C_EnumNode.Reader thisptr */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1361; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Builder *)((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1361; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_Enumerant_Annotation_Builder *)((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -25476,7 +25637,7 @@ static PyObject *__pyx_pw_6schema_26_EnumNode_EnumerantBuilder_1initAnnotations( __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initAnnotations (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1360; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1366; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -25489,7 +25650,7 @@ static PyObject *__pyx_pw_6schema_26_EnumNode_EnumerantBuilder_1initAnnotations( return __pyx_r; } -/* "schema.pyx":1360 +/* "schema.pyx":1366 * def __get__(self): * return _List_EnumNode_Enumerant_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -25506,7 +25667,7 @@ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_initAnnotations(s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initAnnotations", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__EnumNode_EnumerantBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1360; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__EnumNode_EnumerantBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1366; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -25524,7 +25685,7 @@ static PyObject *__pyx_pf_6schema_26_EnumNode_EnumerantBuilder_initAnnotations(s return __pyx_r; } -/* "schema.pyx":1364 +/* "schema.pyx":1370 * cdef class _EnumNodeReader: * cdef C_EnumNode.Reader thisptr * cdef init(self, C_EnumNode.Reader other): # <<<<<<<<<<<<<< @@ -25537,7 +25698,7 @@ static PyObject *__pyx_f_6schema_15_EnumNodeReader_init(struct __pyx_obj_6schema __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1365 + /* "schema.pyx":1371 * cdef C_EnumNode.Reader thisptr * cdef init(self, C_EnumNode.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -25546,7 +25707,7 @@ static PyObject *__pyx_f_6schema_15_EnumNodeReader_init(struct __pyx_obj_6schema */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1366 + /* "schema.pyx":1372 * cdef init(self, C_EnumNode.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -25576,7 +25737,7 @@ static PyObject *__pyx_pw_6schema_15_EnumNodeReader_10enumerants_1__get__(PyObje return __pyx_r; } -/* "schema.pyx":1369 +/* "schema.pyx":1375 * * property enumerants: * def __get__(self): # <<<<<<<<<<<<<< @@ -25594,7 +25755,7 @@ static PyObject *__pyx_pf_6schema_15_EnumNodeReader_10enumerants___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1370 + /* "schema.pyx":1376 * property enumerants: * def __get__(self): * return _List_EnumNode_EnumNode_Enumerant_Reader().init(self.thisptr.getEnumerants()) # <<<<<<<<<<<<<< @@ -25602,9 +25763,9 @@ static PyObject *__pyx_pf_6schema_15_EnumNodeReader_10enumerants___get__(struct * cdef class _EnumNodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1370; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1376; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Reader *)((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getEnumerants()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1370; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Reader *)((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getEnumerants()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1376; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -25624,7 +25785,7 @@ static PyObject *__pyx_pf_6schema_15_EnumNodeReader_10enumerants___get__(struct return __pyx_r; } -/* "schema.pyx":1374 +/* "schema.pyx":1380 * cdef class _EnumNodeBuilder: * cdef C_EnumNode.Builder thisptr * cdef init(self, C_EnumNode.Builder other): # <<<<<<<<<<<<<< @@ -25637,7 +25798,7 @@ static PyObject *__pyx_f_6schema_16_EnumNodeBuilder_init(struct __pyx_obj_6schem __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1375 + /* "schema.pyx":1381 * cdef C_EnumNode.Builder thisptr * cdef init(self, C_EnumNode.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -25646,7 +25807,7 @@ static PyObject *__pyx_f_6schema_16_EnumNodeBuilder_init(struct __pyx_obj_6schem */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1376 + /* "schema.pyx":1382 * cdef init(self, C_EnumNode.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -25676,7 +25837,7 @@ static PyObject *__pyx_pw_6schema_16_EnumNodeBuilder_10enumerants_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":1379 +/* "schema.pyx":1385 * * property enumerants: * def __get__(self): # <<<<<<<<<<<<<< @@ -25694,7 +25855,7 @@ static PyObject *__pyx_pf_6schema_16_EnumNodeBuilder_10enumerants___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1380 + /* "schema.pyx":1386 * property enumerants: * def __get__(self): * return _List_EnumNode_EnumNode_Enumerant_Builder().init(self.thisptr.getEnumerants()) # <<<<<<<<<<<<<< @@ -25702,9 +25863,9 @@ static PyObject *__pyx_pf_6schema_16_EnumNodeBuilder_10enumerants___get__(struct * return _List_EnumNode_EnumNode_Enumerant_Builder().init(self.thisptr.initEnumerants(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1380; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1386; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getEnumerants()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1380; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getEnumerants()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1386; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -25724,7 +25885,7 @@ static PyObject *__pyx_pf_6schema_16_EnumNodeBuilder_10enumerants___get__(struct return __pyx_r; } -/* "schema.pyx":1381 +/* "schema.pyx":1387 * def __get__(self): * return _List_EnumNode_EnumNode_Enumerant_Builder().init(self.thisptr.getEnumerants()) * cpdef initEnumerants(self, uint num): # <<<<<<<<<<<<<< @@ -25747,18 +25908,18 @@ static PyObject *__pyx_f_6schema_16_EnumNodeBuilder_initEnumerants(struct __pyx_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initEnumerants); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1381; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initEnumerants); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1387; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_16_EnumNodeBuilder_1initEnumerants)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1381; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1387; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1381; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1387; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1381; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1387; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -25769,7 +25930,7 @@ static PyObject *__pyx_f_6schema_16_EnumNodeBuilder_initEnumerants(struct __pyx_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1382 + /* "schema.pyx":1388 * return _List_EnumNode_EnumNode_Enumerant_Builder().init(self.thisptr.getEnumerants()) * cpdef initEnumerants(self, uint num): * return _List_EnumNode_EnumNode_Enumerant_Builder().init(self.thisptr.initEnumerants(num)) # <<<<<<<<<<<<<< @@ -25777,9 +25938,9 @@ static PyObject *__pyx_f_6schema_16_EnumNodeBuilder_initEnumerants(struct __pyx_ * */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1382; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1388; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initEnumerants(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1382; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initEnumerants(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1388; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -25811,7 +25972,7 @@ static PyObject *__pyx_pw_6schema_16_EnumNodeBuilder_1initEnumerants(PyObject *_ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initEnumerants (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1381; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1387; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -25824,7 +25985,7 @@ static PyObject *__pyx_pw_6schema_16_EnumNodeBuilder_1initEnumerants(PyObject *_ return __pyx_r; } -/* "schema.pyx":1381 +/* "schema.pyx":1387 * def __get__(self): * return _List_EnumNode_EnumNode_Enumerant_Builder().init(self.thisptr.getEnumerants()) * cpdef initEnumerants(self, uint num): # <<<<<<<<<<<<<< @@ -25841,7 +26002,7 @@ static PyObject *__pyx_pf_6schema_16_EnumNodeBuilder_initEnumerants(struct __pyx int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initEnumerants", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)__pyx_v_self->__pyx_vtab)->initEnumerants(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1381; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)__pyx_v_self->__pyx_vtab)->initEnumerants(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1387; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -25859,7 +26020,7 @@ static PyObject *__pyx_pf_6schema_16_EnumNodeBuilder_initEnumerants(struct __pyx return __pyx_r; } -/* "schema.pyx":1387 +/* "schema.pyx":1393 * cdef class _StructNode_UnionReader: * cdef C_StructNode.Union.Reader thisptr * cdef init(self, C_StructNode.Union.Reader other): # <<<<<<<<<<<<<< @@ -25872,7 +26033,7 @@ static PyObject *__pyx_f_6schema_23_StructNode_UnionReader_init(struct __pyx_obj __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1388 + /* "schema.pyx":1394 * cdef C_StructNode.Union.Reader thisptr * cdef init(self, C_StructNode.Union.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -25881,7 +26042,7 @@ static PyObject *__pyx_f_6schema_23_StructNode_UnionReader_init(struct __pyx_obj */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1389 + /* "schema.pyx":1395 * cdef init(self, C_StructNode.Union.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -25911,7 +26072,7 @@ static PyObject *__pyx_pw_6schema_23_StructNode_UnionReader_18discriminantOffset return __pyx_r; } -/* "schema.pyx":1392 +/* "schema.pyx":1398 * * property discriminantOffset: * def __get__(self): # <<<<<<<<<<<<<< @@ -25928,7 +26089,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_UnionReader_18discriminantOffset int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1393 + /* "schema.pyx":1399 * property discriminantOffset: * def __get__(self): * return self.thisptr.getDiscriminantOffset() # <<<<<<<<<<<<<< @@ -25936,7 +26097,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_UnionReader_18discriminantOffset * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getDiscriminantOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1393; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getDiscriminantOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1399; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -25965,7 +26126,7 @@ static PyObject *__pyx_pw_6schema_23_StructNode_UnionReader_7members_1__get__(Py return __pyx_r; } -/* "schema.pyx":1395 +/* "schema.pyx":1401 * return self.thisptr.getDiscriminantOffset() * property members: * def __get__(self): # <<<<<<<<<<<<<< @@ -25983,7 +26144,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_UnionReader_7members___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1396 + /* "schema.pyx":1402 * property members: * def __get__(self): * return _List_StructNode_Union_StructNode_Member_Reader().init(self.thisptr.getMembers()) # <<<<<<<<<<<<<< @@ -25991,9 +26152,9 @@ static PyObject *__pyx_pf_6schema_23_StructNode_UnionReader_7members___get__(str * cdef class _StructNode_UnionBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1396; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1402; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Reader *)((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1396; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Reader *)((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1402; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -26013,7 +26174,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_UnionReader_7members___get__(str return __pyx_r; } -/* "schema.pyx":1400 +/* "schema.pyx":1406 * cdef class _StructNode_UnionBuilder: * cdef C_StructNode.Union.Builder thisptr * cdef init(self, C_StructNode.Union.Builder other): # <<<<<<<<<<<<<< @@ -26026,7 +26187,7 @@ static PyObject *__pyx_f_6schema_24_StructNode_UnionBuilder_init(struct __pyx_ob __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1401 + /* "schema.pyx":1407 * cdef C_StructNode.Union.Builder thisptr * cdef init(self, C_StructNode.Union.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -26035,7 +26196,7 @@ static PyObject *__pyx_f_6schema_24_StructNode_UnionBuilder_init(struct __pyx_ob */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1402 + /* "schema.pyx":1408 * cdef init(self, C_StructNode.Union.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -26065,7 +26226,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_UnionBuilder_18discriminantOffse return __pyx_r; } -/* "schema.pyx":1405 +/* "schema.pyx":1411 * * property discriminantOffset: * def __get__(self): # <<<<<<<<<<<<<< @@ -26082,7 +26243,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_UnionBuilder_18discriminantOffse int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1406 + /* "schema.pyx":1412 * property discriminantOffset: * def __get__(self): * return self.thisptr.getDiscriminantOffset() # <<<<<<<<<<<<<< @@ -26090,7 +26251,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_UnionBuilder_18discriminantOffse * self.thisptr.setDiscriminantOffset(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getDiscriminantOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1406; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getDiscriminantOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -26119,7 +26280,7 @@ static int __pyx_pw_6schema_24_StructNode_UnionBuilder_18discriminantOffset_3__s return __pyx_r; } -/* "schema.pyx":1407 +/* "schema.pyx":1413 * def __get__(self): * return self.thisptr.getDiscriminantOffset() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -26136,14 +26297,14 @@ static int __pyx_pf_6schema_24_StructNode_UnionBuilder_18discriminantOffset_2__s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1408 + /* "schema.pyx":1414 * return self.thisptr.getDiscriminantOffset() * def __set__(self, val): * self.thisptr.setDiscriminantOffset(val) # <<<<<<<<<<<<<< * property members: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1414; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setDiscriminantOffset(__pyx_t_1); __pyx_r = 0; @@ -26167,7 +26328,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_UnionBuilder_7members_1__get__(P return __pyx_r; } -/* "schema.pyx":1410 +/* "schema.pyx":1416 * self.thisptr.setDiscriminantOffset(val) * property members: * def __get__(self): # <<<<<<<<<<<<<< @@ -26185,7 +26346,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_UnionBuilder_7members___get__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1411 + /* "schema.pyx":1417 * property members: * def __get__(self): * return _List_StructNode_Union_StructNode_Member_Builder().init(self.thisptr.getMembers()) # <<<<<<<<<<<<<< @@ -26193,9 +26354,9 @@ static PyObject *__pyx_pf_6schema_24_StructNode_UnionBuilder_7members___get__(st * return _List_StructNode_Union_StructNode_Member_Builder().init(self.thisptr.initMembers(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1417; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1417; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -26215,7 +26376,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_UnionBuilder_7members___get__(st return __pyx_r; } -/* "schema.pyx":1412 +/* "schema.pyx":1418 * def __get__(self): * return _List_StructNode_Union_StructNode_Member_Builder().init(self.thisptr.getMembers()) * cpdef initMembers(self, uint num): # <<<<<<<<<<<<<< @@ -26238,18 +26399,18 @@ static PyObject *__pyx_f_6schema_24_StructNode_UnionBuilder_initMembers(struct _ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initMembers); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initMembers); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_24_StructNode_UnionBuilder_1initMembers)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -26260,7 +26421,7 @@ static PyObject *__pyx_f_6schema_24_StructNode_UnionBuilder_initMembers(struct _ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1413 + /* "schema.pyx":1419 * return _List_StructNode_Union_StructNode_Member_Builder().init(self.thisptr.getMembers()) * cpdef initMembers(self, uint num): * return _List_StructNode_Union_StructNode_Member_Builder().init(self.thisptr.initMembers(num)) # <<<<<<<<<<<<<< @@ -26268,9 +26429,9 @@ static PyObject *__pyx_f_6schema_24_StructNode_UnionBuilder_initMembers(struct _ * */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initMembers(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Union_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initMembers(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -26302,7 +26463,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_UnionBuilder_1initMembers(PyObje __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initMembers (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1412; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1418; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -26315,7 +26476,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_UnionBuilder_1initMembers(PyObje return __pyx_r; } -/* "schema.pyx":1412 +/* "schema.pyx":1418 * def __get__(self): * return _List_StructNode_Union_StructNode_Member_Builder().init(self.thisptr.getMembers()) * cpdef initMembers(self, uint num): # <<<<<<<<<<<<<< @@ -26332,7 +26493,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_UnionBuilder_initMembers(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initMembers", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__StructNode_UnionBuilder *)__pyx_v_self->__pyx_vtab)->initMembers(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__StructNode_UnionBuilder *)__pyx_v_self->__pyx_vtab)->initMembers(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -26350,7 +26511,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_UnionBuilder_initMembers(struct return __pyx_r; } -/* "schema.pyx":1419 +/* "schema.pyx":1425 * cdef class _StructNode_Member_BodyReader: * cdef C_StructNode.Member.Body.Reader thisptr * cdef init(self, C_StructNode.Member.Body.Reader other): # <<<<<<<<<<<<<< @@ -26363,7 +26524,7 @@ static PyObject *__pyx_f_6schema_29_StructNode_Member_BodyReader_init(struct __p __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1420 + /* "schema.pyx":1426 * cdef C_StructNode.Member.Body.Reader thisptr * cdef init(self, C_StructNode.Member.Body.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -26372,7 +26533,7 @@ static PyObject *__pyx_f_6schema_29_StructNode_Member_BodyReader_init(struct __p */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1421 + /* "schema.pyx":1427 * cdef init(self, C_StructNode.Member.Body.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -26391,7 +26552,7 @@ static PyObject *__pyx_f_6schema_29_StructNode_Member_BodyReader_init(struct __p return __pyx_r; } -/* "schema.pyx":1423 +/* "schema.pyx":1429 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -26414,12 +26575,12 @@ static int __pyx_f_6schema_29_StructNode_Member_BodyReader_which(struct __pyx_ob if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_29_StructNode_Member_BodyReader_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -26428,7 +26589,7 @@ static int __pyx_f_6schema_29_StructNode_Member_BodyReader_which(struct __pyx_ob __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1424 + /* "schema.pyx":1430 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -26461,7 +26622,7 @@ static PyObject *__pyx_pw_6schema_29_StructNode_Member_BodyReader_1which(PyObjec return __pyx_r; } -/* "schema.pyx":1423 +/* "schema.pyx":1429 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -26478,7 +26639,7 @@ static PyObject *__pyx_pf_6schema_29_StructNode_Member_BodyReader_which(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyReader *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -26507,7 +26668,7 @@ static PyObject *__pyx_pw_6schema_29_StructNode_Member_BodyReader_11fieldMember_ return __pyx_r; } -/* "schema.pyx":1426 +/* "schema.pyx":1432 * return self.thisptr.which() * property fieldMember: * def __get__(self): # <<<<<<<<<<<<<< @@ -26525,7 +26686,7 @@ static PyObject *__pyx_pf_6schema_29_StructNode_Member_BodyReader_11fieldMember_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1427 + /* "schema.pyx":1433 * property fieldMember: * def __get__(self): * return _StructNode_FieldReader().init(self.thisptr.getFieldMember()) # <<<<<<<<<<<<<< @@ -26533,9 +26694,9 @@ static PyObject *__pyx_pf_6schema_29_StructNode_Member_BodyReader_11fieldMember_ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1427; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1433; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_FieldReader *)((struct __pyx_obj_6schema__StructNode_FieldReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_FieldReader *)__pyx_t_1), ((::capnp::schema::StructNode::Field::Reader)__pyx_v_self->thisptr.getFieldMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1427; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_FieldReader *)((struct __pyx_obj_6schema__StructNode_FieldReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_FieldReader *)__pyx_t_1), ((::capnp::schema::StructNode::Field::Reader)__pyx_v_self->thisptr.getFieldMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1433; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -26566,7 +26727,7 @@ static PyObject *__pyx_pw_6schema_29_StructNode_Member_BodyReader_11unionMember_ return __pyx_r; } -/* "schema.pyx":1429 +/* "schema.pyx":1435 * return _StructNode_FieldReader().init(self.thisptr.getFieldMember()) * property unionMember: * def __get__(self): # <<<<<<<<<<<<<< @@ -26584,7 +26745,7 @@ static PyObject *__pyx_pf_6schema_29_StructNode_Member_BodyReader_11unionMember_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1430 + /* "schema.pyx":1436 * property unionMember: * def __get__(self): * return _StructNode_UnionReader().init(self.thisptr.getUnionMember()) # <<<<<<<<<<<<<< @@ -26592,9 +26753,9 @@ static PyObject *__pyx_pf_6schema_29_StructNode_Member_BodyReader_11unionMember_ * cdef class _StructNode_Member_BodyBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1430; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1436; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_UnionReader *)((struct __pyx_obj_6schema__StructNode_UnionReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_UnionReader *)__pyx_t_1), ((::capnp::schema::StructNode::Union::Reader)__pyx_v_self->thisptr.getUnionMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1430; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_UnionReader *)((struct __pyx_obj_6schema__StructNode_UnionReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_UnionReader *)__pyx_t_1), ((::capnp::schema::StructNode::Union::Reader)__pyx_v_self->thisptr.getUnionMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1436; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -26614,7 +26775,7 @@ static PyObject *__pyx_pf_6schema_29_StructNode_Member_BodyReader_11unionMember_ return __pyx_r; } -/* "schema.pyx":1434 +/* "schema.pyx":1440 * cdef class _StructNode_Member_BodyBuilder: * cdef C_StructNode.Member.Body.Builder thisptr * cdef init(self, C_StructNode.Member.Body.Builder other): # <<<<<<<<<<<<<< @@ -26627,7 +26788,7 @@ static PyObject *__pyx_f_6schema_30_StructNode_Member_BodyBuilder_init(struct __ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1435 + /* "schema.pyx":1441 * cdef C_StructNode.Member.Body.Builder thisptr * cdef init(self, C_StructNode.Member.Body.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -26636,7 +26797,7 @@ static PyObject *__pyx_f_6schema_30_StructNode_Member_BodyBuilder_init(struct __ */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1436 + /* "schema.pyx":1442 * cdef init(self, C_StructNode.Member.Body.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -26655,7 +26816,7 @@ static PyObject *__pyx_f_6schema_30_StructNode_Member_BodyBuilder_init(struct __ return __pyx_r; } -/* "schema.pyx":1438 +/* "schema.pyx":1444 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -26678,12 +26839,12 @@ static int __pyx_f_6schema_30_StructNode_Member_BodyBuilder_which(struct __pyx_o if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__which); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1444; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_30_StructNode_Member_BodyBuilder_1which)) { - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1444; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1444; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = __pyx_t_3; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; @@ -26692,7 +26853,7 @@ static int __pyx_f_6schema_30_StructNode_Member_BodyBuilder_which(struct __pyx_o __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1439 + /* "schema.pyx":1445 * * cpdef int which(self): * return self.thisptr.which() # <<<<<<<<<<<<<< @@ -26725,7 +26886,7 @@ static PyObject *__pyx_pw_6schema_30_StructNode_Member_BodyBuilder_1which(PyObje return __pyx_r; } -/* "schema.pyx":1438 +/* "schema.pyx":1444 * return self * * cpdef int which(self): # <<<<<<<<<<<<<< @@ -26742,7 +26903,7 @@ static PyObject *__pyx_pf_6schema_30_StructNode_Member_BodyBuilder_which(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("which", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyBuilder *)__pyx_v_self->__pyx_vtab)->which(__pyx_v_self, 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1444; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -26771,7 +26932,7 @@ static PyObject *__pyx_pw_6schema_30_StructNode_Member_BodyBuilder_11fieldMember return __pyx_r; } -/* "schema.pyx":1441 +/* "schema.pyx":1447 * return self.thisptr.which() * property fieldMember: * def __get__(self): # <<<<<<<<<<<<<< @@ -26789,7 +26950,7 @@ static PyObject *__pyx_pf_6schema_30_StructNode_Member_BodyBuilder_11fieldMember int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1442 + /* "schema.pyx":1448 * property fieldMember: * def __get__(self): * return _StructNode_FieldBuilder().init(self.thisptr.getFieldMember()) # <<<<<<<<<<<<<< @@ -26797,9 +26958,9 @@ static PyObject *__pyx_pf_6schema_30_StructNode_Member_BodyBuilder_11fieldMember * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1442; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_FieldBuilder *)((struct __pyx_obj_6schema__StructNode_FieldBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_FieldBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Field::Builder)__pyx_v_self->thisptr.getFieldMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1442; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_FieldBuilder *)((struct __pyx_obj_6schema__StructNode_FieldBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_FieldBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Field::Builder)__pyx_v_self->thisptr.getFieldMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -26830,7 +26991,7 @@ static int __pyx_pw_6schema_30_StructNode_Member_BodyBuilder_11fieldMember_3__se return __pyx_r; } -/* "schema.pyx":1443 +/* "schema.pyx":1449 * def __get__(self): * return _StructNode_FieldBuilder().init(self.thisptr.getFieldMember()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -26859,7 +27020,7 @@ static PyObject *__pyx_pw_6schema_30_StructNode_Member_BodyBuilder_11unionMember return __pyx_r; } -/* "schema.pyx":1446 +/* "schema.pyx":1452 * pass * property unionMember: * def __get__(self): # <<<<<<<<<<<<<< @@ -26877,7 +27038,7 @@ static PyObject *__pyx_pf_6schema_30_StructNode_Member_BodyBuilder_11unionMember int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1447 + /* "schema.pyx":1453 * property unionMember: * def __get__(self): * return _StructNode_UnionBuilder().init(self.thisptr.getUnionMember()) # <<<<<<<<<<<<<< @@ -26885,9 +27046,9 @@ static PyObject *__pyx_pf_6schema_30_StructNode_Member_BodyBuilder_11unionMember * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1453; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_UnionBuilder *)((struct __pyx_obj_6schema__StructNode_UnionBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_UnionBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Union::Builder)__pyx_v_self->thisptr.getUnionMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_UnionBuilder *)((struct __pyx_obj_6schema__StructNode_UnionBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_UnionBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Union::Builder)__pyx_v_self->thisptr.getUnionMember())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1453; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -26918,7 +27079,7 @@ static int __pyx_pw_6schema_30_StructNode_Member_BodyBuilder_11unionMember_3__se return __pyx_r; } -/* "schema.pyx":1448 +/* "schema.pyx":1454 * def __get__(self): * return _StructNode_UnionBuilder().init(self.thisptr.getUnionMember()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -26936,7 +27097,7 @@ static int __pyx_pf_6schema_30_StructNode_Member_BodyBuilder_11unionMember_2__se return __pyx_r; } -/* "schema.pyx":1452 +/* "schema.pyx":1458 * cdef class _StructNode_MemberReader: * cdef C_StructNode.Member.Reader thisptr * cdef init(self, C_StructNode.Member.Reader other): # <<<<<<<<<<<<<< @@ -26949,7 +27110,7 @@ static PyObject *__pyx_f_6schema_24_StructNode_MemberReader_init(struct __pyx_ob __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1453 + /* "schema.pyx":1459 * cdef C_StructNode.Member.Reader thisptr * cdef init(self, C_StructNode.Member.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -26958,7 +27119,7 @@ static PyObject *__pyx_f_6schema_24_StructNode_MemberReader_init(struct __pyx_ob */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1454 + /* "schema.pyx":1460 * cdef init(self, C_StructNode.Member.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -26988,7 +27149,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_MemberReader_7ordinal_1__get__(P return __pyx_r; } -/* "schema.pyx":1457 +/* "schema.pyx":1463 * * property ordinal: * def __get__(self): # <<<<<<<<<<<<<< @@ -27005,7 +27166,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_7ordinal___get__(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1458 + /* "schema.pyx":1464 * property ordinal: * def __get__(self): * return self.thisptr.getOrdinal() # <<<<<<<<<<<<<< @@ -27013,7 +27174,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_7ordinal___get__(st * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getOrdinal()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1458; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getOrdinal()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1464; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -27042,7 +27203,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_MemberReader_4body_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":1460 +/* "schema.pyx":1466 * return self.thisptr.getOrdinal() * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -27060,7 +27221,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_4body___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1461 + /* "schema.pyx":1467 * property body: * def __get__(self): * return _StructNode_Member_BodyReader().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -27068,9 +27229,9 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_4body___get__(struc * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1461; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1467; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyReader *)((struct __pyx_obj_6schema__StructNode_Member_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_Member_BodyReader *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1461; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyReader *)((struct __pyx_obj_6schema__StructNode_Member_BodyReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_Member_BodyReader *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Body::Reader)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1467; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -27101,7 +27262,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_MemberReader_9codeOrder_1__get__ return __pyx_r; } -/* "schema.pyx":1463 +/* "schema.pyx":1469 * return _StructNode_Member_BodyReader().init(self.thisptr.getBody()) * property codeOrder: * def __get__(self): # <<<<<<<<<<<<<< @@ -27118,7 +27279,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_9codeOrder___get__( int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1464 + /* "schema.pyx":1470 * property codeOrder: * def __get__(self): * return self.thisptr.getCodeOrder() # <<<<<<<<<<<<<< @@ -27126,7 +27287,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_9codeOrder___get__( * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1464; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1470; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -27155,32 +27316,43 @@ static PyObject *__pyx_pw_6schema_24_StructNode_MemberReader_4name_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":1466 +/* "schema.pyx":1472 * return self.thisptr.getCodeOrder() * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * property annotations: */ -static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_4name___get__(struct __pyx_obj_6schema__StructNode_MemberReader *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1467 + /* "schema.pyx":1473 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * property annotations: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1473; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._StructNode_MemberReader.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -27198,8 +27370,8 @@ static PyObject *__pyx_pw_6schema_24_StructNode_MemberReader_11annotations_1__ge return __pyx_r; } -/* "schema.pyx":1469 - * return None +/* "schema.pyx":1475 + * return self.thisptr.getName().cStr() * property annotations: * def __get__(self): # <<<<<<<<<<<<<< * return _List_StructNode_Member_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -27216,7 +27388,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_11annotations___get int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1470 + /* "schema.pyx":1476 * property annotations: * def __get__(self): * return _List_StructNode_Member_Annotation_Reader().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -27224,9 +27396,9 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_11annotations___get * cdef class _StructNode_MemberBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Member_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1470; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Member_Annotation_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1476; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Reader *)((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1470; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Reader *)((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1476; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -27246,7 +27418,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_MemberReader_11annotations___get return __pyx_r; } -/* "schema.pyx":1474 +/* "schema.pyx":1480 * cdef class _StructNode_MemberBuilder: * cdef C_StructNode.Member.Builder thisptr * cdef init(self, C_StructNode.Member.Builder other): # <<<<<<<<<<<<<< @@ -27259,7 +27431,7 @@ static PyObject *__pyx_f_6schema_25_StructNode_MemberBuilder_init(struct __pyx_o __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1475 + /* "schema.pyx":1481 * cdef C_StructNode.Member.Builder thisptr * cdef init(self, C_StructNode.Member.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -27268,7 +27440,7 @@ static PyObject *__pyx_f_6schema_25_StructNode_MemberBuilder_init(struct __pyx_o */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1476 + /* "schema.pyx":1482 * cdef init(self, C_StructNode.Member.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -27298,7 +27470,7 @@ static PyObject *__pyx_pw_6schema_25_StructNode_MemberBuilder_7ordinal_1__get__( return __pyx_r; } -/* "schema.pyx":1479 +/* "schema.pyx":1485 * * property ordinal: * def __get__(self): # <<<<<<<<<<<<<< @@ -27315,7 +27487,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_7ordinal___get__(s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1480 + /* "schema.pyx":1486 * property ordinal: * def __get__(self): * return self.thisptr.getOrdinal() # <<<<<<<<<<<<<< @@ -27323,7 +27495,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_7ordinal___get__(s * self.thisptr.setOrdinal(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getOrdinal()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1480; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getOrdinal()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1486; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -27352,7 +27524,7 @@ static int __pyx_pw_6schema_25_StructNode_MemberBuilder_7ordinal_3__set__(PyObje return __pyx_r; } -/* "schema.pyx":1481 +/* "schema.pyx":1487 * def __get__(self): * return self.thisptr.getOrdinal() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -27369,14 +27541,14 @@ static int __pyx_pf_6schema_25_StructNode_MemberBuilder_7ordinal_2__set__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1482 + /* "schema.pyx":1488 * return self.thisptr.getOrdinal() * def __set__(self, val): * self.thisptr.setOrdinal(val) # <<<<<<<<<<<<<< * property body: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1482; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1488; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setOrdinal(__pyx_t_1); __pyx_r = 0; @@ -27400,7 +27572,7 @@ static PyObject *__pyx_pw_6schema_25_StructNode_MemberBuilder_4body_1__get__(PyO return __pyx_r; } -/* "schema.pyx":1484 +/* "schema.pyx":1490 * self.thisptr.setOrdinal(val) * property body: * def __get__(self): # <<<<<<<<<<<<<< @@ -27418,7 +27590,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_4body___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1485 + /* "schema.pyx":1491 * property body: * def __get__(self): * return _StructNode_Member_BodyBuilder().init(self.thisptr.getBody()) # <<<<<<<<<<<<<< @@ -27426,9 +27598,9 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_4body___get__(stru * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1485; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyBuilder *)((struct __pyx_obj_6schema__StructNode_Member_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_Member_BodyBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1485; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNode_Member_BodyBuilder *)((struct __pyx_obj_6schema__StructNode_Member_BodyBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNode_Member_BodyBuilder *)__pyx_t_1), ((::capnp::schema::StructNode::Member::Body::Builder)__pyx_v_self->thisptr.getBody())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -27459,7 +27631,7 @@ static int __pyx_pw_6schema_25_StructNode_MemberBuilder_4body_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":1486 +/* "schema.pyx":1492 * def __get__(self): * return _StructNode_Member_BodyBuilder().init(self.thisptr.getBody()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -27488,7 +27660,7 @@ static PyObject *__pyx_pw_6schema_25_StructNode_MemberBuilder_9codeOrder_1__get_ return __pyx_r; } -/* "schema.pyx":1489 +/* "schema.pyx":1495 * pass * property codeOrder: * def __get__(self): # <<<<<<<<<<<<<< @@ -27505,7 +27677,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_9codeOrder___get__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1490 + /* "schema.pyx":1496 * property codeOrder: * def __get__(self): * return self.thisptr.getCodeOrder() # <<<<<<<<<<<<<< @@ -27513,7 +27685,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_9codeOrder___get__ * self.thisptr.setCodeOrder(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1490; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getCodeOrder()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1496; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -27542,7 +27714,7 @@ static int __pyx_pw_6schema_25_StructNode_MemberBuilder_9codeOrder_3__set__(PyOb return __pyx_r; } -/* "schema.pyx":1491 +/* "schema.pyx":1497 * def __get__(self): * return self.thisptr.getCodeOrder() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -27559,14 +27731,14 @@ static int __pyx_pf_6schema_25_StructNode_MemberBuilder_9codeOrder_2__set__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1492 + /* "schema.pyx":1498 * return self.thisptr.getCodeOrder() * def __set__(self, val): * self.thisptr.setCodeOrder(val) # <<<<<<<<<<<<<< * property name: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1492; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1498; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setCodeOrder(__pyx_t_1); __pyx_r = 0; @@ -27590,32 +27762,43 @@ static PyObject *__pyx_pw_6schema_25_StructNode_MemberBuilder_4name_1__get__(PyO return __pyx_r; } -/* "schema.pyx":1494 +/* "schema.pyx":1500 * self.thisptr.setCodeOrder(val) * property name: * def __get__(self): # <<<<<<<<<<<<<< - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): */ -static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_4name___get__(CYTHON_UNUSED struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self) { +static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_4name___get__(struct __pyx_obj_6schema__StructNode_MemberBuilder *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1495 + /* "schema.pyx":1501 * property name: * def __get__(self): - * return None # <<<<<<<<<<<<<< + * return self.thisptr.getName().cStr() # <<<<<<<<<<<<<< * def __set__(self, val): * pass */ __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_None); - __pyx_r = Py_None; + __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->thisptr.getName().cStr()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __Pyx_GOTREF(((PyObject *)__pyx_t_1)); + __pyx_r = ((PyObject *)__pyx_t_1); + __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("schema._StructNode_MemberBuilder.name.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); @@ -27633,9 +27816,9 @@ static int __pyx_pw_6schema_25_StructNode_MemberBuilder_4name_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":1496 +/* "schema.pyx":1502 * def __get__(self): - * return None + * return self.thisptr.getName().cStr() * def __set__(self, val): # <<<<<<<<<<<<<< * pass * property annotations: @@ -27662,7 +27845,7 @@ static PyObject *__pyx_pw_6schema_25_StructNode_MemberBuilder_11annotations_1__g return __pyx_r; } -/* "schema.pyx":1499 +/* "schema.pyx":1505 * pass * property annotations: * def __get__(self): # <<<<<<<<<<<<<< @@ -27680,7 +27863,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_11annotations___ge int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1500 + /* "schema.pyx":1506 * property annotations: * def __get__(self): * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.getAnnotations()) # <<<<<<<<<<<<<< @@ -27688,9 +27871,9 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_11annotations___ge * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.initAnnotations(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Member_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1500; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Member_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1506; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Builder *)((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1500; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Builder *)((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getAnnotations()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1506; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -27710,7 +27893,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_11annotations___ge return __pyx_r; } -/* "schema.pyx":1501 +/* "schema.pyx":1507 * def __get__(self): * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -27733,18 +27916,18 @@ static PyObject *__pyx_f_6schema_25_StructNode_MemberBuilder_initAnnotations(str if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initAnnotations); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_25_StructNode_MemberBuilder_1initAnnotations)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -27755,7 +27938,7 @@ static PyObject *__pyx_f_6schema_25_StructNode_MemberBuilder_initAnnotations(str __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1502 + /* "schema.pyx":1508 * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.initAnnotations(num)) # <<<<<<<<<<<<<< @@ -27763,9 +27946,9 @@ static PyObject *__pyx_f_6schema_25_StructNode_MemberBuilder_initAnnotations(str * cdef class _StructNode_FieldReader: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Member_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1502; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_Member_Annotation_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Builder *)((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1502; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_Member_Annotation_Builder *)((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initAnnotations(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -27797,7 +27980,7 @@ static PyObject *__pyx_pw_6schema_25_StructNode_MemberBuilder_1initAnnotations(P __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initAnnotations (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1501; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1507; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -27810,7 +27993,7 @@ static PyObject *__pyx_pw_6schema_25_StructNode_MemberBuilder_1initAnnotations(P return __pyx_r; } -/* "schema.pyx":1501 +/* "schema.pyx":1507 * def __get__(self): * return _List_StructNode_Member_Annotation_Builder().init(self.thisptr.getAnnotations()) * cpdef initAnnotations(self, uint num): # <<<<<<<<<<<<<< @@ -27827,7 +28010,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_initAnnotations(st int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initAnnotations", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1501; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__StructNode_MemberBuilder *)__pyx_v_self->__pyx_vtab)->initAnnotations(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -27845,7 +28028,7 @@ static PyObject *__pyx_pf_6schema_25_StructNode_MemberBuilder_initAnnotations(st return __pyx_r; } -/* "schema.pyx":1506 +/* "schema.pyx":1512 * cdef class _StructNode_FieldReader: * cdef C_StructNode.Field.Reader thisptr * cdef init(self, C_StructNode.Field.Reader other): # <<<<<<<<<<<<<< @@ -27858,7 +28041,7 @@ static PyObject *__pyx_f_6schema_23_StructNode_FieldReader_init(struct __pyx_obj __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1507 + /* "schema.pyx":1513 * cdef C_StructNode.Field.Reader thisptr * cdef init(self, C_StructNode.Field.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -27867,7 +28050,7 @@ static PyObject *__pyx_f_6schema_23_StructNode_FieldReader_init(struct __pyx_obj */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1508 + /* "schema.pyx":1514 * cdef init(self, C_StructNode.Field.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -27897,7 +28080,7 @@ static PyObject *__pyx_pw_6schema_23_StructNode_FieldReader_12defaultValue_1__ge return __pyx_r; } -/* "schema.pyx":1511 +/* "schema.pyx":1517 * * property defaultValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -27915,7 +28098,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_FieldReader_12defaultValue___get int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1512 + /* "schema.pyx":1518 * property defaultValue: * def __get__(self): * return _ValueReader().init(self.thisptr.getDefaultValue()) # <<<<<<<<<<<<<< @@ -27923,9 +28106,9 @@ static PyObject *__pyx_pf_6schema_23_StructNode_FieldReader_12defaultValue___get * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1512; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1518; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1512; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1518; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -27956,7 +28139,7 @@ static PyObject *__pyx_pw_6schema_23_StructNode_FieldReader_4type_1__get__(PyObj return __pyx_r; } -/* "schema.pyx":1514 +/* "schema.pyx":1520 * return _ValueReader().init(self.thisptr.getDefaultValue()) * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -27974,7 +28157,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_FieldReader_4type___get__(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1515 + /* "schema.pyx":1521 * property type: * def __get__(self): * return _TypeReader().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -27982,9 +28165,9 @@ static PyObject *__pyx_pf_6schema_23_StructNode_FieldReader_4type___get__(struct * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1515; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1521; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1515; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), ((::capnp::schema::Type::Reader)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1521; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -28015,7 +28198,7 @@ static PyObject *__pyx_pw_6schema_23_StructNode_FieldReader_6offset_1__get__(PyO return __pyx_r; } -/* "schema.pyx":1517 +/* "schema.pyx":1523 * return _TypeReader().init(self.thisptr.getType()) * property offset: * def __get__(self): # <<<<<<<<<<<<<< @@ -28032,7 +28215,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_FieldReader_6offset___get__(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1518 + /* "schema.pyx":1524 * property offset: * def __get__(self): * return self.thisptr.getOffset() # <<<<<<<<<<<<<< @@ -28040,7 +28223,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_FieldReader_6offset___get__(stru * cdef class _StructNode_FieldBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1518; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1524; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -28058,7 +28241,7 @@ static PyObject *__pyx_pf_6schema_23_StructNode_FieldReader_6offset___get__(stru return __pyx_r; } -/* "schema.pyx":1522 +/* "schema.pyx":1528 * cdef class _StructNode_FieldBuilder: * cdef C_StructNode.Field.Builder thisptr * cdef init(self, C_StructNode.Field.Builder other): # <<<<<<<<<<<<<< @@ -28071,7 +28254,7 @@ static PyObject *__pyx_f_6schema_24_StructNode_FieldBuilder_init(struct __pyx_ob __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1523 + /* "schema.pyx":1529 * cdef C_StructNode.Field.Builder thisptr * cdef init(self, C_StructNode.Field.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -28080,7 +28263,7 @@ static PyObject *__pyx_f_6schema_24_StructNode_FieldBuilder_init(struct __pyx_ob */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1524 + /* "schema.pyx":1530 * cdef init(self, C_StructNode.Field.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -28110,7 +28293,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_FieldBuilder_12defaultValue_1__g return __pyx_r; } -/* "schema.pyx":1527 +/* "schema.pyx":1533 * * property defaultValue: * def __get__(self): # <<<<<<<<<<<<<< @@ -28128,7 +28311,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_FieldBuilder_12defaultValue___ge int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1528 + /* "schema.pyx":1534 * property defaultValue: * def __get__(self): * return _ValueBuilder().init(self.thisptr.getDefaultValue()) # <<<<<<<<<<<<<< @@ -28136,9 +28319,9 @@ static PyObject *__pyx_pf_6schema_24_StructNode_FieldBuilder_12defaultValue___ge * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1528; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1534; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1528; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getDefaultValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1534; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -28169,7 +28352,7 @@ static int __pyx_pw_6schema_24_StructNode_FieldBuilder_12defaultValue_3__set__(P return __pyx_r; } -/* "schema.pyx":1529 +/* "schema.pyx":1535 * def __get__(self): * return _ValueBuilder().init(self.thisptr.getDefaultValue()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -28198,7 +28381,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_FieldBuilder_4type_1__get__(PyOb return __pyx_r; } -/* "schema.pyx":1532 +/* "schema.pyx":1538 * pass * property type: * def __get__(self): # <<<<<<<<<<<<<< @@ -28216,7 +28399,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_FieldBuilder_4type___get__(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1533 + /* "schema.pyx":1539 * property type: * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) # <<<<<<<<<<<<<< @@ -28224,9 +28407,9 @@ static PyObject *__pyx_pf_6schema_24_StructNode_FieldBuilder_4type___get__(struc * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1533; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1539; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1533; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), ((::capnp::schema::Type::Builder)__pyx_v_self->thisptr.getType())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1539; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -28257,7 +28440,7 @@ static int __pyx_pw_6schema_24_StructNode_FieldBuilder_4type_3__set__(PyObject * return __pyx_r; } -/* "schema.pyx":1534 +/* "schema.pyx":1540 * def __get__(self): * return _TypeBuilder().init(self.thisptr.getType()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -28286,7 +28469,7 @@ static PyObject *__pyx_pw_6schema_24_StructNode_FieldBuilder_6offset_1__get__(Py return __pyx_r; } -/* "schema.pyx":1537 +/* "schema.pyx":1543 * pass * property offset: * def __get__(self): # <<<<<<<<<<<<<< @@ -28303,7 +28486,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_FieldBuilder_6offset___get__(str int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1538 + /* "schema.pyx":1544 * property offset: * def __get__(self): * return self.thisptr.getOffset() # <<<<<<<<<<<<<< @@ -28311,7 +28494,7 @@ static PyObject *__pyx_pf_6schema_24_StructNode_FieldBuilder_6offset___get__(str * self.thisptr.setOffset(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1538; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_self->thisptr.getOffset()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1544; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -28340,7 +28523,7 @@ static int __pyx_pw_6schema_24_StructNode_FieldBuilder_6offset_3__set__(PyObject return __pyx_r; } -/* "schema.pyx":1539 +/* "schema.pyx":1545 * def __get__(self): * return self.thisptr.getOffset() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -28357,14 +28540,14 @@ static int __pyx_pf_6schema_24_StructNode_FieldBuilder_6offset_2__set__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1540 + /* "schema.pyx":1546 * return self.thisptr.getOffset() * def __set__(self, val): * self.thisptr.setOffset(val) # <<<<<<<<<<<<<< * cdef class _StructNodeReader: * cdef C_StructNode.Reader thisptr */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1540; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1546; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setOffset(__pyx_t_1); __pyx_r = 0; @@ -28377,7 +28560,7 @@ static int __pyx_pf_6schema_24_StructNode_FieldBuilder_6offset_2__set__(struct _ return __pyx_r; } -/* "schema.pyx":1543 +/* "schema.pyx":1549 * cdef class _StructNodeReader: * cdef C_StructNode.Reader thisptr * cdef init(self, C_StructNode.Reader other): # <<<<<<<<<<<<<< @@ -28390,7 +28573,7 @@ static PyObject *__pyx_f_6schema_17_StructNodeReader_init(struct __pyx_obj_6sche __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1544 + /* "schema.pyx":1550 * cdef C_StructNode.Reader thisptr * cdef init(self, C_StructNode.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -28399,7 +28582,7 @@ static PyObject *__pyx_f_6schema_17_StructNodeReader_init(struct __pyx_obj_6sche */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1545 + /* "schema.pyx":1551 * cdef init(self, C_StructNode.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -28429,7 +28612,7 @@ static PyObject *__pyx_pw_6schema_17_StructNodeReader_19dataSectionWordSize_1__g return __pyx_r; } -/* "schema.pyx":1548 +/* "schema.pyx":1554 * * property dataSectionWordSize: * def __get__(self): # <<<<<<<<<<<<<< @@ -28446,7 +28629,7 @@ static PyObject *__pyx_pf_6schema_17_StructNodeReader_19dataSectionWordSize___ge int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1549 + /* "schema.pyx":1555 * property dataSectionWordSize: * def __get__(self): * return self.thisptr.getDataSectionWordSize() # <<<<<<<<<<<<<< @@ -28454,7 +28637,7 @@ static PyObject *__pyx_pf_6schema_17_StructNodeReader_19dataSectionWordSize___ge * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getDataSectionWordSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1549; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getDataSectionWordSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1555; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -28483,7 +28666,7 @@ static PyObject *__pyx_pw_6schema_17_StructNodeReader_7members_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1551 +/* "schema.pyx":1557 * return self.thisptr.getDataSectionWordSize() * property members: * def __get__(self): # <<<<<<<<<<<<<< @@ -28501,7 +28684,7 @@ static PyObject *__pyx_pf_6schema_17_StructNodeReader_7members___get__(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1552 + /* "schema.pyx":1558 * property members: * def __get__(self): * return _List_StructNode_StructNode_Member_Reader().init(self.thisptr.getMembers()) # <<<<<<<<<<<<<< @@ -28509,9 +28692,9 @@ static PyObject *__pyx_pf_6schema_17_StructNodeReader_7members___get__(struct __ * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_StructNode_Member_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_StructNode_Member_Reader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1558; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Reader *)((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1552; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Reader *)((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Reader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Reader *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1558; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -28542,7 +28725,7 @@ static PyObject *__pyx_pw_6schema_17_StructNodeReader_18pointerSectionSize_1__ge return __pyx_r; } -/* "schema.pyx":1554 +/* "schema.pyx":1560 * return _List_StructNode_StructNode_Member_Reader().init(self.thisptr.getMembers()) * property pointerSectionSize: * def __get__(self): # <<<<<<<<<<<<<< @@ -28559,7 +28742,7 @@ static PyObject *__pyx_pf_6schema_17_StructNodeReader_18pointerSectionSize___get int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1555 + /* "schema.pyx":1561 * property pointerSectionSize: * def __get__(self): * return self.thisptr.getPointerSectionSize() # <<<<<<<<<<<<<< @@ -28567,7 +28750,7 @@ static PyObject *__pyx_pf_6schema_17_StructNodeReader_18pointerSectionSize___get * cdef class _StructNodeBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getPointerSectionSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1555; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getPointerSectionSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1561; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -28585,7 +28768,7 @@ static PyObject *__pyx_pf_6schema_17_StructNodeReader_18pointerSectionSize___get return __pyx_r; } -/* "schema.pyx":1559 +/* "schema.pyx":1565 * cdef class _StructNodeBuilder: * cdef C_StructNode.Builder thisptr * cdef init(self, C_StructNode.Builder other): # <<<<<<<<<<<<<< @@ -28598,7 +28781,7 @@ static PyObject *__pyx_f_6schema_18_StructNodeBuilder_init(struct __pyx_obj_6sch __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1560 + /* "schema.pyx":1566 * cdef C_StructNode.Builder thisptr * cdef init(self, C_StructNode.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -28607,7 +28790,7 @@ static PyObject *__pyx_f_6schema_18_StructNodeBuilder_init(struct __pyx_obj_6sch */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1561 + /* "schema.pyx":1567 * cdef init(self, C_StructNode.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -28637,7 +28820,7 @@ static PyObject *__pyx_pw_6schema_18_StructNodeBuilder_19dataSectionWordSize_1__ return __pyx_r; } -/* "schema.pyx":1564 +/* "schema.pyx":1570 * * property dataSectionWordSize: * def __get__(self): # <<<<<<<<<<<<<< @@ -28654,7 +28837,7 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_19dataSectionWordSize___g int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1565 + /* "schema.pyx":1571 * property dataSectionWordSize: * def __get__(self): * return self.thisptr.getDataSectionWordSize() # <<<<<<<<<<<<<< @@ -28662,7 +28845,7 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_19dataSectionWordSize___g * self.thisptr.setDataSectionWordSize(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getDataSectionWordSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1565; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getDataSectionWordSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -28691,7 +28874,7 @@ static int __pyx_pw_6schema_18_StructNodeBuilder_19dataSectionWordSize_3__set__( return __pyx_r; } -/* "schema.pyx":1566 +/* "schema.pyx":1572 * def __get__(self): * return self.thisptr.getDataSectionWordSize() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -28708,14 +28891,14 @@ static int __pyx_pf_6schema_18_StructNodeBuilder_19dataSectionWordSize_2__set__( int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1567 + /* "schema.pyx":1573 * return self.thisptr.getDataSectionWordSize() * def __set__(self, val): * self.thisptr.setDataSectionWordSize(val) # <<<<<<<<<<<<<< * property members: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1573; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setDataSectionWordSize(__pyx_t_1); __pyx_r = 0; @@ -28739,7 +28922,7 @@ static PyObject *__pyx_pw_6schema_18_StructNodeBuilder_7members_1__get__(PyObjec return __pyx_r; } -/* "schema.pyx":1569 +/* "schema.pyx":1575 * self.thisptr.setDataSectionWordSize(val) * property members: * def __get__(self): # <<<<<<<<<<<<<< @@ -28757,7 +28940,7 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_7members___get__(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1570 + /* "schema.pyx":1576 * property members: * def __get__(self): * return _List_StructNode_StructNode_Member_Builder().init(self.thisptr.getMembers()) # <<<<<<<<<<<<<< @@ -28765,9 +28948,9 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_7members___get__(struct _ * return _List_StructNode_StructNode_Member_Builder().init(self.thisptr.initMembers(num)) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1570; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1576; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1570; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.getMembers()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1576; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -28787,7 +28970,7 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_7members___get__(struct _ return __pyx_r; } -/* "schema.pyx":1571 +/* "schema.pyx":1577 * def __get__(self): * return _List_StructNode_StructNode_Member_Builder().init(self.thisptr.getMembers()) * cpdef initMembers(self, uint num): # <<<<<<<<<<<<<< @@ -28810,18 +28993,18 @@ static PyObject *__pyx_f_6schema_18_StructNodeBuilder_initMembers(struct __pyx_o if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initMembers); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initMembers); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_18_StructNodeBuilder_1initMembers)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyLong_FromUnsignedLong(__pyx_v_num); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_2; @@ -28832,7 +29015,7 @@ static PyObject *__pyx_f_6schema_18_StructNodeBuilder_initMembers(struct __pyx_o __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1572 + /* "schema.pyx":1578 * return _List_StructNode_StructNode_Member_Builder().init(self.thisptr.getMembers()) * cpdef initMembers(self, uint num): * return _List_StructNode_StructNode_Member_Builder().init(self.thisptr.initMembers(num)) # <<<<<<<<<<<<<< @@ -28840,9 +29023,9 @@ static PyObject *__pyx_f_6schema_18_StructNodeBuilder_initMembers(struct __pyx_o * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1572; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__List_StructNode_StructNode_Member_Builder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1578; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initMembers(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1572; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__List_StructNode_StructNode_Member_Builder *)((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *)__pyx_t_1), __pyx_v_self->thisptr.initMembers(__pyx_v_num)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1578; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -28874,7 +29057,7 @@ static PyObject *__pyx_pw_6schema_18_StructNodeBuilder_1initMembers(PyObject *__ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("initMembers (wrapper)", 0); assert(__pyx_arg_num); { - __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_num = __Pyx_PyInt_AsUnsignedInt(__pyx_arg_num); if (unlikely((__pyx_v_num == (unsigned int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L3_error:; @@ -28887,7 +29070,7 @@ static PyObject *__pyx_pw_6schema_18_StructNodeBuilder_1initMembers(PyObject *__ return __pyx_r; } -/* "schema.pyx":1571 +/* "schema.pyx":1577 * def __get__(self): * return _List_StructNode_StructNode_Member_Builder().init(self.thisptr.getMembers()) * cpdef initMembers(self, uint num): # <<<<<<<<<<<<<< @@ -28904,7 +29087,7 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_initMembers(struct __pyx_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initMembers", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)__pyx_v_self->__pyx_vtab)->initMembers(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)__pyx_v_self->__pyx_vtab)->initMembers(__pyx_v_self, __pyx_v_num, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -28933,7 +29116,7 @@ static PyObject *__pyx_pw_6schema_18_StructNodeBuilder_18pointerSectionSize_1__g return __pyx_r; } -/* "schema.pyx":1574 +/* "schema.pyx":1580 * return _List_StructNode_StructNode_Member_Builder().init(self.thisptr.initMembers(num)) * property pointerSectionSize: * def __get__(self): # <<<<<<<<<<<<<< @@ -28950,7 +29133,7 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_18pointerSectionSize___ge int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1575 + /* "schema.pyx":1581 * property pointerSectionSize: * def __get__(self): * return self.thisptr.getPointerSectionSize() # <<<<<<<<<<<<<< @@ -28958,7 +29141,7 @@ static PyObject *__pyx_pf_6schema_18_StructNodeBuilder_18pointerSectionSize___ge * self.thisptr.setPointerSectionSize(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getPointerSectionSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1575; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint16_t(__pyx_v_self->thisptr.getPointerSectionSize()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1581; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -28987,7 +29170,7 @@ static int __pyx_pw_6schema_18_StructNodeBuilder_18pointerSectionSize_3__set__(P return __pyx_r; } -/* "schema.pyx":1576 +/* "schema.pyx":1582 * def __get__(self): * return self.thisptr.getPointerSectionSize() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -29004,14 +29187,14 @@ static int __pyx_pf_6schema_18_StructNodeBuilder_18pointerSectionSize_2__set__(s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1577 + /* "schema.pyx":1583 * return self.thisptr.getPointerSectionSize() * def __set__(self, val): * self.thisptr.setPointerSectionSize(val) # <<<<<<<<<<<<<< * * cdef class _AnnotationReader: */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint16_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint16_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1583; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setPointerSectionSize(__pyx_t_1); __pyx_r = 0; @@ -29024,7 +29207,7 @@ static int __pyx_pf_6schema_18_StructNodeBuilder_18pointerSectionSize_2__set__(s return __pyx_r; } -/* "schema.pyx":1581 +/* "schema.pyx":1587 * cdef class _AnnotationReader: * cdef C_Annotation.Reader thisptr * cdef init(self, C_Annotation.Reader other): # <<<<<<<<<<<<<< @@ -29037,7 +29220,7 @@ static PyObject *__pyx_f_6schema_17_AnnotationReader_init(struct __pyx_obj_6sche __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1582 + /* "schema.pyx":1588 * cdef C_Annotation.Reader thisptr * cdef init(self, C_Annotation.Reader other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -29046,7 +29229,7 @@ static PyObject *__pyx_f_6schema_17_AnnotationReader_init(struct __pyx_obj_6sche */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1583 + /* "schema.pyx":1589 * cdef init(self, C_Annotation.Reader other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -29076,7 +29259,7 @@ static PyObject *__pyx_pw_6schema_17_AnnotationReader_2id_1__get__(PyObject *__p return __pyx_r; } -/* "schema.pyx":1586 +/* "schema.pyx":1592 * * property id: * def __get__(self): # <<<<<<<<<<<<<< @@ -29093,7 +29276,7 @@ static PyObject *__pyx_pf_6schema_17_AnnotationReader_2id___get__(struct __pyx_o int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1587 + /* "schema.pyx":1593 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -29101,7 +29284,7 @@ static PyObject *__pyx_pf_6schema_17_AnnotationReader_2id___get__(struct __pyx_o * def __get__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1587; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -29130,7 +29313,7 @@ static PyObject *__pyx_pw_6schema_17_AnnotationReader_5value_1__get__(PyObject * return __pyx_r; } -/* "schema.pyx":1589 +/* "schema.pyx":1595 * return self.thisptr.getId() * property value: * def __get__(self): # <<<<<<<<<<<<<< @@ -29148,7 +29331,7 @@ static PyObject *__pyx_pf_6schema_17_AnnotationReader_5value___get__(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1590 + /* "schema.pyx":1596 * property value: * def __get__(self): * return _ValueReader().init(self.thisptr.getValue()) # <<<<<<<<<<<<<< @@ -29156,9 +29339,9 @@ static PyObject *__pyx_pf_6schema_17_AnnotationReader_5value___get__(struct __py * cdef class _AnnotationBuilder: */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1590; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1596; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1590; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), ((::capnp::schema::Value::Reader)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1596; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -29178,7 +29361,7 @@ static PyObject *__pyx_pf_6schema_17_AnnotationReader_5value___get__(struct __py return __pyx_r; } -/* "schema.pyx":1594 +/* "schema.pyx":1600 * cdef class _AnnotationBuilder: * cdef C_Annotation.Builder thisptr * cdef init(self, C_Annotation.Builder other): # <<<<<<<<<<<<<< @@ -29191,7 +29374,7 @@ static PyObject *__pyx_f_6schema_18_AnnotationBuilder_init(struct __pyx_obj_6sch __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("init", 0); - /* "schema.pyx":1595 + /* "schema.pyx":1601 * cdef C_Annotation.Builder thisptr * cdef init(self, C_Annotation.Builder other): * self.thisptr = other # <<<<<<<<<<<<<< @@ -29200,7 +29383,7 @@ static PyObject *__pyx_f_6schema_18_AnnotationBuilder_init(struct __pyx_obj_6sch */ __pyx_v_self->thisptr = __pyx_v_other; - /* "schema.pyx":1596 + /* "schema.pyx":1602 * cdef init(self, C_Annotation.Builder other): * self.thisptr = other * return self # <<<<<<<<<<<<<< @@ -29230,7 +29413,7 @@ static PyObject *__pyx_pw_6schema_18_AnnotationBuilder_2id_1__get__(PyObject *__ return __pyx_r; } -/* "schema.pyx":1599 +/* "schema.pyx":1605 * * property id: * def __get__(self): # <<<<<<<<<<<<<< @@ -29247,7 +29430,7 @@ static PyObject *__pyx_pf_6schema_18_AnnotationBuilder_2id___get__(struct __pyx_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1600 + /* "schema.pyx":1606 * property id: * def __get__(self): * return self.thisptr.getId() # <<<<<<<<<<<<<< @@ -29255,7 +29438,7 @@ static PyObject *__pyx_pf_6schema_18_AnnotationBuilder_2id___get__(struct __pyx_ * self.thisptr.setId(val) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1600; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_to_py_uint64_t(__pyx_v_self->thisptr.getId()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1606; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -29284,7 +29467,7 @@ static int __pyx_pw_6schema_18_AnnotationBuilder_2id_3__set__(PyObject *__pyx_v_ return __pyx_r; } -/* "schema.pyx":1601 +/* "schema.pyx":1607 * def __get__(self): * return self.thisptr.getId() * def __set__(self, val): # <<<<<<<<<<<<<< @@ -29301,14 +29484,14 @@ static int __pyx_pf_6schema_18_AnnotationBuilder_2id_2__set__(struct __pyx_obj_6 int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__set__", 0); - /* "schema.pyx":1602 + /* "schema.pyx":1608 * return self.thisptr.getId() * def __set__(self, val): * self.thisptr.setId(val) # <<<<<<<<<<<<<< * property value: * def __get__(self): */ - __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1602; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyInt_from_py_uint64_t(__pyx_v_val); if (unlikely((__pyx_t_1 == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1608; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->thisptr.setId(__pyx_t_1); __pyx_r = 0; @@ -29332,7 +29515,7 @@ static PyObject *__pyx_pw_6schema_18_AnnotationBuilder_5value_1__get__(PyObject return __pyx_r; } -/* "schema.pyx":1604 +/* "schema.pyx":1610 * self.thisptr.setId(val) * property value: * def __get__(self): # <<<<<<<<<<<<<< @@ -29350,7 +29533,7 @@ static PyObject *__pyx_pf_6schema_18_AnnotationBuilder_5value___get__(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__", 0); - /* "schema.pyx":1605 + /* "schema.pyx":1611 * property value: * def __get__(self): * return _ValueBuilder().init(self.thisptr.getValue()) # <<<<<<<<<<<<<< @@ -29358,9 +29541,9 @@ static PyObject *__pyx_pf_6schema_18_AnnotationBuilder_5value___get__(struct __p * pass */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1605; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1611; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1605; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), ((::capnp::schema::Value::Builder)__pyx_v_self->thisptr.getValue())); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1611; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -29391,7 +29574,7 @@ static int __pyx_pw_6schema_18_AnnotationBuilder_5value_3__set__(PyObject *__pyx return __pyx_r; } -/* "schema.pyx":1606 +/* "schema.pyx":1612 * def __get__(self): * return _ValueBuilder().init(self.thisptr.getValue()) * def __set__(self, val): # <<<<<<<<<<<<<< @@ -29418,7 +29601,7 @@ static void __pyx_pw_6schema_14MessageBuilder_1__dealloc__(PyObject *__pyx_v_sel __Pyx_RefNannyFinishContext(); } -/* "schema.pyx":1611 +/* "schema.pyx":1617 * cdef class MessageBuilder: * cdef capnp.MessageBuilder * thisptr * def __dealloc__(self): # <<<<<<<<<<<<<< @@ -29430,7 +29613,7 @@ static void __pyx_pf_6schema_14MessageBuilder___dealloc__(CYTHON_UNUSED struct _ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__dealloc__", 0); - /* "schema.pyx":1612 + /* "schema.pyx":1618 * cdef capnp.MessageBuilder * thisptr * def __dealloc__(self): * del self.thisptr # <<<<<<<<<<<<<< @@ -29442,7 +29625,7 @@ static void __pyx_pf_6schema_14MessageBuilder___dealloc__(CYTHON_UNUSED struct _ __Pyx_RefNannyFinishContext(); } -/* "schema.pyx":1613 +/* "schema.pyx":1619 * def __dealloc__(self): * del self.thisptr * cpdef getRootCodeGeneratorRequest(self): # <<<<<<<<<<<<<< @@ -29464,11 +29647,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootCodeGeneratorRequest(st if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_30); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1613; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_30); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1619; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_3getRootCodeGeneratorRequest)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1613; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1619; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -29478,7 +29661,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootCodeGeneratorRequest(st __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1614 + /* "schema.pyx":1620 * del self.thisptr * cpdef getRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestBuilder().init(self.thisptr.getRootCodeGeneratorRequest()) # <<<<<<<<<<<<<< @@ -29486,9 +29669,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootCodeGeneratorRequest(st * return _CodeGeneratorRequestBuilder().init(self.thisptr.initRootCodeGeneratorRequest()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1614; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1620; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::CodeGeneratorRequest>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1614; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::CodeGeneratorRequest>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1620; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -29519,7 +29702,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_3getRootCodeGeneratorRequest( return __pyx_r; } -/* "schema.pyx":1613 +/* "schema.pyx":1619 * def __dealloc__(self): * del self.thisptr * cpdef getRootCodeGeneratorRequest(self): # <<<<<<<<<<<<<< @@ -29536,7 +29719,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_2getRootCodeGeneratorRequest( int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootCodeGeneratorRequest", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootCodeGeneratorRequest(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1613; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootCodeGeneratorRequest(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1619; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -29554,7 +29737,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_2getRootCodeGeneratorRequest( return __pyx_r; } -/* "schema.pyx":1615 +/* "schema.pyx":1621 * cpdef getRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestBuilder().init(self.thisptr.getRootCodeGeneratorRequest()) * cpdef initRootCodeGeneratorRequest(self): # <<<<<<<<<<<<<< @@ -29576,11 +29759,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootCodeGeneratorRequest(s if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_31); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_31); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1621; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_5initRootCodeGeneratorRequest)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1621; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -29590,7 +29773,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootCodeGeneratorRequest(s __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1616 + /* "schema.pyx":1622 * return _CodeGeneratorRequestBuilder().init(self.thisptr.getRootCodeGeneratorRequest()) * cpdef initRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestBuilder().init(self.thisptr.initRootCodeGeneratorRequest()) # <<<<<<<<<<<<<< @@ -29598,9 +29781,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootCodeGeneratorRequest(s * return _InterfaceNodeBuilder().init(self.thisptr.getRootInterfaceNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1616; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1622; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::CodeGeneratorRequest>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1616; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestBuilder *)((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::CodeGeneratorRequest>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1622; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -29631,7 +29814,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_5initRootCodeGeneratorRequest return __pyx_r; } -/* "schema.pyx":1615 +/* "schema.pyx":1621 * cpdef getRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestBuilder().init(self.thisptr.getRootCodeGeneratorRequest()) * cpdef initRootCodeGeneratorRequest(self): # <<<<<<<<<<<<<< @@ -29648,7 +29831,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_4initRootCodeGeneratorRequest int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootCodeGeneratorRequest", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootCodeGeneratorRequest(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootCodeGeneratorRequest(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1621; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -29666,7 +29849,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_4initRootCodeGeneratorRequest return __pyx_r; } -/* "schema.pyx":1617 +/* "schema.pyx":1623 * cpdef initRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestBuilder().init(self.thisptr.initRootCodeGeneratorRequest()) * cpdef getRootInterfaceNode(self): # <<<<<<<<<<<<<< @@ -29688,11 +29871,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootInterfaceNode(struct __ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_32); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1617; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_32); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1623; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_7getRootInterfaceNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1617; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1623; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -29702,7 +29885,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootInterfaceNode(struct __ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1618 + /* "schema.pyx":1624 * return _CodeGeneratorRequestBuilder().init(self.thisptr.initRootCodeGeneratorRequest()) * cpdef getRootInterfaceNode(self): * return _InterfaceNodeBuilder().init(self.thisptr.getRootInterfaceNode()) # <<<<<<<<<<<<<< @@ -29710,9 +29893,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootInterfaceNode(struct __ * return _InterfaceNodeBuilder().init(self.thisptr.initRootInterfaceNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1618; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1624; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::InterfaceNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1618; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::InterfaceNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1624; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -29743,7 +29926,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_7getRootInterfaceNode(PyObjec return __pyx_r; } -/* "schema.pyx":1617 +/* "schema.pyx":1623 * cpdef initRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestBuilder().init(self.thisptr.initRootCodeGeneratorRequest()) * cpdef getRootInterfaceNode(self): # <<<<<<<<<<<<<< @@ -29760,7 +29943,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_6getRootInterfaceNode(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootInterfaceNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootInterfaceNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1617; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootInterfaceNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1623; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -29778,7 +29961,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_6getRootInterfaceNode(struct return __pyx_r; } -/* "schema.pyx":1619 +/* "schema.pyx":1625 * cpdef getRootInterfaceNode(self): * return _InterfaceNodeBuilder().init(self.thisptr.getRootInterfaceNode()) * cpdef initRootInterfaceNode(self): # <<<<<<<<<<<<<< @@ -29800,11 +29983,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootInterfaceNode(struct _ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_33); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1619; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_33); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1625; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_9initRootInterfaceNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1619; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1625; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -29814,7 +29997,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootInterfaceNode(struct _ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1620 + /* "schema.pyx":1626 * return _InterfaceNodeBuilder().init(self.thisptr.getRootInterfaceNode()) * cpdef initRootInterfaceNode(self): * return _InterfaceNodeBuilder().init(self.thisptr.initRootInterfaceNode()) # <<<<<<<<<<<<<< @@ -29822,9 +30005,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootInterfaceNode(struct _ * return _ValueBuilder().init(self.thisptr.getRootValue()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1620; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1626; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::InterfaceNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1620; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeBuilder *)((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::InterfaceNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1626; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -29855,7 +30038,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_9initRootInterfaceNode(PyObje return __pyx_r; } -/* "schema.pyx":1619 +/* "schema.pyx":1625 * cpdef getRootInterfaceNode(self): * return _InterfaceNodeBuilder().init(self.thisptr.getRootInterfaceNode()) * cpdef initRootInterfaceNode(self): # <<<<<<<<<<<<<< @@ -29872,7 +30055,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_8initRootInterfaceNode(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootInterfaceNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootInterfaceNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1619; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootInterfaceNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1625; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -29890,7 +30073,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_8initRootInterfaceNode(struct return __pyx_r; } -/* "schema.pyx":1621 +/* "schema.pyx":1627 * cpdef initRootInterfaceNode(self): * return _InterfaceNodeBuilder().init(self.thisptr.initRootInterfaceNode()) * cpdef getRootValue(self): # <<<<<<<<<<<<<< @@ -29912,11 +30095,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootValue(struct __pyx_obj_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootValue); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1621; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootValue); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1627; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_11getRootValue)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1621; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1627; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -29926,7 +30109,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootValue(struct __pyx_obj_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1622 + /* "schema.pyx":1628 * return _InterfaceNodeBuilder().init(self.thisptr.initRootInterfaceNode()) * cpdef getRootValue(self): * return _ValueBuilder().init(self.thisptr.getRootValue()) # <<<<<<<<<<<<<< @@ -29934,9 +30117,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootValue(struct __pyx_obj_ * return _ValueBuilder().init(self.thisptr.initRootValue()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1622; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1628; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Value>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1622; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Value>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1628; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -29967,7 +30150,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_11getRootValue(PyObject *__py return __pyx_r; } -/* "schema.pyx":1621 +/* "schema.pyx":1627 * cpdef initRootInterfaceNode(self): * return _InterfaceNodeBuilder().init(self.thisptr.initRootInterfaceNode()) * cpdef getRootValue(self): # <<<<<<<<<<<<<< @@ -29984,7 +30167,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_10getRootValue(struct __pyx_o int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootValue", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootValue(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1621; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootValue(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1627; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30002,7 +30185,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_10getRootValue(struct __pyx_o return __pyx_r; } -/* "schema.pyx":1623 +/* "schema.pyx":1629 * cpdef getRootValue(self): * return _ValueBuilder().init(self.thisptr.getRootValue()) * cpdef initRootValue(self): # <<<<<<<<<<<<<< @@ -30024,11 +30207,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootValue(struct __pyx_obj if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootValue); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1623; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootValue); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_13initRootValue)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1623; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30038,7 +30221,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootValue(struct __pyx_obj __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1624 + /* "schema.pyx":1630 * return _ValueBuilder().init(self.thisptr.getRootValue()) * cpdef initRootValue(self): * return _ValueBuilder().init(self.thisptr.initRootValue()) # <<<<<<<<<<<<<< @@ -30046,9 +30229,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootValue(struct __pyx_obj * return _ConstNodeBuilder().init(self.thisptr.getRootConstNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1624; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1630; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Value>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1624; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueBuilder *)((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Value>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1630; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30079,7 +30262,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_13initRootValue(PyObject *__p return __pyx_r; } -/* "schema.pyx":1623 +/* "schema.pyx":1629 * cpdef getRootValue(self): * return _ValueBuilder().init(self.thisptr.getRootValue()) * cpdef initRootValue(self): # <<<<<<<<<<<<<< @@ -30096,7 +30279,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_12initRootValue(struct __pyx_ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootValue", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootValue(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1623; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootValue(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30114,7 +30297,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_12initRootValue(struct __pyx_ return __pyx_r; } -/* "schema.pyx":1625 +/* "schema.pyx":1631 * cpdef initRootValue(self): * return _ValueBuilder().init(self.thisptr.initRootValue()) * cpdef getRootConstNode(self): # <<<<<<<<<<<<<< @@ -30136,11 +30319,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootConstNode(struct __pyx_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootConstNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1625; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootConstNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_15getRootConstNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1625; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30150,7 +30333,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootConstNode(struct __pyx_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1626 + /* "schema.pyx":1632 * return _ValueBuilder().init(self.thisptr.initRootValue()) * cpdef getRootConstNode(self): * return _ConstNodeBuilder().init(self.thisptr.getRootConstNode()) # <<<<<<<<<<<<<< @@ -30158,9 +30341,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootConstNode(struct __pyx_ * return _ConstNodeBuilder().init(self.thisptr.initRootConstNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1626; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1632; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeBuilder *)((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::ConstNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1626; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeBuilder *)((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::ConstNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1632; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30191,7 +30374,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_15getRootConstNode(PyObject * return __pyx_r; } -/* "schema.pyx":1625 +/* "schema.pyx":1631 * cpdef initRootValue(self): * return _ValueBuilder().init(self.thisptr.initRootValue()) * cpdef getRootConstNode(self): # <<<<<<<<<<<<<< @@ -30208,7 +30391,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_14getRootConstNode(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootConstNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootConstNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1625; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootConstNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30226,7 +30409,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_14getRootConstNode(struct __p return __pyx_r; } -/* "schema.pyx":1627 +/* "schema.pyx":1633 * cpdef getRootConstNode(self): * return _ConstNodeBuilder().init(self.thisptr.getRootConstNode()) * cpdef initRootConstNode(self): # <<<<<<<<<<<<<< @@ -30248,11 +30431,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootConstNode(struct __pyx if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootConstNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1627; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootConstNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1633; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_17initRootConstNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1627; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1633; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30262,7 +30445,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootConstNode(struct __pyx __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1628 + /* "schema.pyx":1634 * return _ConstNodeBuilder().init(self.thisptr.getRootConstNode()) * cpdef initRootConstNode(self): * return _ConstNodeBuilder().init(self.thisptr.initRootConstNode()) # <<<<<<<<<<<<<< @@ -30270,9 +30453,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootConstNode(struct __pyx * return _TypeBuilder().init(self.thisptr.getRootType()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1628; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1634; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeBuilder *)((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::ConstNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1628; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeBuilder *)((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::ConstNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1634; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30303,7 +30486,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_17initRootConstNode(PyObject return __pyx_r; } -/* "schema.pyx":1627 +/* "schema.pyx":1633 * cpdef getRootConstNode(self): * return _ConstNodeBuilder().init(self.thisptr.getRootConstNode()) * cpdef initRootConstNode(self): # <<<<<<<<<<<<<< @@ -30320,7 +30503,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_16initRootConstNode(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootConstNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootConstNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1627; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootConstNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1633; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30338,7 +30521,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_16initRootConstNode(struct __ return __pyx_r; } -/* "schema.pyx":1629 +/* "schema.pyx":1635 * cpdef initRootConstNode(self): * return _ConstNodeBuilder().init(self.thisptr.initRootConstNode()) * cpdef getRootType(self): # <<<<<<<<<<<<<< @@ -30360,11 +30543,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootType(struct __pyx_obj_6 if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1635; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_19getRootType)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1635; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30374,7 +30557,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootType(struct __pyx_obj_6 __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1630 + /* "schema.pyx":1636 * return _ConstNodeBuilder().init(self.thisptr.initRootConstNode()) * cpdef getRootType(self): * return _TypeBuilder().init(self.thisptr.getRootType()) # <<<<<<<<<<<<<< @@ -30382,9 +30565,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootType(struct __pyx_obj_6 * return _TypeBuilder().init(self.thisptr.initRootType()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1630; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1636; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Type>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1630; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Type>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1636; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30415,7 +30598,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_19getRootType(PyObject *__pyx return __pyx_r; } -/* "schema.pyx":1629 +/* "schema.pyx":1635 * cpdef initRootConstNode(self): * return _ConstNodeBuilder().init(self.thisptr.initRootConstNode()) * cpdef getRootType(self): # <<<<<<<<<<<<<< @@ -30432,7 +30615,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_18getRootType(struct __pyx_ob int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootType", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootType(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootType(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1635; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30450,7 +30633,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_18getRootType(struct __pyx_ob return __pyx_r; } -/* "schema.pyx":1631 +/* "schema.pyx":1637 * cpdef getRootType(self): * return _TypeBuilder().init(self.thisptr.getRootType()) * cpdef initRootType(self): # <<<<<<<<<<<<<< @@ -30472,11 +30655,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootType(struct __pyx_obj_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1637; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_21initRootType)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1637; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30486,7 +30669,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootType(struct __pyx_obj_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1632 + /* "schema.pyx":1638 * return _TypeBuilder().init(self.thisptr.getRootType()) * cpdef initRootType(self): * return _TypeBuilder().init(self.thisptr.initRootType()) # <<<<<<<<<<<<<< @@ -30494,9 +30677,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootType(struct __pyx_obj_ * return _FileNodeBuilder().init(self.thisptr.getRootFileNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1632; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1638; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Type>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1632; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeBuilder *)((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Type>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1638; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30527,7 +30710,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_21initRootType(PyObject *__py return __pyx_r; } -/* "schema.pyx":1631 +/* "schema.pyx":1637 * cpdef getRootType(self): * return _TypeBuilder().init(self.thisptr.getRootType()) * cpdef initRootType(self): # <<<<<<<<<<<<<< @@ -30544,7 +30727,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_20initRootType(struct __pyx_o int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootType", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootType(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootType(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1637; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30562,7 +30745,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_20initRootType(struct __pyx_o return __pyx_r; } -/* "schema.pyx":1633 +/* "schema.pyx":1639 * cpdef initRootType(self): * return _TypeBuilder().init(self.thisptr.initRootType()) * cpdef getRootFileNode(self): # <<<<<<<<<<<<<< @@ -30584,11 +30767,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootFileNode(struct __pyx_o if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootFileNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1633; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootFileNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1639; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_23getRootFileNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1633; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1639; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30598,7 +30781,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootFileNode(struct __pyx_o __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1634 + /* "schema.pyx":1640 * return _TypeBuilder().init(self.thisptr.initRootType()) * cpdef getRootFileNode(self): * return _FileNodeBuilder().init(self.thisptr.getRootFileNode()) # <<<<<<<<<<<<<< @@ -30606,9 +30789,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootFileNode(struct __pyx_o * return _FileNodeBuilder().init(self.thisptr.initRootFileNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1634; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1640; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::FileNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1634; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::FileNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1640; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30639,7 +30822,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_23getRootFileNode(PyObject *_ return __pyx_r; } -/* "schema.pyx":1633 +/* "schema.pyx":1639 * cpdef initRootType(self): * return _TypeBuilder().init(self.thisptr.initRootType()) * cpdef getRootFileNode(self): # <<<<<<<<<<<<<< @@ -30656,7 +30839,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_22getRootFileNode(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootFileNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootFileNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1633; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootFileNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1639; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30674,7 +30857,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_22getRootFileNode(struct __py return __pyx_r; } -/* "schema.pyx":1635 +/* "schema.pyx":1641 * cpdef getRootFileNode(self): * return _FileNodeBuilder().init(self.thisptr.getRootFileNode()) * cpdef initRootFileNode(self): # <<<<<<<<<<<<<< @@ -30696,11 +30879,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootFileNode(struct __pyx_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootFileNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1635; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootFileNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1641; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_25initRootFileNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1635; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1641; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30710,7 +30893,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootFileNode(struct __pyx_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1636 + /* "schema.pyx":1642 * return _FileNodeBuilder().init(self.thisptr.getRootFileNode()) * cpdef initRootFileNode(self): * return _FileNodeBuilder().init(self.thisptr.initRootFileNode()) # <<<<<<<<<<<<<< @@ -30718,9 +30901,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootFileNode(struct __pyx_ * return _NodeBuilder().init(self.thisptr.getRootNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1636; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::FileNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1636; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeBuilder *)((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::FileNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30751,7 +30934,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_25initRootFileNode(PyObject * return __pyx_r; } -/* "schema.pyx":1635 +/* "schema.pyx":1641 * cpdef getRootFileNode(self): * return _FileNodeBuilder().init(self.thisptr.getRootFileNode()) * cpdef initRootFileNode(self): # <<<<<<<<<<<<<< @@ -30768,7 +30951,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_24initRootFileNode(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootFileNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootFileNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1635; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootFileNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1641; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30786,7 +30969,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_24initRootFileNode(struct __p return __pyx_r; } -/* "schema.pyx":1637 +/* "schema.pyx":1643 * cpdef initRootFileNode(self): * return _FileNodeBuilder().init(self.thisptr.initRootFileNode()) * cpdef getRootNode(self): # <<<<<<<<<<<<<< @@ -30808,11 +30991,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootNode(struct __pyx_obj_6 if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1637; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_27getRootNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1637; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30822,7 +31005,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootNode(struct __pyx_obj_6 __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1638 + /* "schema.pyx":1644 * return _FileNodeBuilder().init(self.thisptr.initRootFileNode()) * cpdef getRootNode(self): * return _NodeBuilder().init(self.thisptr.getRootNode()) # <<<<<<<<<<<<<< @@ -30830,9 +31013,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootNode(struct __pyx_obj_6 * return _NodeBuilder().init(self.thisptr.initRootNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1638; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1644; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Node>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1638; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Node>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1644; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30863,7 +31046,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_27getRootNode(PyObject *__pyx return __pyx_r; } -/* "schema.pyx":1637 +/* "schema.pyx":1643 * cpdef initRootFileNode(self): * return _FileNodeBuilder().init(self.thisptr.initRootFileNode()) * cpdef getRootNode(self): # <<<<<<<<<<<<<< @@ -30880,7 +31063,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_26getRootNode(struct __pyx_ob int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1637; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -30898,7 +31081,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_26getRootNode(struct __pyx_ob return __pyx_r; } -/* "schema.pyx":1639 +/* "schema.pyx":1645 * cpdef getRootNode(self): * return _NodeBuilder().init(self.thisptr.getRootNode()) * cpdef initRootNode(self): # <<<<<<<<<<<<<< @@ -30920,11 +31103,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootNode(struct __pyx_obj_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1639; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_29initRootNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1639; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -30934,7 +31117,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootNode(struct __pyx_obj_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1640 + /* "schema.pyx":1646 * return _NodeBuilder().init(self.thisptr.getRootNode()) * cpdef initRootNode(self): * return _NodeBuilder().init(self.thisptr.initRootNode()) # <<<<<<<<<<<<<< @@ -30942,9 +31125,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootNode(struct __pyx_obj_ * return _AnnotationNodeBuilder().init(self.thisptr.getRootAnnotationNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1640; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1646; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Node>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1640; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__NodeBuilder *)((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Node>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1646; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -30975,7 +31158,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_29initRootNode(PyObject *__py return __pyx_r; } -/* "schema.pyx":1639 +/* "schema.pyx":1645 * cpdef getRootNode(self): * return _NodeBuilder().init(self.thisptr.getRootNode()) * cpdef initRootNode(self): # <<<<<<<<<<<<<< @@ -30992,7 +31175,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_28initRootNode(struct __pyx_o int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1639; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31010,7 +31193,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_28initRootNode(struct __pyx_o return __pyx_r; } -/* "schema.pyx":1641 +/* "schema.pyx":1647 * cpdef initRootNode(self): * return _NodeBuilder().init(self.thisptr.initRootNode()) * cpdef getRootAnnotationNode(self): # <<<<<<<<<<<<<< @@ -31032,11 +31215,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootAnnotationNode(struct _ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_34); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1641; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_34); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1647; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_31getRootAnnotationNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1641; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1647; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31046,7 +31229,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootAnnotationNode(struct _ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1642 + /* "schema.pyx":1648 * return _NodeBuilder().init(self.thisptr.initRootNode()) * cpdef getRootAnnotationNode(self): * return _AnnotationNodeBuilder().init(self.thisptr.getRootAnnotationNode()) # <<<<<<<<<<<<<< @@ -31054,9 +31237,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootAnnotationNode(struct _ * return _AnnotationNodeBuilder().init(self.thisptr.initRootAnnotationNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1648; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder *)((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::AnnotationNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder *)((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::AnnotationNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1648; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31087,7 +31270,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_31getRootAnnotationNode(PyObj return __pyx_r; } -/* "schema.pyx":1641 +/* "schema.pyx":1647 * cpdef initRootNode(self): * return _NodeBuilder().init(self.thisptr.initRootNode()) * cpdef getRootAnnotationNode(self): # <<<<<<<<<<<<<< @@ -31104,7 +31287,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_30getRootAnnotationNode(struc int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootAnnotationNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootAnnotationNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1641; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootAnnotationNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1647; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31122,7 +31305,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_30getRootAnnotationNode(struc return __pyx_r; } -/* "schema.pyx":1643 +/* "schema.pyx":1649 * cpdef getRootAnnotationNode(self): * return _AnnotationNodeBuilder().init(self.thisptr.getRootAnnotationNode()) * cpdef initRootAnnotationNode(self): # <<<<<<<<<<<<<< @@ -31144,11 +31327,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootAnnotationNode(struct if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_35); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_35); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1649; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_33initRootAnnotationNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1649; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31158,7 +31341,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootAnnotationNode(struct __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1644 + /* "schema.pyx":1650 * return _AnnotationNodeBuilder().init(self.thisptr.getRootAnnotationNode()) * cpdef initRootAnnotationNode(self): * return _AnnotationNodeBuilder().init(self.thisptr.initRootAnnotationNode()) # <<<<<<<<<<<<<< @@ -31166,9 +31349,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootAnnotationNode(struct * return _EnumNodeBuilder().init(self.thisptr.getRootEnumNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1644; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1650; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder *)((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::AnnotationNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1644; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeBuilder *)((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::AnnotationNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1650; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31199,7 +31382,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_33initRootAnnotationNode(PyOb return __pyx_r; } -/* "schema.pyx":1643 +/* "schema.pyx":1649 * cpdef getRootAnnotationNode(self): * return _AnnotationNodeBuilder().init(self.thisptr.getRootAnnotationNode()) * cpdef initRootAnnotationNode(self): # <<<<<<<<<<<<<< @@ -31216,7 +31399,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_32initRootAnnotationNode(stru int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootAnnotationNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootAnnotationNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootAnnotationNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1649; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31234,7 +31417,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_32initRootAnnotationNode(stru return __pyx_r; } -/* "schema.pyx":1645 +/* "schema.pyx":1651 * cpdef initRootAnnotationNode(self): * return _AnnotationNodeBuilder().init(self.thisptr.initRootAnnotationNode()) * cpdef getRootEnumNode(self): # <<<<<<<<<<<<<< @@ -31256,11 +31439,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootEnumNode(struct __pyx_o if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootEnumNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootEnumNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1651; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_35getRootEnumNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1651; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31270,7 +31453,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootEnumNode(struct __pyx_o __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1646 + /* "schema.pyx":1652 * return _AnnotationNodeBuilder().init(self.thisptr.initRootAnnotationNode()) * cpdef getRootEnumNode(self): * return _EnumNodeBuilder().init(self.thisptr.getRootEnumNode()) # <<<<<<<<<<<<<< @@ -31278,9 +31461,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootEnumNode(struct __pyx_o * return _EnumNodeBuilder().init(self.thisptr.initRootEnumNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1646; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1652; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::EnumNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1646; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::EnumNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1652; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31311,7 +31494,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_35getRootEnumNode(PyObject *_ return __pyx_r; } -/* "schema.pyx":1645 +/* "schema.pyx":1651 * cpdef initRootAnnotationNode(self): * return _AnnotationNodeBuilder().init(self.thisptr.initRootAnnotationNode()) * cpdef getRootEnumNode(self): # <<<<<<<<<<<<<< @@ -31328,7 +31511,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_34getRootEnumNode(struct __py int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootEnumNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootEnumNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootEnumNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1651; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31346,7 +31529,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_34getRootEnumNode(struct __py return __pyx_r; } -/* "schema.pyx":1647 +/* "schema.pyx":1653 * cpdef getRootEnumNode(self): * return _EnumNodeBuilder().init(self.thisptr.getRootEnumNode()) * cpdef initRootEnumNode(self): # <<<<<<<<<<<<<< @@ -31368,11 +31551,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootEnumNode(struct __pyx_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootEnumNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1647; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootEnumNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1653; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_37initRootEnumNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1647; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1653; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31382,7 +31565,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootEnumNode(struct __pyx_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1648 + /* "schema.pyx":1654 * return _EnumNodeBuilder().init(self.thisptr.getRootEnumNode()) * cpdef initRootEnumNode(self): * return _EnumNodeBuilder().init(self.thisptr.initRootEnumNode()) # <<<<<<<<<<<<<< @@ -31390,9 +31573,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootEnumNode(struct __pyx_ * return _StructNodeBuilder().init(self.thisptr.getRootStructNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1648; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::EnumNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1648; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeBuilder *)((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::EnumNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31423,7 +31606,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_37initRootEnumNode(PyObject * return __pyx_r; } -/* "schema.pyx":1647 +/* "schema.pyx":1653 * cpdef getRootEnumNode(self): * return _EnumNodeBuilder().init(self.thisptr.getRootEnumNode()) * cpdef initRootEnumNode(self): # <<<<<<<<<<<<<< @@ -31440,7 +31623,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_36initRootEnumNode(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootEnumNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootEnumNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1647; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootEnumNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1653; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31458,7 +31641,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_36initRootEnumNode(struct __p return __pyx_r; } -/* "schema.pyx":1649 +/* "schema.pyx":1655 * cpdef initRootEnumNode(self): * return _EnumNodeBuilder().init(self.thisptr.initRootEnumNode()) * cpdef getRootStructNode(self): # <<<<<<<<<<<<<< @@ -31480,11 +31663,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootStructNode(struct __pyx if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootStructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1649; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootStructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_39getRootStructNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1649; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31494,7 +31677,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootStructNode(struct __pyx __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1650 + /* "schema.pyx":1656 * return _EnumNodeBuilder().init(self.thisptr.initRootEnumNode()) * cpdef getRootStructNode(self): * return _StructNodeBuilder().init(self.thisptr.getRootStructNode()) # <<<<<<<<<<<<<< @@ -31502,9 +31685,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootStructNode(struct __pyx * return _StructNodeBuilder().init(self.thisptr.initRootStructNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1650; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1656; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::StructNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1650; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::StructNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1656; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31535,7 +31718,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_39getRootStructNode(PyObject return __pyx_r; } -/* "schema.pyx":1649 +/* "schema.pyx":1655 * cpdef initRootEnumNode(self): * return _EnumNodeBuilder().init(self.thisptr.initRootEnumNode()) * cpdef getRootStructNode(self): # <<<<<<<<<<<<<< @@ -31552,7 +31735,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_38getRootStructNode(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootStructNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootStructNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1649; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootStructNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31570,7 +31753,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_38getRootStructNode(struct __ return __pyx_r; } -/* "schema.pyx":1651 +/* "schema.pyx":1657 * cpdef getRootStructNode(self): * return _StructNodeBuilder().init(self.thisptr.getRootStructNode()) * cpdef initRootStructNode(self): # <<<<<<<<<<<<<< @@ -31592,11 +31775,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootStructNode(struct __py if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootStructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1651; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootStructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1657; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_41initRootStructNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1651; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1657; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31606,7 +31789,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootStructNode(struct __py __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1652 + /* "schema.pyx":1658 * return _StructNodeBuilder().init(self.thisptr.getRootStructNode()) * cpdef initRootStructNode(self): * return _StructNodeBuilder().init(self.thisptr.initRootStructNode()) # <<<<<<<<<<<<<< @@ -31614,9 +31797,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootStructNode(struct __py * return _AnnotationBuilder().init(self.thisptr.getRootAnnotation()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1652; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1658; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::StructNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1652; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeBuilder *)((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::StructNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1658; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31647,7 +31830,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_41initRootStructNode(PyObject return __pyx_r; } -/* "schema.pyx":1651 +/* "schema.pyx":1657 * cpdef getRootStructNode(self): * return _StructNodeBuilder().init(self.thisptr.getRootStructNode()) * cpdef initRootStructNode(self): # <<<<<<<<<<<<<< @@ -31664,7 +31847,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_40initRootStructNode(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootStructNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootStructNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1651; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootStructNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1657; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31682,7 +31865,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_40initRootStructNode(struct _ return __pyx_r; } -/* "schema.pyx":1653 +/* "schema.pyx":1659 * cpdef initRootStructNode(self): * return _StructNodeBuilder().init(self.thisptr.initRootStructNode()) * cpdef getRootAnnotation(self): # <<<<<<<<<<<<<< @@ -31704,11 +31887,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootAnnotation(struct __pyx if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootAnnotation); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1653; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootAnnotation); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1659; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_43getRootAnnotation)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1653; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1659; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31718,7 +31901,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootAnnotation(struct __pyx __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1654 + /* "schema.pyx":1660 * return _StructNodeBuilder().init(self.thisptr.initRootStructNode()) * cpdef getRootAnnotation(self): * return _AnnotationBuilder().init(self.thisptr.getRootAnnotation()) # <<<<<<<<<<<<<< @@ -31726,9 +31909,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_getRootAnnotation(struct __pyx * return _AnnotationBuilder().init(self.thisptr.initRootAnnotation()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1660; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Annotation>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Annotation>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1660; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31759,7 +31942,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_43getRootAnnotation(PyObject return __pyx_r; } -/* "schema.pyx":1653 +/* "schema.pyx":1659 * cpdef initRootStructNode(self): * return _StructNodeBuilder().init(self.thisptr.initRootStructNode()) * cpdef getRootAnnotation(self): # <<<<<<<<<<<<<< @@ -31776,7 +31959,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_42getRootAnnotation(struct __ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootAnnotation", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootAnnotation(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1653; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->getRootAnnotation(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1659; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31794,7 +31977,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_42getRootAnnotation(struct __ return __pyx_r; } -/* "schema.pyx":1655 +/* "schema.pyx":1661 * cpdef getRootAnnotation(self): * return _AnnotationBuilder().init(self.thisptr.getRootAnnotation()) * cpdef initRootAnnotation(self): # <<<<<<<<<<<<<< @@ -31816,11 +31999,11 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootAnnotation(struct __py if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootAnnotation); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__initRootAnnotation); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_14MessageBuilder_45initRootAnnotation)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -31830,7 +32013,7 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootAnnotation(struct __py __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1656 + /* "schema.pyx":1662 * return _AnnotationBuilder().init(self.thisptr.getRootAnnotation()) * cpdef initRootAnnotation(self): * return _AnnotationBuilder().init(self.thisptr.initRootAnnotation()) # <<<<<<<<<<<<<< @@ -31838,9 +32021,9 @@ static PyObject *__pyx_f_6schema_14MessageBuilder_initRootAnnotation(struct __py * def __cinit__(self): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1656; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1662; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Annotation>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1656; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationBuilder *)((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationBuilder *)__pyx_t_1), __pyx_v_self->thisptr->initRoot<::capnp::schema::Annotation>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1662; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -31871,7 +32054,7 @@ static PyObject *__pyx_pw_6schema_14MessageBuilder_45initRootAnnotation(PyObject return __pyx_r; } -/* "schema.pyx":1655 +/* "schema.pyx":1661 * cpdef getRootAnnotation(self): * return _AnnotationBuilder().init(self.thisptr.getRootAnnotation()) * cpdef initRootAnnotation(self): # <<<<<<<<<<<<<< @@ -31888,7 +32071,7 @@ static PyObject *__pyx_pf_6schema_14MessageBuilder_44initRootAnnotation(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("initRootAnnotation", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootAnnotation(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageBuilder *)__pyx_v_self->__pyx_vtab)->initRootAnnotation(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -31920,7 +32103,7 @@ static int __pyx_pw_6schema_20MallocMessageBuilder_1__cinit__(PyObject *__pyx_v_ return __pyx_r; } -/* "schema.pyx":1658 +/* "schema.pyx":1664 * return _AnnotationBuilder().init(self.thisptr.initRootAnnotation()) * cdef class MallocMessageBuilder(MessageBuilder): * def __cinit__(self): # <<<<<<<<<<<<<< @@ -31933,7 +32116,7 @@ static int __pyx_pf_6schema_20MallocMessageBuilder___cinit__(struct __pyx_obj_6s __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__cinit__", 0); - /* "schema.pyx":1659 + /* "schema.pyx":1665 * cdef class MallocMessageBuilder(MessageBuilder): * def __cinit__(self): * self.thisptr = new capnp.MallocMessageBuilder() # <<<<<<<<<<<<<< @@ -31956,7 +32139,7 @@ static void __pyx_pw_6schema_13MessageReader_1__dealloc__(PyObject *__pyx_v_self __Pyx_RefNannyFinishContext(); } -/* "schema.pyx":1664 +/* "schema.pyx":1670 * cdef class MessageReader: * cdef capnp.MessageReader * thisptr * def __dealloc__(self): # <<<<<<<<<<<<<< @@ -31968,7 +32151,7 @@ static void __pyx_pf_6schema_13MessageReader___dealloc__(CYTHON_UNUSED struct __ __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__dealloc__", 0); - /* "schema.pyx":1665 + /* "schema.pyx":1671 * cdef capnp.MessageReader * thisptr * def __dealloc__(self): * del self.thisptr # <<<<<<<<<<<<<< @@ -31980,7 +32163,7 @@ static void __pyx_pf_6schema_13MessageReader___dealloc__(CYTHON_UNUSED struct __ __Pyx_RefNannyFinishContext(); } -/* "schema.pyx":1666 +/* "schema.pyx":1672 * def __dealloc__(self): * del self.thisptr * cpdef getRootCodeGeneratorRequest(self): # <<<<<<<<<<<<<< @@ -32002,11 +32185,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootCodeGeneratorRequest(str if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_30); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_30); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_3getRootCodeGeneratorRequest)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32016,7 +32199,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootCodeGeneratorRequest(str __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1667 + /* "schema.pyx":1673 * del self.thisptr * cpdef getRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestReader().init(self.thisptr.getRootCodeGeneratorRequest()) # <<<<<<<<<<<<<< @@ -32024,9 +32207,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootCodeGeneratorRequest(str * return _InterfaceNodeReader().init(self.thisptr.getRootInterfaceNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1667; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1673; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestReader *)((struct __pyx_obj_6schema__CodeGeneratorRequestReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__CodeGeneratorRequestReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::CodeGeneratorRequest>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1667; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__CodeGeneratorRequestReader *)((struct __pyx_obj_6schema__CodeGeneratorRequestReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__CodeGeneratorRequestReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::CodeGeneratorRequest>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1673; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32057,7 +32240,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_3getRootCodeGeneratorRequest(P return __pyx_r; } -/* "schema.pyx":1666 +/* "schema.pyx":1672 * def __dealloc__(self): * del self.thisptr * cpdef getRootCodeGeneratorRequest(self): # <<<<<<<<<<<<<< @@ -32074,7 +32257,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_2getRootCodeGeneratorRequest(s int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootCodeGeneratorRequest", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootCodeGeneratorRequest(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootCodeGeneratorRequest(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32092,7 +32275,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_2getRootCodeGeneratorRequest(s return __pyx_r; } -/* "schema.pyx":1668 +/* "schema.pyx":1674 * cpdef getRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestReader().init(self.thisptr.getRootCodeGeneratorRequest()) * cpdef getRootInterfaceNode(self): # <<<<<<<<<<<<<< @@ -32114,11 +32297,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootInterfaceNode(struct __p if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_32); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1668; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_32); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1674; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_5getRootInterfaceNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1668; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1674; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32128,7 +32311,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootInterfaceNode(struct __p __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1669 + /* "schema.pyx":1675 * return _CodeGeneratorRequestReader().init(self.thisptr.getRootCodeGeneratorRequest()) * cpdef getRootInterfaceNode(self): * return _InterfaceNodeReader().init(self.thisptr.getRootInterfaceNode()) # <<<<<<<<<<<<<< @@ -32136,9 +32319,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootInterfaceNode(struct __p * return _ValueReader().init(self.thisptr.getRootValue()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1669; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1675; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeReader *)((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::InterfaceNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1669; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__InterfaceNodeReader *)((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__InterfaceNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::InterfaceNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1675; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32169,7 +32352,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_5getRootInterfaceNode(PyObject return __pyx_r; } -/* "schema.pyx":1668 +/* "schema.pyx":1674 * cpdef getRootCodeGeneratorRequest(self): * return _CodeGeneratorRequestReader().init(self.thisptr.getRootCodeGeneratorRequest()) * cpdef getRootInterfaceNode(self): # <<<<<<<<<<<<<< @@ -32186,7 +32369,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_4getRootInterfaceNode(struct _ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootInterfaceNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootInterfaceNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1668; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootInterfaceNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1674; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32204,7 +32387,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_4getRootInterfaceNode(struct _ return __pyx_r; } -/* "schema.pyx":1670 +/* "schema.pyx":1676 * cpdef getRootInterfaceNode(self): * return _InterfaceNodeReader().init(self.thisptr.getRootInterfaceNode()) * cpdef getRootValue(self): # <<<<<<<<<<<<<< @@ -32226,11 +32409,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootValue(struct __pyx_obj_6 if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootValue); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1670; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootValue); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1676; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_7getRootValue)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1670; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1676; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32240,7 +32423,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootValue(struct __pyx_obj_6 __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1671 + /* "schema.pyx":1677 * return _InterfaceNodeReader().init(self.thisptr.getRootInterfaceNode()) * cpdef getRootValue(self): * return _ValueReader().init(self.thisptr.getRootValue()) # <<<<<<<<<<<<<< @@ -32248,9 +32431,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootValue(struct __pyx_obj_6 * return _ConstNodeReader().init(self.thisptr.getRootConstNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1671; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Value>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1671; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ValueReader *)((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ValueReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Value>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32281,7 +32464,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_7getRootValue(PyObject *__pyx_ return __pyx_r; } -/* "schema.pyx":1670 +/* "schema.pyx":1676 * cpdef getRootInterfaceNode(self): * return _InterfaceNodeReader().init(self.thisptr.getRootInterfaceNode()) * cpdef getRootValue(self): # <<<<<<<<<<<<<< @@ -32298,7 +32481,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_6getRootValue(struct __pyx_obj int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootValue", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootValue(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1670; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootValue(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1676; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32316,7 +32499,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_6getRootValue(struct __pyx_obj return __pyx_r; } -/* "schema.pyx":1672 +/* "schema.pyx":1678 * cpdef getRootValue(self): * return _ValueReader().init(self.thisptr.getRootValue()) * cpdef getRootConstNode(self): # <<<<<<<<<<<<<< @@ -32338,11 +32521,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootConstNode(struct __pyx_o if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootConstNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootConstNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1678; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_9getRootConstNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1678; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32352,7 +32535,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootConstNode(struct __pyx_o __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1673 + /* "schema.pyx":1679 * return _ValueReader().init(self.thisptr.getRootValue()) * cpdef getRootConstNode(self): * return _ConstNodeReader().init(self.thisptr.getRootConstNode()) # <<<<<<<<<<<<<< @@ -32360,9 +32543,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootConstNode(struct __pyx_o * return _TypeReader().init(self.thisptr.getRootType()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1673; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1679; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeReader *)((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::ConstNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1673; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__ConstNodeReader *)((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__ConstNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::ConstNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1679; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32393,7 +32576,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_9getRootConstNode(PyObject *__ return __pyx_r; } -/* "schema.pyx":1672 +/* "schema.pyx":1678 * cpdef getRootValue(self): * return _ValueReader().init(self.thisptr.getRootValue()) * cpdef getRootConstNode(self): # <<<<<<<<<<<<<< @@ -32410,7 +32593,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_8getRootConstNode(struct __pyx int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootConstNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootConstNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1672; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootConstNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1678; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32428,7 +32611,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_8getRootConstNode(struct __pyx return __pyx_r; } -/* "schema.pyx":1674 +/* "schema.pyx":1680 * cpdef getRootConstNode(self): * return _ConstNodeReader().init(self.thisptr.getRootConstNode()) * cpdef getRootType(self): # <<<<<<<<<<<<<< @@ -32450,11 +32633,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootType(struct __pyx_obj_6s if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1674; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1680; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_11getRootType)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1674; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1680; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32464,7 +32647,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootType(struct __pyx_obj_6s __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1675 + /* "schema.pyx":1681 * return _ConstNodeReader().init(self.thisptr.getRootConstNode()) * cpdef getRootType(self): * return _TypeReader().init(self.thisptr.getRootType()) # <<<<<<<<<<<<<< @@ -32472,9 +32655,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootType(struct __pyx_obj_6s * return _FileNodeReader().init(self.thisptr.getRootFileNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1675; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1681; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Type>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1675; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__TypeReader *)((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__TypeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Type>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1681; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32505,7 +32688,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_11getRootType(PyObject *__pyx_ return __pyx_r; } -/* "schema.pyx":1674 +/* "schema.pyx":1680 * cpdef getRootConstNode(self): * return _ConstNodeReader().init(self.thisptr.getRootConstNode()) * cpdef getRootType(self): # <<<<<<<<<<<<<< @@ -32522,7 +32705,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_10getRootType(struct __pyx_obj int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootType", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootType(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1674; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootType(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1680; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32540,7 +32723,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_10getRootType(struct __pyx_obj return __pyx_r; } -/* "schema.pyx":1676 +/* "schema.pyx":1682 * cpdef getRootType(self): * return _TypeReader().init(self.thisptr.getRootType()) * cpdef getRootFileNode(self): # <<<<<<<<<<<<<< @@ -32562,11 +32745,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootFileNode(struct __pyx_ob if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootFileNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1676; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootFileNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1682; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_13getRootFileNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1676; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1682; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32576,7 +32759,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootFileNode(struct __pyx_ob __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1677 + /* "schema.pyx":1683 * return _TypeReader().init(self.thisptr.getRootType()) * cpdef getRootFileNode(self): * return _FileNodeReader().init(self.thisptr.getRootFileNode()) # <<<<<<<<<<<<<< @@ -32584,9 +32767,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootFileNode(struct __pyx_ob * return _NodeReader().init(self.thisptr.getRootNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1683; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeReader *)((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::FileNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__FileNodeReader *)((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__FileNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::FileNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1683; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32617,7 +32800,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_13getRootFileNode(PyObject *__ return __pyx_r; } -/* "schema.pyx":1676 +/* "schema.pyx":1682 * cpdef getRootType(self): * return _TypeReader().init(self.thisptr.getRootType()) * cpdef getRootFileNode(self): # <<<<<<<<<<<<<< @@ -32634,7 +32817,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_12getRootFileNode(struct __pyx int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootFileNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootFileNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1676; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootFileNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1682; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32652,7 +32835,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_12getRootFileNode(struct __pyx return __pyx_r; } -/* "schema.pyx":1678 +/* "schema.pyx":1684 * cpdef getRootFileNode(self): * return _FileNodeReader().init(self.thisptr.getRootFileNode()) * cpdef getRootNode(self): # <<<<<<<<<<<<<< @@ -32674,11 +32857,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootNode(struct __pyx_obj_6s if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1678; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1684; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_15getRootNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1678; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1684; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32688,7 +32871,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootNode(struct __pyx_obj_6s __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1679 + /* "schema.pyx":1685 * return _FileNodeReader().init(self.thisptr.getRootFileNode()) * cpdef getRootNode(self): * return _NodeReader().init(self.thisptr.getRootNode()) # <<<<<<<<<<<<<< @@ -32696,9 +32879,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootNode(struct __pyx_obj_6s * return _AnnotationNodeReader().init(self.thisptr.getRootAnnotationNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1679; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1685; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__NodeReader *)((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Node>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1679; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__NodeReader *)((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__NodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Node>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1685; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32729,7 +32912,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_15getRootNode(PyObject *__pyx_ return __pyx_r; } -/* "schema.pyx":1678 +/* "schema.pyx":1684 * cpdef getRootFileNode(self): * return _FileNodeReader().init(self.thisptr.getRootFileNode()) * cpdef getRootNode(self): # <<<<<<<<<<<<<< @@ -32746,7 +32929,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_14getRootNode(struct __pyx_obj int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1678; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1684; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32764,7 +32947,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_14getRootNode(struct __pyx_obj return __pyx_r; } -/* "schema.pyx":1680 +/* "schema.pyx":1686 * cpdef getRootNode(self): * return _NodeReader().init(self.thisptr.getRootNode()) * cpdef getRootAnnotationNode(self): # <<<<<<<<<<<<<< @@ -32786,11 +32969,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootAnnotationNode(struct __ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_34); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1680; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_34); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1686; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_17getRootAnnotationNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1680; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1686; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32800,7 +32983,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootAnnotationNode(struct __ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1681 + /* "schema.pyx":1687 * return _NodeReader().init(self.thisptr.getRootNode()) * cpdef getRootAnnotationNode(self): * return _AnnotationNodeReader().init(self.thisptr.getRootAnnotationNode()) # <<<<<<<<<<<<<< @@ -32808,9 +32991,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootAnnotationNode(struct __ * return _EnumNodeReader().init(self.thisptr.getRootEnumNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1681; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1687; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeReader *)((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::AnnotationNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1681; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationNodeReader *)((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::AnnotationNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1687; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32841,7 +33024,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_17getRootAnnotationNode(PyObje return __pyx_r; } -/* "schema.pyx":1680 +/* "schema.pyx":1686 * cpdef getRootNode(self): * return _NodeReader().init(self.thisptr.getRootNode()) * cpdef getRootAnnotationNode(self): # <<<<<<<<<<<<<< @@ -32858,7 +33041,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_16getRootAnnotationNode(struct int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootAnnotationNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootAnnotationNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1680; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootAnnotationNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1686; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32876,7 +33059,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_16getRootAnnotationNode(struct return __pyx_r; } -/* "schema.pyx":1682 +/* "schema.pyx":1688 * cpdef getRootAnnotationNode(self): * return _AnnotationNodeReader().init(self.thisptr.getRootAnnotationNode()) * cpdef getRootEnumNode(self): # <<<<<<<<<<<<<< @@ -32898,11 +33081,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootEnumNode(struct __pyx_ob if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootEnumNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1682; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootEnumNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1688; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_19getRootEnumNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1682; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1688; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -32912,7 +33095,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootEnumNode(struct __pyx_ob __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1683 + /* "schema.pyx":1689 * return _AnnotationNodeReader().init(self.thisptr.getRootAnnotationNode()) * cpdef getRootEnumNode(self): * return _EnumNodeReader().init(self.thisptr.getRootEnumNode()) # <<<<<<<<<<<<<< @@ -32920,9 +33103,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootEnumNode(struct __pyx_ob * return _StructNodeReader().init(self.thisptr.getRootStructNode()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1683; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1689; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeReader *)((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::EnumNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1683; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__EnumNodeReader *)((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__EnumNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::EnumNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1689; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -32953,7 +33136,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_19getRootEnumNode(PyObject *__ return __pyx_r; } -/* "schema.pyx":1682 +/* "schema.pyx":1688 * cpdef getRootAnnotationNode(self): * return _AnnotationNodeReader().init(self.thisptr.getRootAnnotationNode()) * cpdef getRootEnumNode(self): # <<<<<<<<<<<<<< @@ -32970,7 +33153,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_18getRootEnumNode(struct __pyx int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootEnumNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootEnumNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1682; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootEnumNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1688; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -32988,7 +33171,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_18getRootEnumNode(struct __pyx return __pyx_r; } -/* "schema.pyx":1684 +/* "schema.pyx":1690 * cpdef getRootEnumNode(self): * return _EnumNodeReader().init(self.thisptr.getRootEnumNode()) * cpdef getRootStructNode(self): # <<<<<<<<<<<<<< @@ -33010,11 +33193,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootStructNode(struct __pyx_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootStructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1684; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootStructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1690; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_21getRootStructNode)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1684; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1690; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -33024,7 +33207,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootStructNode(struct __pyx_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1685 + /* "schema.pyx":1691 * return _EnumNodeReader().init(self.thisptr.getRootEnumNode()) * cpdef getRootStructNode(self): * return _StructNodeReader().init(self.thisptr.getRootStructNode()) # <<<<<<<<<<<<<< @@ -33032,9 +33215,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootStructNode(struct __pyx_ * return _AnnotationReader().init(self.thisptr.getRootAnnotation()) */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1685; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1691; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeReader *)((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::StructNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1685; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__StructNodeReader *)((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__StructNodeReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::StructNode>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1691; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -33065,7 +33248,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_21getRootStructNode(PyObject * return __pyx_r; } -/* "schema.pyx":1684 +/* "schema.pyx":1690 * cpdef getRootEnumNode(self): * return _EnumNodeReader().init(self.thisptr.getRootEnumNode()) * cpdef getRootStructNode(self): # <<<<<<<<<<<<<< @@ -33082,7 +33265,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_20getRootStructNode(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootStructNode", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootStructNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1684; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootStructNode(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1690; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -33100,7 +33283,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_20getRootStructNode(struct __p return __pyx_r; } -/* "schema.pyx":1686 +/* "schema.pyx":1692 * cpdef getRootStructNode(self): * return _StructNodeReader().init(self.thisptr.getRootStructNode()) * cpdef getRootAnnotation(self): # <<<<<<<<<<<<<< @@ -33122,11 +33305,11 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootAnnotation(struct __pyx_ if (unlikely(__pyx_skip_dispatch)) ; /* Check if overridden in Python */ else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootAnnotation); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1686; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s__getRootAnnotation); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1692; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!PyCFunction_Check(__pyx_t_1) || (PyCFunction_GET_FUNCTION(__pyx_t_1) != (PyCFunction)__pyx_pw_6schema_13MessageReader_23getRootAnnotation)) { __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1686; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1692; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; @@ -33136,7 +33319,7 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootAnnotation(struct __pyx_ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } - /* "schema.pyx":1687 + /* "schema.pyx":1693 * return _StructNodeReader().init(self.thisptr.getRootStructNode()) * cpdef getRootAnnotation(self): * return _AnnotationReader().init(self.thisptr.getRootAnnotation()) # <<<<<<<<<<<<<< @@ -33144,9 +33327,9 @@ static PyObject *__pyx_f_6schema_13MessageReader_getRootAnnotation(struct __pyx_ * cdef class StreamFdMessageReader(MessageReader): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1687; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1693; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Annotation>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1687; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = ((struct __pyx_vtabstruct_6schema__AnnotationReader *)((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1)->__pyx_vtab)->init(((struct __pyx_obj_6schema__AnnotationReader *)__pyx_t_1), __pyx_v_self->thisptr->getRoot<::capnp::schema::Annotation>()); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1693; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; @@ -33177,7 +33360,7 @@ static PyObject *__pyx_pw_6schema_13MessageReader_23getRootAnnotation(PyObject * return __pyx_r; } -/* "schema.pyx":1686 +/* "schema.pyx":1692 * cpdef getRootStructNode(self): * return _StructNodeReader().init(self.thisptr.getRootStructNode()) * cpdef getRootAnnotation(self): # <<<<<<<<<<<<<< @@ -33194,7 +33377,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_22getRootAnnotation(struct __p int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getRootAnnotation", 0); __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootAnnotation(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1686; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = ((struct __pyx_vtabstruct_6schema_MessageReader *)__pyx_v_self->__pyx_vtab)->getRootAnnotation(__pyx_v_self, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1692; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; @@ -33215,7 +33398,7 @@ static PyObject *__pyx_pf_6schema_13MessageReader_22getRootAnnotation(struct __p /* Python wrapper */ static int __pyx_pw_6schema_21StreamFdMessageReader_1__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static int __pyx_pw_6schema_21StreamFdMessageReader_1__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED int __pyx_v_fd; + int __pyx_v_fd; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; @@ -33240,18 +33423,18 @@ static int __pyx_pw_6schema_21StreamFdMessageReader_1__cinit__(PyObject *__pyx_v else goto __pyx_L5_argtuple_error; } if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1690; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1696; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 1) { goto __pyx_L5_argtuple_error; } else { values[0] = PyTuple_GET_ITEM(__pyx_args, 0); } - __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1690; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1696; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1690; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1696; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("schema.StreamFdMessageReader.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); @@ -33262,39 +33445,29 @@ static int __pyx_pw_6schema_21StreamFdMessageReader_1__cinit__(PyObject *__pyx_v return __pyx_r; } -/* "schema.pyx":1690 +/* "schema.pyx":1696 * * cdef class StreamFdMessageReader(MessageReader): * def __cinit__(self, int fd): # <<<<<<<<<<<<<< - * self.thisptr = new capnp.StreamFdMessageReader(int) + * self.thisptr = new capnp.StreamFdMessageReader(fd) * */ -static int __pyx_pf_6schema_21StreamFdMessageReader___cinit__(struct __pyx_obj_6schema_StreamFdMessageReader *__pyx_v_self, CYTHON_UNUSED int __pyx_v_fd) { +static int __pyx_pf_6schema_21StreamFdMessageReader___cinit__(struct __pyx_obj_6schema_StreamFdMessageReader *__pyx_v_self, int __pyx_v_fd) { int __pyx_r; __Pyx_RefNannyDeclarations - int __pyx_t_1; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__cinit__", 0); - /* "schema.pyx":1691 + /* "schema.pyx":1697 * cdef class StreamFdMessageReader(MessageReader): * def __cinit__(self, int fd): - * self.thisptr = new capnp.StreamFdMessageReader(int) # <<<<<<<<<<<<<< + * self.thisptr = new capnp.StreamFdMessageReader(fd) # <<<<<<<<<<<<<< * * cdef class PackedFdMessageReader(MessageReader): */ - __pyx_t_1 = __Pyx_PyInt_AsInt(((PyObject *)((PyObject*)(&PyInt_Type)))); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1691; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_v_self->__pyx_base.thisptr = new ::capnp::StreamFdMessageReader(__pyx_t_1); + __pyx_v_self->__pyx_base.thisptr = new ::capnp::StreamFdMessageReader(__pyx_v_fd); __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_AddTraceback("schema.StreamFdMessageReader.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } @@ -33302,7 +33475,7 @@ static int __pyx_pf_6schema_21StreamFdMessageReader___cinit__(struct __pyx_obj_6 /* Python wrapper */ static int __pyx_pw_6schema_21PackedFdMessageReader_1__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static int __pyx_pw_6schema_21PackedFdMessageReader_1__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED int __pyx_v_fd; + int __pyx_v_fd; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; @@ -33327,18 +33500,18 @@ static int __pyx_pw_6schema_21PackedFdMessageReader_1__cinit__(PyObject *__pyx_v else goto __pyx_L5_argtuple_error; } if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1694; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1700; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 1) { goto __pyx_L5_argtuple_error; } else { values[0] = PyTuple_GET_ITEM(__pyx_args, 0); } - __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1694; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1700; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1694; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1700; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("schema.PackedFdMessageReader.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); @@ -33349,39 +33522,29 @@ static int __pyx_pw_6schema_21PackedFdMessageReader_1__cinit__(PyObject *__pyx_v return __pyx_r; } -/* "schema.pyx":1694 +/* "schema.pyx":1700 * * cdef class PackedFdMessageReader(MessageReader): * def __cinit__(self, int fd): # <<<<<<<<<<<<<< - * self.thisptr = new capnp.PackedFdMessageReader(int) + * self.thisptr = new capnp.PackedFdMessageReader(fd) * */ -static int __pyx_pf_6schema_21PackedFdMessageReader___cinit__(struct __pyx_obj_6schema_PackedFdMessageReader *__pyx_v_self, CYTHON_UNUSED int __pyx_v_fd) { +static int __pyx_pf_6schema_21PackedFdMessageReader___cinit__(struct __pyx_obj_6schema_PackedFdMessageReader *__pyx_v_self, int __pyx_v_fd) { int __pyx_r; __Pyx_RefNannyDeclarations - int __pyx_t_1; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__cinit__", 0); - /* "schema.pyx":1695 + /* "schema.pyx":1701 * cdef class PackedFdMessageReader(MessageReader): * def __cinit__(self, int fd): - * self.thisptr = new capnp.PackedFdMessageReader(int) # <<<<<<<<<<<<<< + * self.thisptr = new capnp.PackedFdMessageReader(fd) # <<<<<<<<<<<<<< * * def writeMessageToFd(int fd, MessageBuilder m): */ - __pyx_t_1 = __Pyx_PyInt_AsInt(((PyObject *)((PyObject*)(&PyInt_Type)))); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1695; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_v_self->__pyx_base.thisptr = new ::capnp::PackedFdMessageReader(__pyx_t_1); + __pyx_v_self->__pyx_base.thisptr = new ::capnp::PackedFdMessageReader(__pyx_v_fd); __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_AddTraceback("schema.PackedFdMessageReader.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } @@ -33418,11 +33581,11 @@ static PyObject *__pyx_pw_6schema_3writeMessageToFd(PyObject *__pyx_self, PyObje case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__m)) != 0)) kw_args--; else { - __Pyx_RaiseArgtupleInvalid("writeMessageToFd", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __Pyx_RaiseArgtupleInvalid("writeMessageToFd", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "writeMessageToFd") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "writeMessageToFd") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { goto __pyx_L5_argtuple_error; @@ -33430,18 +33593,18 @@ static PyObject *__pyx_pw_6schema_3writeMessageToFd(PyObject *__pyx_self, PyObje values[0] = PyTuple_GET_ITEM(__pyx_args, 0); values[1] = PyTuple_GET_ITEM(__pyx_args, 1); } - __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_m = ((struct __pyx_obj_6schema_MessageBuilder *)values[1]); } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("writeMessageToFd", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __Pyx_RaiseArgtupleInvalid("writeMessageToFd", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("schema.writeMessageToFd", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_m), __pyx_ptype_6schema_MessageBuilder, 1, "m", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_m), __pyx_ptype_6schema_MessageBuilder, 1, "m", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_pf_6schema_2writeMessageToFd(__pyx_self, __pyx_v_fd, __pyx_v_m); goto __pyx_L0; __pyx_L1_error:; @@ -33451,8 +33614,8 @@ static PyObject *__pyx_pw_6schema_3writeMessageToFd(PyObject *__pyx_self, PyObje return __pyx_r; } -/* "schema.pyx":1697 - * self.thisptr = new capnp.PackedFdMessageReader(int) +/* "schema.pyx":1703 + * self.thisptr = new capnp.PackedFdMessageReader(fd) * * def writeMessageToFd(int fd, MessageBuilder m): # <<<<<<<<<<<<<< * capnp.writeMessageToFd(fd, deref(m.thisptr)) @@ -33464,7 +33627,7 @@ static PyObject *__pyx_pf_6schema_2writeMessageToFd(CYTHON_UNUSED PyObject *__py __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("writeMessageToFd", 0); - /* "schema.pyx":1698 + /* "schema.pyx":1704 * * def writeMessageToFd(int fd, MessageBuilder m): * capnp.writeMessageToFd(fd, deref(m.thisptr)) # <<<<<<<<<<<<<< @@ -33511,11 +33674,11 @@ static PyObject *__pyx_pw_6schema_5writePackedMessageToFd(PyObject *__pyx_self, case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__m)) != 0)) kw_args--; else { - __Pyx_RaiseArgtupleInvalid("writePackedMessageToFd", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __Pyx_RaiseArgtupleInvalid("writePackedMessageToFd", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "writePackedMessageToFd") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "writePackedMessageToFd") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { goto __pyx_L5_argtuple_error; @@ -33523,18 +33686,18 @@ static PyObject *__pyx_pw_6schema_5writePackedMessageToFd(PyObject *__pyx_self, values[0] = PyTuple_GET_ITEM(__pyx_args, 0); values[1] = PyTuple_GET_ITEM(__pyx_args, 1); } - __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __pyx_v_fd = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_fd == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_m = ((struct __pyx_obj_6schema_MessageBuilder *)values[1]); } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("writePackedMessageToFd", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L3_error;} + __Pyx_RaiseArgtupleInvalid("writePackedMessageToFd", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("schema.writePackedMessageToFd", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_m), __pyx_ptype_6schema_MessageBuilder, 1, "m", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_m), __pyx_ptype_6schema_MessageBuilder, 1, "m", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_pf_6schema_4writePackedMessageToFd(__pyx_self, __pyx_v_fd, __pyx_v_m); goto __pyx_L0; __pyx_L1_error:; @@ -33544,7 +33707,7 @@ static PyObject *__pyx_pw_6schema_5writePackedMessageToFd(PyObject *__pyx_self, return __pyx_r; } -/* "schema.pyx":1699 +/* "schema.pyx":1705 * def writeMessageToFd(int fd, MessageBuilder m): * capnp.writeMessageToFd(fd, deref(m.thisptr)) * def writePackedMessageToFd(int fd, MessageBuilder m): # <<<<<<<<<<<<<< @@ -33557,7 +33720,7 @@ static PyObject *__pyx_pf_6schema_4writePackedMessageToFd(CYTHON_UNUSED PyObject __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("writePackedMessageToFd", 0); - /* "schema.pyx":1700 + /* "schema.pyx":1706 * capnp.writeMessageToFd(fd, deref(m.thisptr)) * def writePackedMessageToFd(int fd, MessageBuilder m): * capnp.writePackedMessageToFd(fd, deref(m.thisptr)) # <<<<<<<<<<<<<< @@ -43082,9 +43245,9 @@ static __Pyx_StringTabEntry __pyx_string_tab[] = { {0, 0, 0, 0, 0, 0, 0} }; static int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_zip = __Pyx_GetBuiltinName(__pyx_n_s__zip); if (!__pyx_builtin_zip) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s__range); if (!__pyx_builtin_range) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_builtin_IndexError = __Pyx_GetBuiltinName(__pyx_n_s__IndexError); if (!__pyx_builtin_IndexError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 54; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_builtin_zip = __Pyx_GetBuiltinName(__pyx_n_s__zip); if (!__pyx_builtin_zip) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s__range); if (!__pyx_builtin_range) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_builtin_IndexError = __Pyx_GetBuiltinName(__pyx_n_s__IndexError); if (!__pyx_builtin_IndexError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 58; __pyx_clineno = __LINE__; goto __pyx_L1_error;} return 0; __pyx_L1_error:; return -1; @@ -43094,666 +43257,666 @@ static int __Pyx_InitCachedConstants(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - /* "schema.pyx":54 + /* "schema.pyx":58 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_MethodReader().init(self.thisptr[index]) */ - __pyx_k_tuple_2 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 54; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_2 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 58; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_2); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_2)); - /* "schema.pyx":68 + /* "schema.pyx":72 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_MethodBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_3 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_3 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_3); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_3)); - /* "schema.pyx":81 + /* "schema.pyx":85 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _EnumNode_EnumerantReader().init(self.thisptr[index]) */ - __pyx_k_tuple_4 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 81; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_4 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 85; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_4); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_4)); - /* "schema.pyx":95 + /* "schema.pyx":99 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _EnumNode_EnumerantBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_5 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 95; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_5 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_5); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_5)); - /* "schema.pyx":108 + /* "schema.pyx":112 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberReader().init(self.thisptr[index]) */ - __pyx_k_tuple_6 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 108; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_6 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 112; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_6); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_6)); - /* "schema.pyx":122 + /* "schema.pyx":126 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_7 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 122; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_7 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_7); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_7)); - /* "schema.pyx":135 + /* "schema.pyx":139 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_Method_ParamReader().init(self.thisptr[index]) */ - __pyx_k_tuple_8 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_8 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 139; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_8); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_8)); - /* "schema.pyx":149 + /* "schema.pyx":153 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _InterfaceNode_Method_ParamBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_9 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_9 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 153; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_9); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_9)); - /* "schema.pyx":162 + /* "schema.pyx":166 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_k_tuple_10 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 162; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_10 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_10); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_10)); - /* "schema.pyx":176 + /* "schema.pyx":180 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_11 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 176; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_11 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_11); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_11)); - /* "schema.pyx":189 + /* "schema.pyx":193 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return self.thisptr[index] */ - __pyx_k_tuple_12 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 189; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_12 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 193; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_12); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_12)); - /* "schema.pyx":203 + /* "schema.pyx":207 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return self.thisptr[index] */ - __pyx_k_tuple_13 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_13 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_13); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_13)); - /* "schema.pyx":216 + /* "schema.pyx":220 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _Node_NestedNodeReader().init(self.thisptr[index]) */ - __pyx_k_tuple_14 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_14 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_14); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_14)); - /* "schema.pyx":230 + /* "schema.pyx":234 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _Node_NestedNodeBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_15 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 230; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_15 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 234; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_15); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_15)); - /* "schema.pyx":243 + /* "schema.pyx":247 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_k_tuple_16 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 243; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_16 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 247; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_16); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_16)); - /* "schema.pyx":257 + /* "schema.pyx":261 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_17 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_17)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 257; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_17 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_17)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 261; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_17); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_17)); - /* "schema.pyx":270 + /* "schema.pyx":274 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_k_tuple_18 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_18)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 270; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_18 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_18)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 274; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_18); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_18)); - /* "schema.pyx":284 + /* "schema.pyx":288 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_19 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_19)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_19 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_19)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 288; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_19); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_19)); - /* "schema.pyx":297 + /* "schema.pyx":301 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberReader().init(self.thisptr[index]) */ - __pyx_k_tuple_20 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_20)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 297; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_20 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_20)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 301; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_20); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_20)); - /* "schema.pyx":311 + /* "schema.pyx":315 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _StructNode_MemberBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_21 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_21 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_21); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_21)); - /* "schema.pyx":324 + /* "schema.pyx":328 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_k_tuple_22 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_22)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 324; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_22 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_22)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 328; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_22); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_22)); - /* "schema.pyx":338 + /* "schema.pyx":342 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_23 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 338; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_23 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 342; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_23); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_23)); - /* "schema.pyx":351 + /* "schema.pyx":355 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _NodeReader().init(self.thisptr[index]) */ - __pyx_k_tuple_24 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_24)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_24 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_24)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_24); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_24)); - /* "schema.pyx":365 + /* "schema.pyx":369 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _NodeBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_25 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_25)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_25 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_25)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 369; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_25); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_25)); - /* "schema.pyx":378 + /* "schema.pyx":382 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _FileNode_ImportReader().init(self.thisptr[index]) */ - __pyx_k_tuple_26 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_26)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 378; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_26 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_26)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 382; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_26); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_26)); - /* "schema.pyx":392 + /* "schema.pyx":396 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _FileNode_ImportBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_27 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_27)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_27 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_27)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 396; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_27); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_27)); - /* "schema.pyx":405 + /* "schema.pyx":409 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationReader().init(self.thisptr[index]) */ - __pyx_k_tuple_28 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_28 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 409; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_28); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_28)); - /* "schema.pyx":419 + /* "schema.pyx":423 * size = self.thisptr.size() * if index >= size: * raise IndexError('Out of bounds') # <<<<<<<<<<<<<< * index = index % size * return _AnnotationBuilder().init(self.thisptr[index]) */ - __pyx_k_tuple_29 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_29)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_29 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_1)); if (unlikely(!__pyx_k_tuple_29)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_29); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_29)); - /* "schema.pyx":41 + /* "schema.pyx":45 * T operator[](uint) * uint size() * def make_enum(enum_name, *sequential, **named): # <<<<<<<<<<<<<< * enums = dict(zip(sequential, range(len(sequential))), **named) * reverse = dict((value, key) for key, value in enums.iteritems()) */ - __pyx_k_tuple_36 = PyTuple_Pack(9, ((PyObject *)__pyx_n_s__enum_name), ((PyObject *)__pyx_n_s__sequential), ((PyObject *)__pyx_n_s__named), ((PyObject *)__pyx_n_s__sequential), ((PyObject *)__pyx_n_s__named), ((PyObject *)__pyx_n_s__enums), ((PyObject *)__pyx_n_s__reverse), ((PyObject *)__pyx_n_s__genexpr), ((PyObject *)__pyx_n_s__genexpr)); if (unlikely(!__pyx_k_tuple_36)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_36 = PyTuple_Pack(9, ((PyObject *)__pyx_n_s__enum_name), ((PyObject *)__pyx_n_s__sequential), ((PyObject *)__pyx_n_s__named), ((PyObject *)__pyx_n_s__sequential), ((PyObject *)__pyx_n_s__named), ((PyObject *)__pyx_n_s__enums), ((PyObject *)__pyx_n_s__reverse), ((PyObject *)__pyx_n_s__genexpr), ((PyObject *)__pyx_n_s__genexpr)); if (unlikely(!__pyx_k_tuple_36)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_36); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_36)); - __pyx_k_codeobj_37 = (PyObject*)__Pyx_PyCode_New(1, 0, 9, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_36, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_38, __pyx_n_s__make_enum, 41, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_37)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_codeobj_37 = (PyObject*)__Pyx_PyCode_New(1, 0, 9, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_36, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_38, __pyx_n_s__make_enum, 45, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_37)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - /* "schema.pyx":455 + /* "schema.pyx":459 * return _List_UInt64_Builder().init(self.thisptr.initRequestedFiles(num)) * * _ElementSize = make_enum('_ElementSize',inlineComposite = _ElementSize_inlineComposite,eightBytes = _ElementSize_eightBytes,pointer = _ElementSize_pointer,bit = _ElementSize_bit,twoBytes = _ElementSize_twoBytes,fourBytes = _ElementSize_fourBytes,byte = _ElementSize_byte,empty = _ElementSize_empty,) # <<<<<<<<<<<<<< * * */ - __pyx_k_tuple_39 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___ElementSize)); if (unlikely(!__pyx_k_tuple_39)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_39 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___ElementSize)); if (unlikely(!__pyx_k_tuple_39)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_39); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_39)); - /* "schema.pyx":588 + /* "schema.pyx":592 * * * _Value_Body_Which = make_enum('_Value_Body_Which',uint32Value = _Value_Body_uint32Value,float64Value = _Value_Body_float64Value,voidValue = _Value_Body_voidValue,dataValue = _Value_Body_dataValue,listValue = _Value_Body_listValue,int32Value = _Value_Body_int32Value,enumValue = _Value_Body_enumValue,int8Value = _Value_Body_int8Value,boolValue = _Value_Body_boolValue,int16Value = _Value_Body_int16Value,float32Value = _Value_Body_float32Value,interfaceValue = _Value_Body_interfaceValue,uint16Value = _Value_Body_uint16Value,uint8Value = _Value_Body_uint8Value,int64Value = _Value_Body_int64Value,structValue = _Value_Body_structValue,textValue = _Value_Body_textValue,uint64Value = _Value_Body_uint64Value,objectValue = _Value_Body_objectValue,) # <<<<<<<<<<<<<< * cdef class _Value_BodyReader: * cdef C_Value.Body.Reader thisptr */ - __pyx_k_tuple_40 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___Value_Body_Which)); if (unlikely(!__pyx_k_tuple_40)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_40 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___Value_Body_Which)); if (unlikely(!__pyx_k_tuple_40)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_40); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_40)); - /* "schema.pyx":811 + /* "schema.pyx":817 * * * _Type_Body_Which = make_enum('_Type_Body_Which',boolType = _Type_Body_boolType,structType = _Type_Body_structType,int32Type = _Type_Body_int32Type,voidType = _Type_Body_voidType,uint16Type = _Type_Body_uint16Type,dataType = _Type_Body_dataType,objectType = _Type_Body_objectType,int64Type = _Type_Body_int64Type,float64Type = _Type_Body_float64Type,interfaceType = _Type_Body_interfaceType,uint32Type = _Type_Body_uint32Type,uint8Type = _Type_Body_uint8Type,listType = _Type_Body_listType,int8Type = _Type_Body_int8Type,float32Type = _Type_Body_float32Type,enumType = _Type_Body_enumType,uint64Type = _Type_Body_uint64Type,textType = _Type_Body_textType,int16Type = _Type_Body_int16Type,) # <<<<<<<<<<<<<< * cdef class _Type_BodyReader: * cdef C_Type.Body.Reader thisptr */ - __pyx_k_tuple_41 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___Type_Body_Which)); if (unlikely(!__pyx_k_tuple_41)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_41 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___Type_Body_Which)); if (unlikely(!__pyx_k_tuple_41)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_41); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_41)); - /* "schema.pyx":1056 + /* "schema.pyx":1062 * * * _Node_Body_Which = make_enum('_Node_Body_Which',annotationNode = _Node_Body_annotationNode,interfaceNode = _Node_Body_interfaceNode,enumNode = _Node_Body_enumNode,structNode = _Node_Body_structNode,constNode = _Node_Body_constNode,fileNode = _Node_Body_fileNode,) # <<<<<<<<<<<<<< * cdef class _Node_BodyReader: * cdef C_Node.Body.Reader thisptr */ - __pyx_k_tuple_42 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___Node_Body_Which)); if (unlikely(!__pyx_k_tuple_42)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_42 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s___Node_Body_Which)); if (unlikely(!__pyx_k_tuple_42)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_42); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_42)); - /* "schema.pyx":1416 + /* "schema.pyx":1422 * * * _StructNode_Member_Body_Which = make_enum('_StructNode_Member_Body_Which',fieldMember = _StructNode_Member_Body_fieldMember,unionMember = _StructNode_Member_Body_unionMember,) # <<<<<<<<<<<<<< * cdef class _StructNode_Member_BodyReader: * cdef C_StructNode.Member.Body.Reader thisptr */ - __pyx_k_tuple_44 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s_43)); if (unlikely(!__pyx_k_tuple_44)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_44 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s_43)); if (unlikely(!__pyx_k_tuple_44)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_44); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_44)); - /* "schema.pyx":1697 - * self.thisptr = new capnp.PackedFdMessageReader(int) + /* "schema.pyx":1703 + * self.thisptr = new capnp.PackedFdMessageReader(fd) * * def writeMessageToFd(int fd, MessageBuilder m): # <<<<<<<<<<<<<< * capnp.writeMessageToFd(fd, deref(m.thisptr)) * def writePackedMessageToFd(int fd, MessageBuilder m): */ - __pyx_k_tuple_45 = PyTuple_Pack(2, ((PyObject *)__pyx_n_s__fd), ((PyObject *)__pyx_n_s__m)); if (unlikely(!__pyx_k_tuple_45)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_45 = PyTuple_Pack(2, ((PyObject *)__pyx_n_s__fd), ((PyObject *)__pyx_n_s__m)); if (unlikely(!__pyx_k_tuple_45)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_45); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_45)); - __pyx_k_codeobj_46 = (PyObject*)__Pyx_PyCode_New(2, 0, 2, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_45, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_38, __pyx_n_s__writeMessageToFd, 1697, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_46)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_codeobj_46 = (PyObject*)__Pyx_PyCode_New(2, 0, 2, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_45, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_38, __pyx_n_s__writeMessageToFd, 1703, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_46)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - /* "schema.pyx":1699 + /* "schema.pyx":1705 * def writeMessageToFd(int fd, MessageBuilder m): * capnp.writeMessageToFd(fd, deref(m.thisptr)) * def writePackedMessageToFd(int fd, MessageBuilder m): # <<<<<<<<<<<<<< * capnp.writePackedMessageToFd(fd, deref(m.thisptr)) * */ - __pyx_k_tuple_47 = PyTuple_Pack(2, ((PyObject *)__pyx_n_s__fd), ((PyObject *)__pyx_n_s__m)); if (unlikely(!__pyx_k_tuple_47)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_47 = PyTuple_Pack(2, ((PyObject *)__pyx_n_s__fd), ((PyObject *)__pyx_n_s__m)); if (unlikely(!__pyx_k_tuple_47)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_47); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_47)); - __pyx_k_codeobj_48 = (PyObject*)__Pyx_PyCode_New(2, 0, 2, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_47, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_38, __pyx_n_s_49, 1699, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_48)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_codeobj_48 = (PyObject*)__Pyx_PyCode_New(2, 0, 2, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_47, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_38, __pyx_n_s_49, 1705, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_48)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - /* "schema.pyx":1704 + /* "schema.pyx":1710 * # Make the namespace human usable * from types import ModuleType * temp = CodeGeneratorRequest = ModuleType('CodeGeneratorRequest') # <<<<<<<<<<<<<< * temp.Reader = _CodeGeneratorRequestReader * temp.Builder = _CodeGeneratorRequestBuilder */ - __pyx_k_tuple_51 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s_50)); if (unlikely(!__pyx_k_tuple_51)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1704; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_51 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s_50)); if (unlikely(!__pyx_k_tuple_51)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_51); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_51)); - /* "schema.pyx":1708 + /* "schema.pyx":1714 * temp.Builder = _CodeGeneratorRequestBuilder * * temp = ElementSize = ModuleType('ElementSize') # <<<<<<<<<<<<<< * ElementSize = _ElementSize * */ - __pyx_k_tuple_52 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__ElementSize)); if (unlikely(!__pyx_k_tuple_52)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1708; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_52 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__ElementSize)); if (unlikely(!__pyx_k_tuple_52)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1714; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_52); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_52)); - /* "schema.pyx":1711 + /* "schema.pyx":1717 * ElementSize = _ElementSize * * temp = InterfaceNode = ModuleType('InterfaceNode') # <<<<<<<<<<<<<< * temp.Reader = _InterfaceNodeReader * temp.Builder = _InterfaceNodeBuilder */ - __pyx_k_tuple_53 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__InterfaceNode)); if (unlikely(!__pyx_k_tuple_53)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_53 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__InterfaceNode)); if (unlikely(!__pyx_k_tuple_53)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_53); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_53)); - /* "schema.pyx":1715 + /* "schema.pyx":1721 * temp.Builder = _InterfaceNodeBuilder * * temp = InterfaceNode.Method = ModuleType('InterfaceNode.Method') # <<<<<<<<<<<<<< * temp.Reader = _InterfaceNode_MethodReader * temp.Builder = _InterfaceNode_MethodBuilder */ - __pyx_k_tuple_55 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_54)); if (unlikely(!__pyx_k_tuple_55)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_55 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_54)); if (unlikely(!__pyx_k_tuple_55)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_55); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_55)); - /* "schema.pyx":1719 + /* "schema.pyx":1725 * temp.Builder = _InterfaceNode_MethodBuilder * * temp = InterfaceNode.Method.Param = ModuleType('InterfaceNode.Method.Param') # <<<<<<<<<<<<<< * temp.Reader = _InterfaceNode_Method_ParamReader * temp.Builder = _InterfaceNode_Method_ParamBuilder */ - __pyx_k_tuple_57 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_56)); if (unlikely(!__pyx_k_tuple_57)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_57 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_56)); if (unlikely(!__pyx_k_tuple_57)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_57); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_57)); - /* "schema.pyx":1723 + /* "schema.pyx":1729 * temp.Builder = _InterfaceNode_Method_ParamBuilder * * temp = Value = ModuleType('Value') # <<<<<<<<<<<<<< * temp.Reader = _ValueReader * temp.Builder = _ValueBuilder */ - __pyx_k_tuple_58 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Value)); if (unlikely(!__pyx_k_tuple_58)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_58 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Value)); if (unlikely(!__pyx_k_tuple_58)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1729; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_58); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_58)); - /* "schema.pyx":1727 + /* "schema.pyx":1733 * temp.Builder = _ValueBuilder * * temp = Value.Body = ModuleType('Value.Body') # <<<<<<<<<<<<<< * temp.Reader = _Value_BodyReader * temp.Builder = _Value_BodyBuilder */ - __pyx_k_tuple_60 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_59)); if (unlikely(!__pyx_k_tuple_60)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_60 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_59)); if (unlikely(!__pyx_k_tuple_60)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_60); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_60)); - /* "schema.pyx":1731 + /* "schema.pyx":1737 * temp.Builder = _Value_BodyBuilder * * temp = ConstNode = ModuleType('ConstNode') # <<<<<<<<<<<<<< * temp.Reader = _ConstNodeReader * temp.Builder = _ConstNodeBuilder */ - __pyx_k_tuple_61 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__ConstNode)); if (unlikely(!__pyx_k_tuple_61)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_61 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__ConstNode)); if (unlikely(!__pyx_k_tuple_61)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_61); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_61)); - /* "schema.pyx":1735 + /* "schema.pyx":1741 * temp.Builder = _ConstNodeBuilder * * temp = Type = ModuleType('Type') # <<<<<<<<<<<<<< * temp.Reader = _TypeReader * temp.Builder = _TypeBuilder */ - __pyx_k_tuple_62 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Type)); if (unlikely(!__pyx_k_tuple_62)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_62 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Type)); if (unlikely(!__pyx_k_tuple_62)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_62); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_62)); - /* "schema.pyx":1739 + /* "schema.pyx":1745 * temp.Builder = _TypeBuilder * * temp = Type.Body = ModuleType('Type.Body') # <<<<<<<<<<<<<< * temp.Reader = _Type_BodyReader * temp.Builder = _Type_BodyBuilder */ - __pyx_k_tuple_64 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_63)); if (unlikely(!__pyx_k_tuple_64)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_64 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_63)); if (unlikely(!__pyx_k_tuple_64)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_64); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_64)); - /* "schema.pyx":1743 + /* "schema.pyx":1749 * temp.Builder = _Type_BodyBuilder * * temp = FileNode = ModuleType('FileNode') # <<<<<<<<<<<<<< * temp.Reader = _FileNodeReader * temp.Builder = _FileNodeBuilder */ - __pyx_k_tuple_65 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__FileNode)); if (unlikely(!__pyx_k_tuple_65)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_65 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__FileNode)); if (unlikely(!__pyx_k_tuple_65)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1749; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_65); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_65)); - /* "schema.pyx":1747 + /* "schema.pyx":1753 * temp.Builder = _FileNodeBuilder * * temp = FileNode.Import = ModuleType('FileNode.Import') # <<<<<<<<<<<<<< * temp.Reader = _FileNode_ImportReader * temp.Builder = _FileNode_ImportBuilder */ - __pyx_k_tuple_67 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_66)); if (unlikely(!__pyx_k_tuple_67)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_67 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_66)); if (unlikely(!__pyx_k_tuple_67)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_67); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_67)); - /* "schema.pyx":1751 + /* "schema.pyx":1757 * temp.Builder = _FileNode_ImportBuilder * * temp = Node = ModuleType('Node') # <<<<<<<<<<<<<< * temp.Reader = _NodeReader * temp.Builder = _NodeBuilder */ - __pyx_k_tuple_68 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Node)); if (unlikely(!__pyx_k_tuple_68)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_68 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Node)); if (unlikely(!__pyx_k_tuple_68)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1757; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_68); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_68)); - /* "schema.pyx":1755 + /* "schema.pyx":1761 * temp.Builder = _NodeBuilder * * temp = Node.Body = ModuleType('Node.Body') # <<<<<<<<<<<<<< * temp.Reader = _Node_BodyReader * temp.Builder = _Node_BodyBuilder */ - __pyx_k_tuple_70 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_69)); if (unlikely(!__pyx_k_tuple_70)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_70 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_69)); if (unlikely(!__pyx_k_tuple_70)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_70); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_70)); - /* "schema.pyx":1759 + /* "schema.pyx":1765 * temp.Builder = _Node_BodyBuilder * * temp = Node.NestedNode = ModuleType('Node.NestedNode') # <<<<<<<<<<<<<< * temp.Reader = _Node_NestedNodeReader * temp.Builder = _Node_NestedNodeBuilder */ - __pyx_k_tuple_72 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_71)); if (unlikely(!__pyx_k_tuple_72)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_72 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_71)); if (unlikely(!__pyx_k_tuple_72)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_72); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_72)); - /* "schema.pyx":1763 + /* "schema.pyx":1769 * temp.Builder = _Node_NestedNodeBuilder * * temp = AnnotationNode = ModuleType('AnnotationNode') # <<<<<<<<<<<<<< * temp.Reader = _AnnotationNodeReader * temp.Builder = _AnnotationNodeBuilder */ - __pyx_k_tuple_73 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__AnnotationNode)); if (unlikely(!__pyx_k_tuple_73)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_73 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__AnnotationNode)); if (unlikely(!__pyx_k_tuple_73)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_73); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_73)); - /* "schema.pyx":1767 + /* "schema.pyx":1773 * temp.Builder = _AnnotationNodeBuilder * * temp = EnumNode = ModuleType('EnumNode') # <<<<<<<<<<<<<< * temp.Reader = _EnumNodeReader * temp.Builder = _EnumNodeBuilder */ - __pyx_k_tuple_74 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__EnumNode)); if (unlikely(!__pyx_k_tuple_74)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_74 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__EnumNode)); if (unlikely(!__pyx_k_tuple_74)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1773; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_74); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_74)); - /* "schema.pyx":1771 + /* "schema.pyx":1777 * temp.Builder = _EnumNodeBuilder * * temp = EnumNode.Enumerant = ModuleType('EnumNode.Enumerant') # <<<<<<<<<<<<<< * temp.Reader = _EnumNode_EnumerantReader * temp.Builder = _EnumNode_EnumerantBuilder */ - __pyx_k_tuple_76 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_75)); if (unlikely(!__pyx_k_tuple_76)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_76 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_75)); if (unlikely(!__pyx_k_tuple_76)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_76); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_76)); - /* "schema.pyx":1775 + /* "schema.pyx":1781 * temp.Builder = _EnumNode_EnumerantBuilder * * temp = StructNode = ModuleType('StructNode') # <<<<<<<<<<<<<< * temp.Reader = _StructNodeReader * temp.Builder = _StructNodeBuilder */ - __pyx_k_tuple_77 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__StructNode)); if (unlikely(!__pyx_k_tuple_77)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1775; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_77 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__StructNode)); if (unlikely(!__pyx_k_tuple_77)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1781; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_77); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_77)); - /* "schema.pyx":1779 + /* "schema.pyx":1785 * temp.Builder = _StructNodeBuilder * * temp = StructNode.Union = ModuleType('StructNode.Union') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_UnionReader * temp.Builder = _StructNode_UnionBuilder */ - __pyx_k_tuple_79 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_78)); if (unlikely(!__pyx_k_tuple_79)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_79 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_78)); if (unlikely(!__pyx_k_tuple_79)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_79); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_79)); - /* "schema.pyx":1783 + /* "schema.pyx":1789 * temp.Builder = _StructNode_UnionBuilder * * temp = StructNode.Member = ModuleType('StructNode.Member') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_MemberReader * temp.Builder = _StructNode_MemberBuilder */ - __pyx_k_tuple_81 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_80)); if (unlikely(!__pyx_k_tuple_81)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_81 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_80)); if (unlikely(!__pyx_k_tuple_81)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_81); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_81)); - /* "schema.pyx":1787 + /* "schema.pyx":1793 * temp.Builder = _StructNode_MemberBuilder * * temp = StructNode.Member.Body = ModuleType('StructNode.Member.Body') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_Member_BodyReader * temp.Builder = _StructNode_Member_BodyBuilder */ - __pyx_k_tuple_83 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_82)); if (unlikely(!__pyx_k_tuple_83)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_83 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_82)); if (unlikely(!__pyx_k_tuple_83)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_83); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_83)); - /* "schema.pyx":1791 + /* "schema.pyx":1797 * temp.Builder = _StructNode_Member_BodyBuilder * * temp = StructNode.Field = ModuleType('StructNode.Field') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_FieldReader * temp.Builder = _StructNode_FieldBuilder */ - __pyx_k_tuple_85 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_84)); if (unlikely(!__pyx_k_tuple_85)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_85 = PyTuple_Pack(1, ((PyObject *)__pyx_kp_s_84)); if (unlikely(!__pyx_k_tuple_85)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_85); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_85)); - /* "schema.pyx":1795 + /* "schema.pyx":1801 * temp.Builder = _StructNode_FieldBuilder * * temp = Annotation = ModuleType('Annotation') # <<<<<<<<<<<<<< * temp.Reader = _AnnotationReader * temp.Builder = _AnnotationBuilder */ - __pyx_k_tuple_86 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Annotation)); if (unlikely(!__pyx_k_tuple_86)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1795; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_k_tuple_86 = PyTuple_Pack(1, ((PyObject *)__pyx_n_s__Annotation)); if (unlikely(!__pyx_k_tuple_86)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1801; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_86); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_86)); __Pyx_RefNannyFinishContext(); @@ -43854,34 +44017,34 @@ PyMODINIT_FUNC PyInit_schema(void) /*--- Type init code ---*/ __pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Reader = &__pyx_vtable_6schema__List_FileNode_FileNode_Import_Reader; __pyx_vtable_6schema__List_FileNode_FileNode_Import_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Reader *, ::capnp::List<::capnp::schema::FileNode::Import>::Reader))__pyx_f_6schema_37_List_FileNode_FileNode_Import_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_FileNode_FileNode_Import_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 370; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_FileNode_FileNode_Import_Reader.tp_dict, __pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 370; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_FileNode_FileNode_Import_Reader", (PyObject *)&__pyx_type_6schema__List_FileNode_FileNode_Import_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 370; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_FileNode_FileNode_Import_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 374; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_FileNode_FileNode_Import_Reader.tp_dict, __pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 374; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_FileNode_FileNode_Import_Reader", (PyObject *)&__pyx_type_6schema__List_FileNode_FileNode_Import_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 374; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_FileNode_FileNode_Import_Reader = &__pyx_type_6schema__List_FileNode_FileNode_Import_Reader; __pyx_vtabptr_6schema__StructNode_FieldBuilder = &__pyx_vtable_6schema__StructNode_FieldBuilder; __pyx_vtable_6schema__StructNode_FieldBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_FieldBuilder *, ::capnp::schema::StructNode::Field::Builder))__pyx_f_6schema_24_StructNode_FieldBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__StructNode_FieldBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1520; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_FieldBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_FieldBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1520; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_FieldBuilder", (PyObject *)&__pyx_type_6schema__StructNode_FieldBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1520; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_FieldBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1526; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_FieldBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_FieldBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1526; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_FieldBuilder", (PyObject *)&__pyx_type_6schema__StructNode_FieldBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1526; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_FieldBuilder = &__pyx_type_6schema__StructNode_FieldBuilder; __pyx_vtabptr_6schema__StructNodeReader = &__pyx_vtable_6schema__StructNodeReader; __pyx_vtable_6schema__StructNodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNodeReader *, ::capnp::schema::StructNode::Reader))__pyx_f_6schema_17_StructNodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__StructNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1541; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNodeReader.tp_dict, __pyx_vtabptr_6schema__StructNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1541; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNodeReader", (PyObject *)&__pyx_type_6schema__StructNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1541; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1547; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNodeReader.tp_dict, __pyx_vtabptr_6schema__StructNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1547; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNodeReader", (PyObject *)&__pyx_type_6schema__StructNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1547; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNodeReader = &__pyx_type_6schema__StructNodeReader; __pyx_vtabptr_6schema__InterfaceNode_MethodReader = &__pyx_vtable_6schema__InterfaceNode_MethodReader; __pyx_vtable_6schema__InterfaceNode_MethodReader.init = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNode_MethodReader *, ::capnp::schema::InterfaceNode::Method::Reader))__pyx_f_6schema_27_InterfaceNode_MethodReader_init; - if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_MethodReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 504; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_MethodReader.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_MethodReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 504; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_MethodReader", (PyObject *)&__pyx_type_6schema__InterfaceNode_MethodReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 504; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_MethodReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_MethodReader.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_MethodReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_MethodReader", (PyObject *)&__pyx_type_6schema__InterfaceNode_MethodReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__InterfaceNode_MethodReader = &__pyx_type_6schema__InterfaceNode_MethodReader; __pyx_vtabptr_6schema__Node_BodyBuilder = &__pyx_vtable_6schema__Node_BodyBuilder; __pyx_vtable_6schema__Node_BodyBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__Node_BodyBuilder *, ::capnp::schema::Node::Body::Builder))__pyx_f_6schema_17_Node_BodyBuilder_init; __pyx_vtable_6schema__Node_BodyBuilder.which = (int (*)(struct __pyx_obj_6schema__Node_BodyBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_17_Node_BodyBuilder_which; - if (PyType_Ready(&__pyx_type_6schema__Node_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1084; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Node_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__Node_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1084; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Node_BodyBuilder", (PyObject *)&__pyx_type_6schema__Node_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1084; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Node_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1090; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Node_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__Node_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1090; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Node_BodyBuilder", (PyObject *)&__pyx_type_6schema__Node_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1090; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Node_BodyBuilder = &__pyx_type_6schema__Node_BodyBuilder; __pyx_vtabptr_6schema_MessageBuilder = &__pyx_vtable_6schema_MessageBuilder; __pyx_vtable_6schema_MessageBuilder.getRootCodeGeneratorRequest = (PyObject *(*)(struct __pyx_obj_6schema_MessageBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_14MessageBuilder_getRootCodeGeneratorRequest; @@ -43906,113 +44069,113 @@ PyMODINIT_FUNC PyInit_schema(void) __pyx_vtable_6schema_MessageBuilder.initRootStructNode = (PyObject *(*)(struct __pyx_obj_6schema_MessageBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_14MessageBuilder_initRootStructNode; __pyx_vtable_6schema_MessageBuilder.getRootAnnotation = (PyObject *(*)(struct __pyx_obj_6schema_MessageBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_14MessageBuilder_getRootAnnotation; __pyx_vtable_6schema_MessageBuilder.initRootAnnotation = (PyObject *(*)(struct __pyx_obj_6schema_MessageBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_14MessageBuilder_initRootAnnotation; - if (PyType_Ready(&__pyx_type_6schema_MessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1609; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema_MessageBuilder.tp_dict, __pyx_vtabptr_6schema_MessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1609; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "MessageBuilder", (PyObject *)&__pyx_type_6schema_MessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1609; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema_MessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema_MessageBuilder.tp_dict, __pyx_vtabptr_6schema_MessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "MessageBuilder", (PyObject *)&__pyx_type_6schema_MessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema_MessageBuilder = &__pyx_type_6schema_MessageBuilder; __pyx_vtabptr_6schema__ConstNodeReader = &__pyx_vtable_6schema__ConstNodeReader; __pyx_vtable_6schema__ConstNodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__ConstNodeReader *, ::capnp::schema::ConstNode::Reader))__pyx_f_6schema_16_ConstNodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__ConstNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 780; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__ConstNodeReader.tp_dict, __pyx_vtabptr_6schema__ConstNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 780; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_ConstNodeReader", (PyObject *)&__pyx_type_6schema__ConstNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 780; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__ConstNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__ConstNodeReader.tp_dict, __pyx_vtabptr_6schema__ConstNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_ConstNodeReader", (PyObject *)&__pyx_type_6schema__ConstNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__ConstNodeReader = &__pyx_type_6schema__ConstNodeReader; __pyx_vtabptr_6schema__FileNodeBuilder = &__pyx_vtable_6schema__FileNodeBuilder; __pyx_vtable_6schema__FileNodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__FileNodeBuilder *, ::capnp::schema::FileNode::Builder))__pyx_f_6schema_16_FileNodeBuilder_init; __pyx_vtable_6schema__FileNodeBuilder.initImports = (PyObject *(*)(struct __pyx_obj_6schema__FileNodeBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_16_FileNodeBuilder_initImports; - if (PyType_Ready(&__pyx_type_6schema__FileNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1043; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__FileNodeBuilder.tp_dict, __pyx_vtabptr_6schema__FileNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1043; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_FileNodeBuilder", (PyObject *)&__pyx_type_6schema__FileNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1043; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__FileNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1049; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__FileNodeBuilder.tp_dict, __pyx_vtabptr_6schema__FileNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1049; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_FileNodeBuilder", (PyObject *)&__pyx_type_6schema__FileNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1049; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__FileNodeBuilder = &__pyx_type_6schema__FileNodeBuilder; __pyx_vtabptr_6schema__Type_BodyReader = &__pyx_vtable_6schema__Type_BodyReader; __pyx_vtable_6schema__Type_BodyReader.init = (PyObject *(*)(struct __pyx_obj_6schema__Type_BodyReader *, ::capnp::schema::Type::Body::Reader))__pyx_f_6schema_16_Type_BodyReader_init; __pyx_vtable_6schema__Type_BodyReader.which = (int (*)(struct __pyx_obj_6schema__Type_BodyReader *, int __pyx_skip_dispatch))__pyx_f_6schema_16_Type_BodyReader_which; - if (PyType_Ready(&__pyx_type_6schema__Type_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 812; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Type_BodyReader.tp_dict, __pyx_vtabptr_6schema__Type_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 812; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Type_BodyReader", (PyObject *)&__pyx_type_6schema__Type_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 812; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Type_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Type_BodyReader.tp_dict, __pyx_vtabptr_6schema__Type_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Type_BodyReader", (PyObject *)&__pyx_type_6schema__Type_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Type_BodyReader = &__pyx_type_6schema__Type_BodyReader; __pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Reader = &__pyx_vtable_6schema__List_InterfaceNode_InterfaceNode_Method_Reader; __pyx_vtable_6schema__List_InterfaceNode_InterfaceNode_Method_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Reader *, ::capnp::List<::capnp::schema::InterfaceNode::Method>::Reader))__pyx_f_6schema_47_List_InterfaceNode_InterfaceNode_Method_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_InterfaceNode_Method_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 50; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 50; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_InterfaceNode_Method_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 50; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Reader = &__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Reader; - if (PyType_Ready(&__pyx_type_6schema___pyx_scope_struct_1_genexpr) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema___pyx_scope_struct_1_genexpr) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 47; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema___pyx_scope_struct_1_genexpr = &__pyx_type_6schema___pyx_scope_struct_1_genexpr; __pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Builder = &__pyx_vtable_6schema__List_StructNode_Member_Annotation_Builder; __pyx_vtable_6schema__List_StructNode_Member_Annotation_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Builder *, ::capnp::List<::capnp::schema::Annotation>::Builder))__pyx_f_6schema_42_List_StructNode_Member_Annotation_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Member_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Member_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Member_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_StructNode_Member_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Member_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 253; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Member_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 253; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Member_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_StructNode_Member_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 253; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_StructNode_Member_Annotation_Builder = &__pyx_type_6schema__List_StructNode_Member_Annotation_Builder; __pyx_vtabptr_6schema__InterfaceNodeReader = &__pyx_vtable_6schema__InterfaceNodeReader; __pyx_vtable_6schema__InterfaceNodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNodeReader *, ::capnp::schema::InterfaceNode::Reader))__pyx_f_6schema_20_InterfaceNodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__InterfaceNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 565; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNodeReader.tp_dict, __pyx_vtabptr_6schema__InterfaceNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 565; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNodeReader", (PyObject *)&__pyx_type_6schema__InterfaceNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 565; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__InterfaceNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 569; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNodeReader.tp_dict, __pyx_vtabptr_6schema__InterfaceNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 569; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNodeReader", (PyObject *)&__pyx_type_6schema__InterfaceNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 569; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__InterfaceNodeReader = &__pyx_type_6schema__InterfaceNodeReader; __pyx_vtabptr_6schema__EnumNodeReader = &__pyx_vtable_6schema__EnumNodeReader; __pyx_vtable_6schema__EnumNodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__EnumNodeReader *, ::capnp::schema::EnumNode::Reader))__pyx_f_6schema_15_EnumNodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__EnumNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1362; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__EnumNodeReader.tp_dict, __pyx_vtabptr_6schema__EnumNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1362; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_EnumNodeReader", (PyObject *)&__pyx_type_6schema__EnumNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1362; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__EnumNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1368; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__EnumNodeReader.tp_dict, __pyx_vtabptr_6schema__EnumNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1368; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_EnumNodeReader", (PyObject *)&__pyx_type_6schema__EnumNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1368; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__EnumNodeReader = &__pyx_type_6schema__EnumNodeReader; __pyx_vtabptr_6schema__List_Node_Annotation_Builder = &__pyx_vtable_6schema__List_Node_Annotation_Builder; __pyx_vtable_6schema__List_Node_Annotation_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_Node_Annotation_Builder *, ::capnp::List<::capnp::schema::Annotation>::Builder))__pyx_f_6schema_29_List_Node_Annotation_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_Node_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 330; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_Node_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 330; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_Node_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 330; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_Node_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 334; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_Node_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 334; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_Node_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 334; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_Node_Annotation_Builder = &__pyx_type_6schema__List_Node_Annotation_Builder; __pyx_vtabptr_6schema__EnumNode_EnumerantReader = &__pyx_vtable_6schema__EnumNode_EnumerantReader; __pyx_vtable_6schema__EnumNode_EnumerantReader.init = (PyObject *(*)(struct __pyx_obj_6schema__EnumNode_EnumerantReader *, ::capnp::schema::EnumNode::Enumerant::Reader))__pyx_f_6schema_25_EnumNode_EnumerantReader_init; - if (PyType_Ready(&__pyx_type_6schema__EnumNode_EnumerantReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1325; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__EnumNode_EnumerantReader.tp_dict, __pyx_vtabptr_6schema__EnumNode_EnumerantReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1325; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_EnumNode_EnumerantReader", (PyObject *)&__pyx_type_6schema__EnumNode_EnumerantReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1325; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__EnumNode_EnumerantReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1331; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__EnumNode_EnumerantReader.tp_dict, __pyx_vtabptr_6schema__EnumNode_EnumerantReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1331; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_EnumNode_EnumerantReader", (PyObject *)&__pyx_type_6schema__EnumNode_EnumerantReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1331; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__EnumNode_EnumerantReader = &__pyx_type_6schema__EnumNode_EnumerantReader; __pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Builder = &__pyx_vtable_6schema__List_StructNode_StructNode_Member_Builder; __pyx_vtable_6schema__List_StructNode_StructNode_Member_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Builder *, ::capnp::List<::capnp::schema::StructNode::Member>::Builder))__pyx_f_6schema_42_List_StructNode_StructNode_Member_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_StructNode_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 303; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_StructNode_Member_Builder.tp_dict, __pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 303; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_StructNode_Member_Builder", (PyObject *)&__pyx_type_6schema__List_StructNode_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 303; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_StructNode_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 307; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_StructNode_Member_Builder.tp_dict, __pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 307; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_StructNode_Member_Builder", (PyObject *)&__pyx_type_6schema__List_StructNode_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 307; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_StructNode_StructNode_Member_Builder = &__pyx_type_6schema__List_StructNode_StructNode_Member_Builder; __pyx_vtabptr_6schema__List_UInt64_Builder = &__pyx_vtable_6schema__List_UInt64_Builder; __pyx_vtable_6schema__List_UInt64_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_UInt64_Builder *, ::capnp::List<__pyx_t_6schema_UInt64>::Builder))__pyx_f_6schema_20_List_UInt64_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_UInt64_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_UInt64_Builder.tp_dict, __pyx_vtabptr_6schema__List_UInt64_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_UInt64_Builder", (PyObject *)&__pyx_type_6schema__List_UInt64_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_UInt64_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 199; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_UInt64_Builder.tp_dict, __pyx_vtabptr_6schema__List_UInt64_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 199; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_UInt64_Builder", (PyObject *)&__pyx_type_6schema__List_UInt64_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 199; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_UInt64_Builder = &__pyx_type_6schema__List_UInt64_Builder; __pyx_vtabptr_6schema__InterfaceNode_MethodBuilder = &__pyx_vtable_6schema__InterfaceNode_MethodBuilder; __pyx_vtable_6schema__InterfaceNode_MethodBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *, ::capnp::schema::InterfaceNode::Method::Builder))__pyx_f_6schema_28_InterfaceNode_MethodBuilder_init; __pyx_vtable_6schema__InterfaceNode_MethodBuilder.initParams = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initParams; __pyx_vtable_6schema__InterfaceNode_MethodBuilder.initAnnotations = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNode_MethodBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_28_InterfaceNode_MethodBuilder_initAnnotations; - if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_MethodBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 529; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_MethodBuilder.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_MethodBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 529; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_MethodBuilder", (PyObject *)&__pyx_type_6schema__InterfaceNode_MethodBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 529; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_MethodBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 533; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_MethodBuilder.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_MethodBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 533; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_MethodBuilder", (PyObject *)&__pyx_type_6schema__InterfaceNode_MethodBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 533; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__InterfaceNode_MethodBuilder = &__pyx_type_6schema__InterfaceNode_MethodBuilder; __pyx_vtabptr_6schema__List_Node_Node_NestedNode_Reader = &__pyx_vtable_6schema__List_Node_Node_NestedNode_Reader; __pyx_vtable_6schema__List_Node_Node_NestedNode_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_Node_Node_NestedNode_Reader *, ::capnp::List<::capnp::schema::Node::NestedNode>::Reader))__pyx_f_6schema_33_List_Node_Node_NestedNode_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_Node_Node_NestedNode_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Node_NestedNode_Reader.tp_dict, __pyx_vtabptr_6schema__List_Node_Node_NestedNode_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Node_NestedNode_Reader", (PyObject *)&__pyx_type_6schema__List_Node_Node_NestedNode_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_Node_Node_NestedNode_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Node_NestedNode_Reader.tp_dict, __pyx_vtabptr_6schema__List_Node_Node_NestedNode_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Node_NestedNode_Reader", (PyObject *)&__pyx_type_6schema__List_Node_Node_NestedNode_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 212; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_Node_Node_NestedNode_Reader = &__pyx_type_6schema__List_Node_Node_NestedNode_Reader; __pyx_vtabptr_6schema__TypeReader = &__pyx_vtable_6schema__TypeReader; __pyx_vtable_6schema__TypeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__TypeReader *, ::capnp::schema::Type::Reader))__pyx_f_6schema_11_TypeReader_init; - if (PyType_Ready(&__pyx_type_6schema__TypeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 981; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__TypeReader.tp_dict, __pyx_vtabptr_6schema__TypeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 981; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_TypeReader", (PyObject *)&__pyx_type_6schema__TypeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 981; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__TypeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 987; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__TypeReader.tp_dict, __pyx_vtabptr_6schema__TypeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 987; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_TypeReader", (PyObject *)&__pyx_type_6schema__TypeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 987; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__TypeReader = &__pyx_type_6schema__TypeReader; __pyx_vtabptr_6schema__EnumNode_EnumerantBuilder = &__pyx_vtable_6schema__EnumNode_EnumerantBuilder; __pyx_vtable_6schema__EnumNode_EnumerantBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *, ::capnp::schema::EnumNode::Enumerant::Builder))__pyx_f_6schema_26_EnumNode_EnumerantBuilder_init; __pyx_vtable_6schema__EnumNode_EnumerantBuilder.initAnnotations = (PyObject *(*)(struct __pyx_obj_6schema__EnumNode_EnumerantBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_26_EnumNode_EnumerantBuilder_initAnnotations; - if (PyType_Ready(&__pyx_type_6schema__EnumNode_EnumerantBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1341; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__EnumNode_EnumerantBuilder.tp_dict, __pyx_vtabptr_6schema__EnumNode_EnumerantBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1341; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_EnumNode_EnumerantBuilder", (PyObject *)&__pyx_type_6schema__EnumNode_EnumerantBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1341; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__EnumNode_EnumerantBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__EnumNode_EnumerantBuilder.tp_dict, __pyx_vtabptr_6schema__EnumNode_EnumerantBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_EnumNode_EnumerantBuilder", (PyObject *)&__pyx_type_6schema__EnumNode_EnumerantBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__EnumNode_EnumerantBuilder = &__pyx_type_6schema__EnumNode_EnumerantBuilder; __pyx_vtabptr_6schema__StructNode_Member_BodyReader = &__pyx_vtable_6schema__StructNode_Member_BodyReader; __pyx_vtable_6schema__StructNode_Member_BodyReader.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_Member_BodyReader *, ::capnp::schema::StructNode::Member::Body::Reader))__pyx_f_6schema_29_StructNode_Member_BodyReader_init; __pyx_vtable_6schema__StructNode_Member_BodyReader.which = (int (*)(struct __pyx_obj_6schema__StructNode_Member_BodyReader *, int __pyx_skip_dispatch))__pyx_f_6schema_29_StructNode_Member_BodyReader_which; - if (PyType_Ready(&__pyx_type_6schema__StructNode_Member_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1417; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_Member_BodyReader.tp_dict, __pyx_vtabptr_6schema__StructNode_Member_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1417; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_Member_BodyReader", (PyObject *)&__pyx_type_6schema__StructNode_Member_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1417; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_Member_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_Member_BodyReader.tp_dict, __pyx_vtabptr_6schema__StructNode_Member_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_Member_BodyReader", (PyObject *)&__pyx_type_6schema__StructNode_Member_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1423; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_Member_BodyReader = &__pyx_type_6schema__StructNode_Member_BodyReader; __pyx_vtabptr_6schema_MessageReader = &__pyx_vtable_6schema_MessageReader; __pyx_vtable_6schema_MessageReader.getRootCodeGeneratorRequest = (PyObject *(*)(struct __pyx_obj_6schema_MessageReader *, int __pyx_skip_dispatch))__pyx_f_6schema_13MessageReader_getRootCodeGeneratorRequest; @@ -44026,1721 +44189,1721 @@ PyMODINIT_FUNC PyInit_schema(void) __pyx_vtable_6schema_MessageReader.getRootEnumNode = (PyObject *(*)(struct __pyx_obj_6schema_MessageReader *, int __pyx_skip_dispatch))__pyx_f_6schema_13MessageReader_getRootEnumNode; __pyx_vtable_6schema_MessageReader.getRootStructNode = (PyObject *(*)(struct __pyx_obj_6schema_MessageReader *, int __pyx_skip_dispatch))__pyx_f_6schema_13MessageReader_getRootStructNode; __pyx_vtable_6schema_MessageReader.getRootAnnotation = (PyObject *(*)(struct __pyx_obj_6schema_MessageReader *, int __pyx_skip_dispatch))__pyx_f_6schema_13MessageReader_getRootAnnotation; - if (PyType_Ready(&__pyx_type_6schema_MessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1662; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema_MessageReader.tp_dict, __pyx_vtabptr_6schema_MessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1662; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "MessageReader", (PyObject *)&__pyx_type_6schema_MessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1662; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema_MessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1668; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema_MessageReader.tp_dict, __pyx_vtabptr_6schema_MessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1668; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "MessageReader", (PyObject *)&__pyx_type_6schema_MessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1668; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema_MessageReader = &__pyx_type_6schema_MessageReader; __pyx_vtabptr_6schema_PackedFdMessageReader = &__pyx_vtable_6schema_PackedFdMessageReader; __pyx_vtable_6schema_PackedFdMessageReader.__pyx_base = *__pyx_vtabptr_6schema_MessageReader; __pyx_type_6schema_PackedFdMessageReader.tp_base = __pyx_ptype_6schema_MessageReader; - if (PyType_Ready(&__pyx_type_6schema_PackedFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1693; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema_PackedFdMessageReader.tp_dict, __pyx_vtabptr_6schema_PackedFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1693; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "PackedFdMessageReader", (PyObject *)&__pyx_type_6schema_PackedFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1693; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema_PackedFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema_PackedFdMessageReader.tp_dict, __pyx_vtabptr_6schema_PackedFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "PackedFdMessageReader", (PyObject *)&__pyx_type_6schema_PackedFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema_PackedFdMessageReader = &__pyx_type_6schema_PackedFdMessageReader; __pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Reader = &__pyx_vtable_6schema__List_EnumNode_EnumNode_Enumerant_Reader; __pyx_vtable_6schema__List_EnumNode_EnumNode_Enumerant_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Reader *, ::capnp::List<::capnp::schema::EnumNode::Enumerant>::Reader))__pyx_f_6schema_40_List_EnumNode_EnumNode_Enumerant_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Reader.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_EnumNode_Enumerant_Reader", (PyObject *)&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Reader.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_EnumNode_Enumerant_Reader", (PyObject *)&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Reader = &__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Reader; __pyx_vtabptr_6schema__FileNode_ImportReader = &__pyx_vtable_6schema__FileNode_ImportReader; __pyx_vtable_6schema__FileNode_ImportReader.init = (PyObject *(*)(struct __pyx_obj_6schema__FileNode_ImportReader *, ::capnp::schema::FileNode::Import::Reader))__pyx_f_6schema_22_FileNode_ImportReader_init; - if (PyType_Ready(&__pyx_type_6schema__FileNode_ImportReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1004; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__FileNode_ImportReader.tp_dict, __pyx_vtabptr_6schema__FileNode_ImportReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1004; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_FileNode_ImportReader", (PyObject *)&__pyx_type_6schema__FileNode_ImportReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1004; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__FileNode_ImportReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__FileNode_ImportReader.tp_dict, __pyx_vtabptr_6schema__FileNode_ImportReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_FileNode_ImportReader", (PyObject *)&__pyx_type_6schema__FileNode_ImportReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__FileNode_ImportReader = &__pyx_type_6schema__FileNode_ImportReader; __pyx_vtabptr_6schema_StreamFdMessageReader = &__pyx_vtable_6schema_StreamFdMessageReader; __pyx_vtable_6schema_StreamFdMessageReader.__pyx_base = *__pyx_vtabptr_6schema_MessageReader; __pyx_type_6schema_StreamFdMessageReader.tp_base = __pyx_ptype_6schema_MessageReader; - if (PyType_Ready(&__pyx_type_6schema_StreamFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1689; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema_StreamFdMessageReader.tp_dict, __pyx_vtabptr_6schema_StreamFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1689; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "StreamFdMessageReader", (PyObject *)&__pyx_type_6schema_StreamFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1689; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema_StreamFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1695; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema_StreamFdMessageReader.tp_dict, __pyx_vtabptr_6schema_StreamFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1695; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "StreamFdMessageReader", (PyObject *)&__pyx_type_6schema_StreamFdMessageReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1695; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema_StreamFdMessageReader = &__pyx_type_6schema_StreamFdMessageReader; __pyx_vtabptr_6schema__InterfaceNode_Method_ParamReader = &__pyx_vtable_6schema__InterfaceNode_Method_ParamReader; __pyx_vtable_6schema__InterfaceNode_Method_ParamReader.init = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNode_Method_ParamReader *, ::capnp::schema::InterfaceNode::Method::Param::Reader))__pyx_f_6schema_33_InterfaceNode_Method_ParamReader_init; - if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_Method_ParamReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_Method_ParamReader.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_Method_ParamReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_Method_ParamReader", (PyObject *)&__pyx_type_6schema__InterfaceNode_Method_ParamReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_Method_ParamReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 463; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_Method_ParamReader.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_Method_ParamReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 463; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_Method_ParamReader", (PyObject *)&__pyx_type_6schema__InterfaceNode_Method_ParamReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 463; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__InterfaceNode_Method_ParamReader = &__pyx_type_6schema__InterfaceNode_Method_ParamReader; __pyx_vtabptr_6schema__CodeGeneratorRequestBuilder = &__pyx_vtable_6schema__CodeGeneratorRequestBuilder; __pyx_vtable_6schema__CodeGeneratorRequestBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *, ::capnp::schema::CodeGeneratorRequest::Builder))__pyx_f_6schema_28_CodeGeneratorRequestBuilder_init; __pyx_vtable_6schema__CodeGeneratorRequestBuilder.initNodes = (PyObject *(*)(struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initNodes; __pyx_vtable_6schema__CodeGeneratorRequestBuilder.initRequestedFiles = (PyObject *(*)(struct __pyx_obj_6schema__CodeGeneratorRequestBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_28_CodeGeneratorRequestBuilder_initRequestedFiles; - if (PyType_Ready(&__pyx_type_6schema__CodeGeneratorRequestBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__CodeGeneratorRequestBuilder.tp_dict, __pyx_vtabptr_6schema__CodeGeneratorRequestBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_CodeGeneratorRequestBuilder", (PyObject *)&__pyx_type_6schema__CodeGeneratorRequestBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__CodeGeneratorRequestBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 442; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__CodeGeneratorRequestBuilder.tp_dict, __pyx_vtabptr_6schema__CodeGeneratorRequestBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 442; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_CodeGeneratorRequestBuilder", (PyObject *)&__pyx_type_6schema__CodeGeneratorRequestBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 442; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__CodeGeneratorRequestBuilder = &__pyx_type_6schema__CodeGeneratorRequestBuilder; __pyx_vtabptr_6schema__NodeBuilder = &__pyx_vtable_6schema__NodeBuilder; __pyx_vtable_6schema__NodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__NodeBuilder *, ::capnp::schema::Node::Builder))__pyx_f_6schema_12_NodeBuilder_init; __pyx_vtable_6schema__NodeBuilder.initAnnotations = (PyObject *(*)(struct __pyx_obj_6schema__NodeBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_12_NodeBuilder_initAnnotations; __pyx_vtable_6schema__NodeBuilder.initNestedNodes = (PyObject *(*)(struct __pyx_obj_6schema__NodeBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_12_NodeBuilder_initNestedNodes; - if (PyType_Ready(&__pyx_type_6schema__NodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1177; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__NodeBuilder.tp_dict, __pyx_vtabptr_6schema__NodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1177; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_NodeBuilder", (PyObject *)&__pyx_type_6schema__NodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1177; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__NodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1183; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__NodeBuilder.tp_dict, __pyx_vtabptr_6schema__NodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1183; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_NodeBuilder", (PyObject *)&__pyx_type_6schema__NodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1183; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__NodeBuilder = &__pyx_type_6schema__NodeBuilder; __pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Builder = &__pyx_vtable_6schema__List_FileNode_FileNode_Import_Builder; __pyx_vtable_6schema__List_FileNode_FileNode_Import_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_FileNode_FileNode_Import_Builder *, ::capnp::List<::capnp::schema::FileNode::Import>::Builder))__pyx_f_6schema_38_List_FileNode_FileNode_Import_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_FileNode_FileNode_Import_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_FileNode_FileNode_Import_Builder.tp_dict, __pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_FileNode_FileNode_Import_Builder", (PyObject *)&__pyx_type_6schema__List_FileNode_FileNode_Import_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_FileNode_FileNode_Import_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 388; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_FileNode_FileNode_Import_Builder.tp_dict, __pyx_vtabptr_6schema__List_FileNode_FileNode_Import_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 388; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_FileNode_FileNode_Import_Builder", (PyObject *)&__pyx_type_6schema__List_FileNode_FileNode_Import_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 388; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_FileNode_FileNode_Import_Builder = &__pyx_type_6schema__List_FileNode_FileNode_Import_Builder; __pyx_vtabptr_6schema__StructNode_UnionReader = &__pyx_vtable_6schema__StructNode_UnionReader; __pyx_vtable_6schema__StructNode_UnionReader.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_UnionReader *, ::capnp::schema::StructNode::Union::Reader))__pyx_f_6schema_23_StructNode_UnionReader_init; - if (PyType_Ready(&__pyx_type_6schema__StructNode_UnionReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1385; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_UnionReader.tp_dict, __pyx_vtabptr_6schema__StructNode_UnionReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1385; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_UnionReader", (PyObject *)&__pyx_type_6schema__StructNode_UnionReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1385; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_UnionReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1391; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_UnionReader.tp_dict, __pyx_vtabptr_6schema__StructNode_UnionReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1391; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_UnionReader", (PyObject *)&__pyx_type_6schema__StructNode_UnionReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1391; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_UnionReader = &__pyx_type_6schema__StructNode_UnionReader; __pyx_vtabptr_6schema_MallocMessageBuilder = &__pyx_vtable_6schema_MallocMessageBuilder; __pyx_vtable_6schema_MallocMessageBuilder.__pyx_base = *__pyx_vtabptr_6schema_MessageBuilder; __pyx_type_6schema_MallocMessageBuilder.tp_base = __pyx_ptype_6schema_MessageBuilder; - if (PyType_Ready(&__pyx_type_6schema_MallocMessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1657; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema_MallocMessageBuilder.tp_dict, __pyx_vtabptr_6schema_MallocMessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1657; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "MallocMessageBuilder", (PyObject *)&__pyx_type_6schema_MallocMessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1657; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema_MallocMessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1663; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema_MallocMessageBuilder.tp_dict, __pyx_vtabptr_6schema_MallocMessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1663; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "MallocMessageBuilder", (PyObject *)&__pyx_type_6schema_MallocMessageBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1663; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema_MallocMessageBuilder = &__pyx_type_6schema_MallocMessageBuilder; __pyx_vtabptr_6schema__TypeBuilder = &__pyx_vtable_6schema__TypeBuilder; __pyx_vtable_6schema__TypeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__TypeBuilder *, ::capnp::schema::Type::Builder))__pyx_f_6schema_12_TypeBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__TypeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__TypeBuilder.tp_dict, __pyx_vtabptr_6schema__TypeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_TypeBuilder", (PyObject *)&__pyx_type_6schema__TypeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__TypeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 997; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__TypeBuilder.tp_dict, __pyx_vtabptr_6schema__TypeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 997; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_TypeBuilder", (PyObject *)&__pyx_type_6schema__TypeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 997; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__TypeBuilder = &__pyx_type_6schema__TypeBuilder; __pyx_vtabptr_6schema__AnnotationBuilder = &__pyx_vtable_6schema__AnnotationBuilder; __pyx_vtable_6schema__AnnotationBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__AnnotationBuilder *, ::capnp::schema::Annotation::Builder))__pyx_f_6schema_18_AnnotationBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__AnnotationBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationBuilder.tp_dict, __pyx_vtabptr_6schema__AnnotationBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_AnnotationBuilder", (PyObject *)&__pyx_type_6schema__AnnotationBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__AnnotationBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1598; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationBuilder.tp_dict, __pyx_vtabptr_6schema__AnnotationBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1598; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_AnnotationBuilder", (PyObject *)&__pyx_type_6schema__AnnotationBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1598; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__AnnotationBuilder = &__pyx_type_6schema__AnnotationBuilder; __pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Builder = &__pyx_vtable_6schema__List_CodeGeneratorRequest_Node_Builder; __pyx_vtable_6schema__List_CodeGeneratorRequest_Node_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Builder *, ::capnp::List<::capnp::schema::Node>::Builder))__pyx_f_6schema_39_List_CodeGeneratorRequest_Node_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_CodeGeneratorRequest_Node_Builder.tp_dict, __pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_CodeGeneratorRequest_Node_Builder", (PyObject *)&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 361; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_CodeGeneratorRequest_Node_Builder.tp_dict, __pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 361; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_CodeGeneratorRequest_Node_Builder", (PyObject *)&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 361; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Builder = &__pyx_type_6schema__List_CodeGeneratorRequest_Node_Builder; __pyx_vtabptr_6schema__Node_NestedNodeBuilder = &__pyx_vtable_6schema__Node_NestedNodeBuilder; __pyx_vtable_6schema__Node_NestedNodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__Node_NestedNodeBuilder *, ::capnp::schema::Node::NestedNode::Builder))__pyx_f_6schema_23_Node_NestedNodeBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__Node_NestedNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1136; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Node_NestedNodeBuilder.tp_dict, __pyx_vtabptr_6schema__Node_NestedNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1136; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Node_NestedNodeBuilder", (PyObject *)&__pyx_type_6schema__Node_NestedNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1136; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Node_NestedNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1142; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Node_NestedNodeBuilder.tp_dict, __pyx_vtabptr_6schema__Node_NestedNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1142; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Node_NestedNodeBuilder", (PyObject *)&__pyx_type_6schema__Node_NestedNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1142; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Node_NestedNodeBuilder = &__pyx_type_6schema__Node_NestedNodeBuilder; __pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader = &__pyx_vtable_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader; __pyx_vtable_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader *, ::capnp::List<::capnp::schema::InterfaceNode::Method::Param>::Reader))__pyx_f_6schema_60_List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 127; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 127; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 127; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 131; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 131; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 131; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader = &__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader; __pyx_vtabptr_6schema__StructNode_UnionBuilder = &__pyx_vtable_6schema__StructNode_UnionBuilder; __pyx_vtable_6schema__StructNode_UnionBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_UnionBuilder *, ::capnp::schema::StructNode::Union::Builder))__pyx_f_6schema_24_StructNode_UnionBuilder_init; __pyx_vtable_6schema__StructNode_UnionBuilder.initMembers = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_UnionBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_24_StructNode_UnionBuilder_initMembers; - if (PyType_Ready(&__pyx_type_6schema__StructNode_UnionBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1398; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_UnionBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_UnionBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1398; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_UnionBuilder", (PyObject *)&__pyx_type_6schema__StructNode_UnionBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1398; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_UnionBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1404; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_UnionBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_UnionBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1404; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_UnionBuilder", (PyObject *)&__pyx_type_6schema__StructNode_UnionBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1404; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_UnionBuilder = &__pyx_type_6schema__StructNode_UnionBuilder; __pyx_vtabptr_6schema__Node_BodyReader = &__pyx_vtable_6schema__Node_BodyReader; __pyx_vtable_6schema__Node_BodyReader.init = (PyObject *(*)(struct __pyx_obj_6schema__Node_BodyReader *, ::capnp::schema::Node::Body::Reader))__pyx_f_6schema_16_Node_BodyReader_init; __pyx_vtable_6schema__Node_BodyReader.which = (int (*)(struct __pyx_obj_6schema__Node_BodyReader *, int __pyx_skip_dispatch))__pyx_f_6schema_16_Node_BodyReader_which; - if (PyType_Ready(&__pyx_type_6schema__Node_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Node_BodyReader.tp_dict, __pyx_vtabptr_6schema__Node_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Node_BodyReader", (PyObject *)&__pyx_type_6schema__Node_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Node_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1063; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Node_BodyReader.tp_dict, __pyx_vtabptr_6schema__Node_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1063; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Node_BodyReader", (PyObject *)&__pyx_type_6schema__Node_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1063; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Node_BodyReader = &__pyx_type_6schema__Node_BodyReader; __pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Reader = &__pyx_vtable_6schema__List_EnumNode_Enumerant_Annotation_Reader; __pyx_vtable_6schema__List_EnumNode_Enumerant_Annotation_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Reader *, ::capnp::List<::capnp::schema::Annotation>::Reader))__pyx_f_6schema_42_List_EnumNode_Enumerant_Annotation_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_Enumerant_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 401; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 401; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_Enumerant_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 401; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Reader = &__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Reader; __pyx_vtabptr_6schema__ConstNodeBuilder = &__pyx_vtable_6schema__ConstNodeBuilder; __pyx_vtable_6schema__ConstNodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__ConstNodeBuilder *, ::capnp::schema::ConstNode::Builder))__pyx_f_6schema_17_ConstNodeBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__ConstNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__ConstNodeBuilder.tp_dict, __pyx_vtabptr_6schema__ConstNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_ConstNodeBuilder", (PyObject *)&__pyx_type_6schema__ConstNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__ConstNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 799; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__ConstNodeBuilder.tp_dict, __pyx_vtabptr_6schema__ConstNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 799; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_ConstNodeBuilder", (PyObject *)&__pyx_type_6schema__ConstNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 799; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__ConstNodeBuilder = &__pyx_type_6schema__ConstNodeBuilder; __pyx_vtabptr_6schema__AnnotationReader = &__pyx_vtable_6schema__AnnotationReader; __pyx_vtable_6schema__AnnotationReader.init = (PyObject *(*)(struct __pyx_obj_6schema__AnnotationReader *, ::capnp::schema::Annotation::Reader))__pyx_f_6schema_17_AnnotationReader_init; - if (PyType_Ready(&__pyx_type_6schema__AnnotationReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1579; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationReader.tp_dict, __pyx_vtabptr_6schema__AnnotationReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1579; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_AnnotationReader", (PyObject *)&__pyx_type_6schema__AnnotationReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1579; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__AnnotationReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1585; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationReader.tp_dict, __pyx_vtabptr_6schema__AnnotationReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1585; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_AnnotationReader", (PyObject *)&__pyx_type_6schema__AnnotationReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1585; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__AnnotationReader = &__pyx_type_6schema__AnnotationReader; __pyx_vtabptr_6schema__ValueReader = &__pyx_vtable_6schema__ValueReader; __pyx_vtable_6schema__ValueReader.init = (PyObject *(*)(struct __pyx_obj_6schema__ValueReader *, ::capnp::schema::Value::Reader))__pyx_f_6schema_12_ValueReader_init; - if (PyType_Ready(&__pyx_type_6schema__ValueReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 758; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__ValueReader.tp_dict, __pyx_vtabptr_6schema__ValueReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 758; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_ValueReader", (PyObject *)&__pyx_type_6schema__ValueReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 758; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__ValueReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__ValueReader.tp_dict, __pyx_vtabptr_6schema__ValueReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_ValueReader", (PyObject *)&__pyx_type_6schema__ValueReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__ValueReader = &__pyx_type_6schema__ValueReader; __pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Reader = &__pyx_vtable_6schema__List_CodeGeneratorRequest_Node_Reader; __pyx_vtable_6schema__List_CodeGeneratorRequest_Node_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_CodeGeneratorRequest_Node_Reader *, ::capnp::List<::capnp::schema::Node>::Reader))__pyx_f_6schema_38_List_CodeGeneratorRequest_Node_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 343; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_CodeGeneratorRequest_Node_Reader.tp_dict, __pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 343; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_CodeGeneratorRequest_Node_Reader", (PyObject *)&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 343; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_CodeGeneratorRequest_Node_Reader.tp_dict, __pyx_vtabptr_6schema__List_CodeGeneratorRequest_Node_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_CodeGeneratorRequest_Node_Reader", (PyObject *)&__pyx_type_6schema__List_CodeGeneratorRequest_Node_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_CodeGeneratorRequest_Node_Reader = &__pyx_type_6schema__List_CodeGeneratorRequest_Node_Reader; __pyx_vtabptr_6schema__StructNode_Member_BodyBuilder = &__pyx_vtable_6schema__StructNode_Member_BodyBuilder; __pyx_vtable_6schema__StructNode_Member_BodyBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_Member_BodyBuilder *, ::capnp::schema::StructNode::Member::Body::Builder))__pyx_f_6schema_30_StructNode_Member_BodyBuilder_init; __pyx_vtable_6schema__StructNode_Member_BodyBuilder.which = (int (*)(struct __pyx_obj_6schema__StructNode_Member_BodyBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_30_StructNode_Member_BodyBuilder_which; - if (PyType_Ready(&__pyx_type_6schema__StructNode_Member_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1432; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_Member_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_Member_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1432; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_Member_BodyBuilder", (PyObject *)&__pyx_type_6schema__StructNode_Member_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1432; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_Member_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_Member_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_Member_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_Member_BodyBuilder", (PyObject *)&__pyx_type_6schema__StructNode_Member_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_Member_BodyBuilder = &__pyx_type_6schema__StructNode_Member_BodyBuilder; __pyx_vtabptr_6schema__AnnotationNodeReader = &__pyx_vtable_6schema__AnnotationNodeReader; __pyx_vtable_6schema__AnnotationNodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__AnnotationNodeReader *, ::capnp::schema::AnnotationNode::Reader))__pyx_f_6schema_21_AnnotationNodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__AnnotationNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1214; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationNodeReader.tp_dict, __pyx_vtabptr_6schema__AnnotationNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1214; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_AnnotationNodeReader", (PyObject *)&__pyx_type_6schema__AnnotationNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1214; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__AnnotationNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationNodeReader.tp_dict, __pyx_vtabptr_6schema__AnnotationNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_AnnotationNodeReader", (PyObject *)&__pyx_type_6schema__AnnotationNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__AnnotationNodeReader = &__pyx_type_6schema__AnnotationNodeReader; __pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Builder = &__pyx_vtable_6schema__List_InterfaceNode_Method_Param_Annotation_Builder; __pyx_vtable_6schema__List_InterfaceNode_Method_Param_Annotation_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Builder *, ::capnp::List<::capnp::schema::Annotation>::Builder))__pyx_f_6schema_51_List_InterfaceNode_Method_Param_Annotation_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 168; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 168; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Param_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 168; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 172; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 172; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Param_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 172; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Builder = &__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Builder; __pyx_vtabptr_6schema__CodeGeneratorRequestReader = &__pyx_vtable_6schema__CodeGeneratorRequestReader; __pyx_vtable_6schema__CodeGeneratorRequestReader.init = (PyObject *(*)(struct __pyx_obj_6schema__CodeGeneratorRequestReader *, ::capnp::schema::CodeGeneratorRequest::Reader))__pyx_f_6schema_27_CodeGeneratorRequestReader_init; - if (PyType_Ready(&__pyx_type_6schema__CodeGeneratorRequestReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__CodeGeneratorRequestReader.tp_dict, __pyx_vtabptr_6schema__CodeGeneratorRequestReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_CodeGeneratorRequestReader", (PyObject *)&__pyx_type_6schema__CodeGeneratorRequestReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__CodeGeneratorRequestReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__CodeGeneratorRequestReader.tp_dict, __pyx_vtabptr_6schema__CodeGeneratorRequestReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_CodeGeneratorRequestReader", (PyObject *)&__pyx_type_6schema__CodeGeneratorRequestReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__CodeGeneratorRequestReader = &__pyx_type_6schema__CodeGeneratorRequestReader; __pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Builder = &__pyx_vtable_6schema__List_InterfaceNode_InterfaceNode_Method_Builder; __pyx_vtable_6schema__List_InterfaceNode_InterfaceNode_Method_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_InterfaceNode_Method_Builder *, ::capnp::List<::capnp::schema::InterfaceNode::Method>::Builder))__pyx_f_6schema_48_List_InterfaceNode_InterfaceNode_Method_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_InterfaceNode_Method_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_InterfaceNode_Method_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_InterfaceNode_Method_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_InterfaceNode_Method_Builder = &__pyx_type_6schema__List_InterfaceNode_InterfaceNode_Method_Builder; __pyx_vtabptr_6schema__ValueBuilder = &__pyx_vtable_6schema__ValueBuilder; __pyx_vtable_6schema__ValueBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__ValueBuilder *, ::capnp::schema::Value::Builder))__pyx_f_6schema_13_ValueBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__ValueBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 768; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__ValueBuilder.tp_dict, __pyx_vtabptr_6schema__ValueBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 768; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_ValueBuilder", (PyObject *)&__pyx_type_6schema__ValueBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 768; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__ValueBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 774; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__ValueBuilder.tp_dict, __pyx_vtabptr_6schema__ValueBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 774; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_ValueBuilder", (PyObject *)&__pyx_type_6schema__ValueBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 774; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__ValueBuilder = &__pyx_type_6schema__ValueBuilder; __pyx_vtabptr_6schema__StructNode_MemberReader = &__pyx_vtable_6schema__StructNode_MemberReader; __pyx_vtable_6schema__StructNode_MemberReader.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_MemberReader *, ::capnp::schema::StructNode::Member::Reader))__pyx_f_6schema_24_StructNode_MemberReader_init; - if (PyType_Ready(&__pyx_type_6schema__StructNode_MemberReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1450; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_MemberReader.tp_dict, __pyx_vtabptr_6schema__StructNode_MemberReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1450; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_MemberReader", (PyObject *)&__pyx_type_6schema__StructNode_MemberReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1450; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_MemberReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_MemberReader.tp_dict, __pyx_vtabptr_6schema__StructNode_MemberReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_MemberReader", (PyObject *)&__pyx_type_6schema__StructNode_MemberReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1456; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_MemberReader = &__pyx_type_6schema__StructNode_MemberReader; __pyx_vtabptr_6schema__EnumNodeBuilder = &__pyx_vtable_6schema__EnumNodeBuilder; __pyx_vtable_6schema__EnumNodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__EnumNodeBuilder *, ::capnp::schema::EnumNode::Builder))__pyx_f_6schema_16_EnumNodeBuilder_init; __pyx_vtable_6schema__EnumNodeBuilder.initEnumerants = (PyObject *(*)(struct __pyx_obj_6schema__EnumNodeBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_16_EnumNodeBuilder_initEnumerants; - if (PyType_Ready(&__pyx_type_6schema__EnumNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1372; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__EnumNodeBuilder.tp_dict, __pyx_vtabptr_6schema__EnumNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1372; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_EnumNodeBuilder", (PyObject *)&__pyx_type_6schema__EnumNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1372; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__EnumNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1378; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__EnumNodeBuilder.tp_dict, __pyx_vtabptr_6schema__EnumNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1378; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_EnumNodeBuilder", (PyObject *)&__pyx_type_6schema__EnumNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1378; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__EnumNodeBuilder = &__pyx_type_6schema__EnumNodeBuilder; __pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Builder = &__pyx_vtable_6schema__List_EnumNode_EnumNode_Enumerant_Builder; __pyx_vtable_6schema__List_EnumNode_EnumNode_Enumerant_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_EnumNode_EnumNode_Enumerant_Builder *, ::capnp::List<::capnp::schema::EnumNode::Enumerant>::Builder))__pyx_f_6schema_41_List_EnumNode_EnumNode_Enumerant_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Builder.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_EnumNode_Enumerant_Builder", (PyObject *)&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 91; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Builder.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_EnumNode_Enumerant_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 91; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_EnumNode_Enumerant_Builder", (PyObject *)&__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 91; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_EnumNode_EnumNode_Enumerant_Builder = &__pyx_type_6schema__List_EnumNode_EnumNode_Enumerant_Builder; __pyx_vtabptr_6schema__FileNode_ImportBuilder = &__pyx_vtable_6schema__FileNode_ImportBuilder; __pyx_vtable_6schema__FileNode_ImportBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__FileNode_ImportBuilder *, ::capnp::schema::FileNode::Import::Builder))__pyx_f_6schema_23_FileNode_ImportBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__FileNode_ImportBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1017; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__FileNode_ImportBuilder.tp_dict, __pyx_vtabptr_6schema__FileNode_ImportBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1017; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_FileNode_ImportBuilder", (PyObject *)&__pyx_type_6schema__FileNode_ImportBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1017; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__FileNode_ImportBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1023; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__FileNode_ImportBuilder.tp_dict, __pyx_vtabptr_6schema__FileNode_ImportBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1023; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_FileNode_ImportBuilder", (PyObject *)&__pyx_type_6schema__FileNode_ImportBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1023; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__FileNode_ImportBuilder = &__pyx_type_6schema__FileNode_ImportBuilder; __pyx_vtabptr_6schema__NodeReader = &__pyx_vtable_6schema__NodeReader; __pyx_vtable_6schema__NodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__NodeReader *, ::capnp::schema::Node::Reader))__pyx_f_6schema_11_NodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__NodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1152; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__NodeReader.tp_dict, __pyx_vtabptr_6schema__NodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1152; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_NodeReader", (PyObject *)&__pyx_type_6schema__NodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1152; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__NodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1158; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__NodeReader.tp_dict, __pyx_vtabptr_6schema__NodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1158; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_NodeReader", (PyObject *)&__pyx_type_6schema__NodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1158; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__NodeReader = &__pyx_type_6schema__NodeReader; __pyx_vtabptr_6schema__Type_BodyBuilder = &__pyx_vtable_6schema__Type_BodyBuilder; __pyx_vtable_6schema__Type_BodyBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__Type_BodyBuilder *, ::capnp::schema::Type::Body::Builder))__pyx_f_6schema_17_Type_BodyBuilder_init; __pyx_vtable_6schema__Type_BodyBuilder.which = (int (*)(struct __pyx_obj_6schema__Type_BodyBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_17_Type_BodyBuilder_which; - if (PyType_Ready(&__pyx_type_6schema__Type_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 878; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Type_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__Type_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 878; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Type_BodyBuilder", (PyObject *)&__pyx_type_6schema__Type_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 878; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Type_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Type_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__Type_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Type_BodyBuilder", (PyObject *)&__pyx_type_6schema__Type_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Type_BodyBuilder = &__pyx_type_6schema__Type_BodyBuilder; __pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Reader = &__pyx_vtable_6schema__List_StructNode_StructNode_Member_Reader; __pyx_vtable_6schema__List_StructNode_StructNode_Member_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_StructNode_StructNode_Member_Reader *, ::capnp::List<::capnp::schema::StructNode::Member>::Reader))__pyx_f_6schema_41_List_StructNode_StructNode_Member_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_StructNode_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_StructNode_Member_Reader.tp_dict, __pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_StructNode_Member_Reader", (PyObject *)&__pyx_type_6schema__List_StructNode_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_StructNode_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_StructNode_Member_Reader.tp_dict, __pyx_vtabptr_6schema__List_StructNode_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_StructNode_Member_Reader", (PyObject *)&__pyx_type_6schema__List_StructNode_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_StructNode_StructNode_Member_Reader = &__pyx_type_6schema__List_StructNode_StructNode_Member_Reader; __pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Builder = &__pyx_vtable_6schema__List_StructNode_Union_StructNode_Member_Builder; __pyx_vtable_6schema__List_StructNode_Union_StructNode_Member_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Builder *, ::capnp::List<::capnp::schema::StructNode::Member>::Builder))__pyx_f_6schema_48_List_StructNode_Union_StructNode_Member_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Builder.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Union_StructNode_Member_Builder", (PyObject *)&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 118; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Builder.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 118; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Union_StructNode_Member_Builder", (PyObject *)&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 118; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Builder = &__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Builder; __pyx_vtabptr_6schema__InterfaceNode_Method_ParamBuilder = &__pyx_vtable_6schema__InterfaceNode_Method_ParamBuilder; __pyx_vtable_6schema__InterfaceNode_Method_ParamBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *, ::capnp::schema::InterfaceNode::Method::Param::Builder))__pyx_f_6schema_34_InterfaceNode_Method_ParamBuilder_init; __pyx_vtable_6schema__InterfaceNode_Method_ParamBuilder.initAnnotations = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNode_Method_ParamBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_34_InterfaceNode_Method_ParamBuilder_initAnnotations; - if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_Method_ParamBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_Method_ParamBuilder.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_Method_ParamBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_Method_ParamBuilder", (PyObject *)&__pyx_type_6schema__InterfaceNode_Method_ParamBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__InterfaceNode_Method_ParamBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 482; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNode_Method_ParamBuilder.tp_dict, __pyx_vtabptr_6schema__InterfaceNode_Method_ParamBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 482; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNode_Method_ParamBuilder", (PyObject *)&__pyx_type_6schema__InterfaceNode_Method_ParamBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 482; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__InterfaceNode_Method_ParamBuilder = &__pyx_type_6schema__InterfaceNode_Method_ParamBuilder; __pyx_vtabptr_6schema__List_Node_Node_NestedNode_Builder = &__pyx_vtable_6schema__List_Node_Node_NestedNode_Builder; __pyx_vtable_6schema__List_Node_Node_NestedNode_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_Node_Node_NestedNode_Builder *, ::capnp::List<::capnp::schema::Node::NestedNode>::Builder))__pyx_f_6schema_34_List_Node_Node_NestedNode_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_Node_Node_NestedNode_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Node_NestedNode_Builder.tp_dict, __pyx_vtabptr_6schema__List_Node_Node_NestedNode_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Node_NestedNode_Builder", (PyObject *)&__pyx_type_6schema__List_Node_Node_NestedNode_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_Node_Node_NestedNode_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 226; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Node_NestedNode_Builder.tp_dict, __pyx_vtabptr_6schema__List_Node_Node_NestedNode_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 226; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Node_NestedNode_Builder", (PyObject *)&__pyx_type_6schema__List_Node_Node_NestedNode_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 226; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_Node_Node_NestedNode_Builder = &__pyx_type_6schema__List_Node_Node_NestedNode_Builder; __pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder = &__pyx_vtable_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder; __pyx_vtable_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder *, ::capnp::List<::capnp::schema::InterfaceNode::Method::Param>::Builder))__pyx_f_6schema_61_List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 145; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 145; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 145; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder = &__pyx_type_6schema__List_InterfaceNode_Method_InterfaceNode_Method_Param_Builder; __pyx_vtabptr_6schema__Value_BodyBuilder = &__pyx_vtable_6schema__Value_BodyBuilder; __pyx_vtable_6schema__Value_BodyBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__Value_BodyBuilder *, ::capnp::schema::Value::Body::Builder))__pyx_f_6schema_18_Value_BodyBuilder_init; __pyx_vtable_6schema__Value_BodyBuilder.which = (int (*)(struct __pyx_obj_6schema__Value_BodyBuilder *, int __pyx_skip_dispatch))__pyx_f_6schema_18_Value_BodyBuilder_which; - if (PyType_Ready(&__pyx_type_6schema__Value_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Value_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__Value_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Value_BodyBuilder", (PyObject *)&__pyx_type_6schema__Value_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Value_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Value_BodyBuilder.tp_dict, __pyx_vtabptr_6schema__Value_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Value_BodyBuilder", (PyObject *)&__pyx_type_6schema__Value_BodyBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Value_BodyBuilder = &__pyx_type_6schema__Value_BodyBuilder; __pyx_vtabptr_6schema__InterfaceNodeBuilder = &__pyx_vtable_6schema__InterfaceNodeBuilder; __pyx_vtable_6schema__InterfaceNodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNodeBuilder *, ::capnp::schema::InterfaceNode::Builder))__pyx_f_6schema_21_InterfaceNodeBuilder_init; __pyx_vtable_6schema__InterfaceNodeBuilder.initMethods = (PyObject *(*)(struct __pyx_obj_6schema__InterfaceNodeBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_21_InterfaceNodeBuilder_initMethods; - if (PyType_Ready(&__pyx_type_6schema__InterfaceNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 575; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNodeBuilder.tp_dict, __pyx_vtabptr_6schema__InterfaceNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 575; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNodeBuilder", (PyObject *)&__pyx_type_6schema__InterfaceNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 575; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__InterfaceNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 579; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__InterfaceNodeBuilder.tp_dict, __pyx_vtabptr_6schema__InterfaceNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 579; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_InterfaceNodeBuilder", (PyObject *)&__pyx_type_6schema__InterfaceNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 579; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__InterfaceNodeBuilder = &__pyx_type_6schema__InterfaceNodeBuilder; __pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Reader = &__pyx_vtable_6schema__List_StructNode_Member_Annotation_Reader; __pyx_vtable_6schema__List_StructNode_Member_Annotation_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_StructNode_Member_Annotation_Reader *, ::capnp::List<::capnp::schema::Annotation>::Reader))__pyx_f_6schema_41_List_StructNode_Member_Annotation_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Member_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 235; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Member_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 235; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Member_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_StructNode_Member_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 235; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Member_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 239; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Member_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Member_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 239; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Member_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_StructNode_Member_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 239; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_StructNode_Member_Annotation_Reader = &__pyx_type_6schema__List_StructNode_Member_Annotation_Reader; __pyx_vtabptr_6schema__Node_NestedNodeReader = &__pyx_vtable_6schema__Node_NestedNodeReader; __pyx_vtable_6schema__Node_NestedNodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__Node_NestedNodeReader *, ::capnp::schema::Node::NestedNode::Reader))__pyx_f_6schema_22_Node_NestedNodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__Node_NestedNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1123; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Node_NestedNodeReader.tp_dict, __pyx_vtabptr_6schema__Node_NestedNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1123; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Node_NestedNodeReader", (PyObject *)&__pyx_type_6schema__Node_NestedNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1123; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Node_NestedNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1129; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Node_NestedNodeReader.tp_dict, __pyx_vtabptr_6schema__Node_NestedNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1129; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Node_NestedNodeReader", (PyObject *)&__pyx_type_6schema__Node_NestedNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1129; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Node_NestedNodeReader = &__pyx_type_6schema__Node_NestedNodeReader; __pyx_vtabptr_6schema__StructNode_MemberBuilder = &__pyx_vtable_6schema__StructNode_MemberBuilder; __pyx_vtable_6schema__StructNode_MemberBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_MemberBuilder *, ::capnp::schema::StructNode::Member::Builder))__pyx_f_6schema_25_StructNode_MemberBuilder_init; __pyx_vtable_6schema__StructNode_MemberBuilder.initAnnotations = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_MemberBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_25_StructNode_MemberBuilder_initAnnotations; - if (PyType_Ready(&__pyx_type_6schema__StructNode_MemberBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1472; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_MemberBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_MemberBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1472; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_MemberBuilder", (PyObject *)&__pyx_type_6schema__StructNode_MemberBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1472; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_MemberBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1478; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_MemberBuilder.tp_dict, __pyx_vtabptr_6schema__StructNode_MemberBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1478; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_MemberBuilder", (PyObject *)&__pyx_type_6schema__StructNode_MemberBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1478; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_MemberBuilder = &__pyx_type_6schema__StructNode_MemberBuilder; __pyx_vtabptr_6schema__List_UInt64_Reader = &__pyx_vtable_6schema__List_UInt64_Reader; __pyx_vtable_6schema__List_UInt64_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_UInt64_Reader *, ::capnp::List<__pyx_t_6schema_UInt64>::Reader))__pyx_f_6schema_19_List_UInt64_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_UInt64_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_UInt64_Reader.tp_dict, __pyx_vtabptr_6schema__List_UInt64_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_UInt64_Reader", (PyObject *)&__pyx_type_6schema__List_UInt64_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_UInt64_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_UInt64_Reader.tp_dict, __pyx_vtabptr_6schema__List_UInt64_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_UInt64_Reader", (PyObject *)&__pyx_type_6schema__List_UInt64_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_UInt64_Reader = &__pyx_type_6schema__List_UInt64_Reader; __pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Builder = &__pyx_vtable_6schema__List_InterfaceNode_Method_Annotation_Builder; __pyx_vtable_6schema__List_InterfaceNode_Method_Annotation_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Builder *, ::capnp::List<::capnp::schema::Annotation>::Builder))__pyx_f_6schema_45_List_InterfaceNode_Method_Annotation_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 276; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 276; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 276; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 280; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 280; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 280; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Builder = &__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Builder; __pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Reader = &__pyx_vtable_6schema__List_InterfaceNode_Method_Annotation_Reader; __pyx_vtable_6schema__List_InterfaceNode_Method_Annotation_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_Method_Annotation_Reader *, ::capnp::List<::capnp::schema::Annotation>::Reader))__pyx_f_6schema_44_List_InterfaceNode_Method_Annotation_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 262; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 262; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 262; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 266; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 266; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 266; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_Method_Annotation_Reader = &__pyx_type_6schema__List_InterfaceNode_Method_Annotation_Reader; __pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Reader = &__pyx_vtable_6schema__List_StructNode_Union_StructNode_Member_Reader; __pyx_vtable_6schema__List_StructNode_Union_StructNode_Member_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_StructNode_Union_StructNode_Member_Reader *, ::capnp::List<::capnp::schema::StructNode::Member>::Reader))__pyx_f_6schema_47_List_StructNode_Union_StructNode_Member_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Reader.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Union_StructNode_Member_Reader", (PyObject *)&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Reader.tp_dict, __pyx_vtabptr_6schema__List_StructNode_Union_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_StructNode_Union_StructNode_Member_Reader", (PyObject *)&__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_StructNode_Union_StructNode_Member_Reader = &__pyx_type_6schema__List_StructNode_Union_StructNode_Member_Reader; __pyx_vtabptr_6schema__AnnotationNodeBuilder = &__pyx_vtable_6schema__AnnotationNodeBuilder; __pyx_vtable_6schema__AnnotationNodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__AnnotationNodeBuilder *, ::capnp::schema::AnnotationNode::Builder))__pyx_f_6schema_22_AnnotationNodeBuilder_init; - if (PyType_Ready(&__pyx_type_6schema__AnnotationNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1257; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationNodeBuilder.tp_dict, __pyx_vtabptr_6schema__AnnotationNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1257; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_AnnotationNodeBuilder", (PyObject *)&__pyx_type_6schema__AnnotationNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1257; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__AnnotationNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1263; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__AnnotationNodeBuilder.tp_dict, __pyx_vtabptr_6schema__AnnotationNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1263; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_AnnotationNodeBuilder", (PyObject *)&__pyx_type_6schema__AnnotationNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1263; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__AnnotationNodeBuilder = &__pyx_type_6schema__AnnotationNodeBuilder; __pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Builder = &__pyx_vtable_6schema__List_EnumNode_Enumerant_Annotation_Builder; __pyx_vtable_6schema__List_EnumNode_Enumerant_Annotation_Builder.init = (PyObject *(*)(struct __pyx_obj_6schema__List_EnumNode_Enumerant_Annotation_Builder *, ::capnp::List<::capnp::schema::Annotation>::Builder))__pyx_f_6schema_43_List_EnumNode_Enumerant_Annotation_Builder_init; - if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_Enumerant_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 415; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Builder.tp_dict, __pyx_vtabptr_6schema__List_EnumNode_Enumerant_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 415; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_EnumNode_Enumerant_Annotation_Builder", (PyObject *)&__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Builder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 415; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_EnumNode_Enumerant_Annotation_Builder = &__pyx_type_6schema__List_EnumNode_Enumerant_Annotation_Builder; __pyx_vtabptr_6schema__Value_BodyReader = &__pyx_vtable_6schema__Value_BodyReader; __pyx_vtable_6schema__Value_BodyReader.init = (PyObject *(*)(struct __pyx_obj_6schema__Value_BodyReader *, ::capnp::schema::Value::Body::Reader))__pyx_f_6schema_17_Value_BodyReader_init; __pyx_vtable_6schema__Value_BodyReader.which = (int (*)(struct __pyx_obj_6schema__Value_BodyReader *, int __pyx_skip_dispatch))__pyx_f_6schema_17_Value_BodyReader_which; - if (PyType_Ready(&__pyx_type_6schema__Value_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__Value_BodyReader.tp_dict, __pyx_vtabptr_6schema__Value_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_Value_BodyReader", (PyObject *)&__pyx_type_6schema__Value_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__Value_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__Value_BodyReader.tp_dict, __pyx_vtabptr_6schema__Value_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_Value_BodyReader", (PyObject *)&__pyx_type_6schema__Value_BodyReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__Value_BodyReader = &__pyx_type_6schema__Value_BodyReader; __pyx_vtabptr_6schema__StructNode_FieldReader = &__pyx_vtable_6schema__StructNode_FieldReader; __pyx_vtable_6schema__StructNode_FieldReader.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNode_FieldReader *, ::capnp::schema::StructNode::Field::Reader))__pyx_f_6schema_23_StructNode_FieldReader_init; - if (PyType_Ready(&__pyx_type_6schema__StructNode_FieldReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1504; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_FieldReader.tp_dict, __pyx_vtabptr_6schema__StructNode_FieldReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1504; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNode_FieldReader", (PyObject *)&__pyx_type_6schema__StructNode_FieldReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1504; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNode_FieldReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1510; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNode_FieldReader.tp_dict, __pyx_vtabptr_6schema__StructNode_FieldReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1510; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNode_FieldReader", (PyObject *)&__pyx_type_6schema__StructNode_FieldReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1510; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNode_FieldReader = &__pyx_type_6schema__StructNode_FieldReader; __pyx_vtabptr_6schema__List_Node_Annotation_Reader = &__pyx_vtable_6schema__List_Node_Annotation_Reader; __pyx_vtable_6schema__List_Node_Annotation_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_Node_Annotation_Reader *, ::capnp::List<::capnp::schema::Annotation>::Reader))__pyx_f_6schema_28_List_Node_Annotation_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_Node_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_Node_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_Node_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_Node_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_Node_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_Node_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_Node_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_Node_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_Node_Annotation_Reader = &__pyx_type_6schema__List_Node_Annotation_Reader; __pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Reader = &__pyx_vtable_6schema__List_InterfaceNode_Method_Param_Annotation_Reader; __pyx_vtable_6schema__List_InterfaceNode_Method_Param_Annotation_Reader.init = (PyObject *(*)(struct __pyx_obj_6schema__List_InterfaceNode_Method_Param_Annotation_Reader *, ::capnp::List<::capnp::schema::Annotation>::Reader))__pyx_f_6schema_50_List_InterfaceNode_Method_Param_Annotation_Reader_init; - if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 154; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 154; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Param_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 154; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 158; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Reader.tp_dict, __pyx_vtabptr_6schema__List_InterfaceNode_Method_Param_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 158; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_List_InterfaceNode_Method_Param_Annotation_Reader", (PyObject *)&__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Reader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 158; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__List_InterfaceNode_Method_Param_Annotation_Reader = &__pyx_type_6schema__List_InterfaceNode_Method_Param_Annotation_Reader; __pyx_vtabptr_6schema__FileNodeReader = &__pyx_vtable_6schema__FileNodeReader; __pyx_vtable_6schema__FileNodeReader.init = (PyObject *(*)(struct __pyx_obj_6schema__FileNodeReader *, ::capnp::schema::FileNode::Reader))__pyx_f_6schema_15_FileNodeReader_init; - if (PyType_Ready(&__pyx_type_6schema__FileNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1033; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__FileNodeReader.tp_dict, __pyx_vtabptr_6schema__FileNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1033; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_FileNodeReader", (PyObject *)&__pyx_type_6schema__FileNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1033; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__FileNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1039; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__FileNodeReader.tp_dict, __pyx_vtabptr_6schema__FileNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1039; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_FileNodeReader", (PyObject *)&__pyx_type_6schema__FileNodeReader) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1039; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__FileNodeReader = &__pyx_type_6schema__FileNodeReader; - if (PyType_Ready(&__pyx_type_6schema___pyx_scope_struct__make_enum) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema___pyx_scope_struct__make_enum) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema___pyx_scope_struct__make_enum = &__pyx_type_6schema___pyx_scope_struct__make_enum; __pyx_vtabptr_6schema__StructNodeBuilder = &__pyx_vtable_6schema__StructNodeBuilder; __pyx_vtable_6schema__StructNodeBuilder.init = (PyObject *(*)(struct __pyx_obj_6schema__StructNodeBuilder *, ::capnp::schema::StructNode::Builder))__pyx_f_6schema_18_StructNodeBuilder_init; __pyx_vtable_6schema__StructNodeBuilder.initMembers = (PyObject *(*)(struct __pyx_obj_6schema__StructNodeBuilder *, __pyx_t_6schema_uint, int __pyx_skip_dispatch))__pyx_f_6schema_18_StructNodeBuilder_initMembers; - if (PyType_Ready(&__pyx_type_6schema__StructNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1557; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetVtable(__pyx_type_6schema__StructNodeBuilder.tp_dict, __pyx_vtabptr_6schema__StructNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1557; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (__Pyx_SetAttrString(__pyx_m, "_StructNodeBuilder", (PyObject *)&__pyx_type_6schema__StructNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1557; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyType_Ready(&__pyx_type_6schema__StructNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetVtable(__pyx_type_6schema__StructNodeBuilder.tp_dict, __pyx_vtabptr_6schema__StructNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_SetAttrString(__pyx_m, "_StructNodeBuilder", (PyObject *)&__pyx_type_6schema__StructNodeBuilder) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1563; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_6schema__StructNodeBuilder = &__pyx_type_6schema__StructNodeBuilder; /*--- Type import code ---*/ /*--- Variable import code ---*/ /*--- Function import code ---*/ /*--- Execution code ---*/ - /* "schema.pyx":41 + /* "schema.pyx":45 * T operator[](uint) * uint size() * def make_enum(enum_name, *sequential, **named): # <<<<<<<<<<<<<< * enums = dict(zip(sequential, range(len(sequential))), **named) * reverse = dict((value, key) for key, value in enums.iteritems()) */ - __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_6schema_1make_enum, NULL, __pyx_n_s__schema); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_6schema_1make_enum, NULL, __pyx_n_s__schema); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s__make_enum, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__make_enum, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":455 + /* "schema.pyx":459 * return _List_UInt64_Builder().init(self.thisptr.initRequestedFiles(num)) * * _ElementSize = make_enum('_ElementSize',inlineComposite = _ElementSize_inlineComposite,eightBytes = _ElementSize_eightBytes,pointer = _ElementSize_pointer,bit = _ElementSize_bit,twoBytes = _ElementSize_twoBytes,fourBytes = _ElementSize_fourBytes,byte = _ElementSize_byte,empty = _ElementSize_empty,) # <<<<<<<<<<<<<< * * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::INLINE_COMPOSITE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::INLINE_COMPOSITE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__inlineComposite), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__inlineComposite), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::EIGHT_BYTES)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::EIGHT_BYTES)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__eightBytes), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__eightBytes), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::POINTER)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::POINTER)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__pointer), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__pointer), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::BIT)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::BIT)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__bit), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__bit), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::TWO_BYTES)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::TWO_BYTES)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__twoBytes), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__twoBytes), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::FOUR_BYTES)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::FOUR_BYTES)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__fourBytes), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__fourBytes), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::BYTE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::BYTE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__byte), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__byte), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::EMPTY)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::ElementSize::EMPTY)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__empty), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__empty), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_39), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_39), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s___ElementSize, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s___ElementSize, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":588 + /* "schema.pyx":592 * * * _Value_Body_Which = make_enum('_Value_Body_Which',uint32Value = _Value_Body_uint32Value,float64Value = _Value_Body_float64Value,voidValue = _Value_Body_voidValue,dataValue = _Value_Body_dataValue,listValue = _Value_Body_listValue,int32Value = _Value_Body_int32Value,enumValue = _Value_Body_enumValue,int8Value = _Value_Body_int8Value,boolValue = _Value_Body_boolValue,int16Value = _Value_Body_int16Value,float32Value = _Value_Body_float32Value,interfaceValue = _Value_Body_interfaceValue,uint16Value = _Value_Body_uint16Value,uint8Value = _Value_Body_uint8Value,int64Value = _Value_Body_int64Value,structValue = _Value_Body_structValue,textValue = _Value_Body_textValue,uint64Value = _Value_Body_uint64Value,objectValue = _Value_Body_objectValue,) # <<<<<<<<<<<<<< * cdef class _Value_BodyReader: * cdef C_Value.Body.Reader thisptr */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT32_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT32_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint32Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint32Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::FLOAT64_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::FLOAT64_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float64Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float64Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::VOID_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::VOID_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__voidValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__voidValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::DATA_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::DATA_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__dataValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__dataValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::LIST_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::LIST_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__listValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__listValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT32_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT32_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int32Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int32Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::ENUM_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::ENUM_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__enumValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__enumValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT8_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT8_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int8Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int8Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::BOOL_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::BOOL_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__boolValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__boolValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT16_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT16_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int16Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int16Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::FLOAT32_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::FLOAT32_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float32Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float32Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INTERFACE_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INTERFACE_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__interfaceValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__interfaceValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT16_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT16_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint16Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint16Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT8_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT8_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint8Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint8Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT64_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::INT64_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int64Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int64Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::STRUCT_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::STRUCT_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__structValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__structValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::TEXT_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::TEXT_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__textValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__textValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT64_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::UINT64_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint64Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint64Value), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::OBJECT_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Value::Body::Which::OBJECT_VALUE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__objectValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__objectValue), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_40), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_40), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s___Value_Body_Which, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s___Value_Body_Which, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":811 + /* "schema.pyx":817 * * * _Type_Body_Which = make_enum('_Type_Body_Which',boolType = _Type_Body_boolType,structType = _Type_Body_structType,int32Type = _Type_Body_int32Type,voidType = _Type_Body_voidType,uint16Type = _Type_Body_uint16Type,dataType = _Type_Body_dataType,objectType = _Type_Body_objectType,int64Type = _Type_Body_int64Type,float64Type = _Type_Body_float64Type,interfaceType = _Type_Body_interfaceType,uint32Type = _Type_Body_uint32Type,uint8Type = _Type_Body_uint8Type,listType = _Type_Body_listType,int8Type = _Type_Body_int8Type,float32Type = _Type_Body_float32Type,enumType = _Type_Body_enumType,uint64Type = _Type_Body_uint64Type,textType = _Type_Body_textType,int16Type = _Type_Body_int16Type,) # <<<<<<<<<<<<<< * cdef class _Type_BodyReader: * cdef C_Type.Body.Reader thisptr */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::BOOL_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::BOOL_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__boolType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__boolType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::STRUCT_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::STRUCT_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__structType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__structType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT32_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT32_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int32Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int32Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::VOID_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::VOID_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__voidType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__voidType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT16_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT16_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint16Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint16Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::DATA_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::DATA_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__dataType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__dataType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::OBJECT_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::OBJECT_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__objectType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__objectType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT64_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT64_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int64Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int64Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::FLOAT64_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::FLOAT64_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float64Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float64Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INTERFACE_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INTERFACE_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__interfaceType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__interfaceType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT32_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT32_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint32Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint32Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT8_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT8_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint8Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint8Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::LIST_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::LIST_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__listType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__listType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT8_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT8_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int8Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int8Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::FLOAT32_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::FLOAT32_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float32Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__float32Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::ENUM_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::ENUM_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__enumType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__enumType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT64_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::UINT64_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint64Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__uint64Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::TEXT_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::TEXT_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__textType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__textType), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT16_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::Type::Body::Which::INT16_TYPE)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int16Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__int16Type), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_41), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_41), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s___Type_Body_Which, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s___Type_Body_Which, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1056 + /* "schema.pyx":1062 * * * _Node_Body_Which = make_enum('_Node_Body_Which',annotationNode = _Node_Body_annotationNode,interfaceNode = _Node_Body_interfaceNode,enumNode = _Node_Body_enumNode,structNode = _Node_Body_structNode,constNode = _Node_Body_constNode,fileNode = _Node_Body_fileNode,) # <<<<<<<<<<<<<< * cdef class _Node_BodyReader: * cdef C_Node.Body.Reader thisptr */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::ANNOTATION_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::ANNOTATION_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__annotationNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__annotationNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::INTERFACE_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::INTERFACE_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__interfaceNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__interfaceNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::ENUM_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::ENUM_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__enumNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__enumNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::STRUCT_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::STRUCT_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__structNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__structNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::CONST_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::CONST_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__constNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__constNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::FILE_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyInt_FromLong(((int)::capnp::schema::Node::Body::Which::FILE_NODE)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__fileNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__fileNode), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_42), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_42), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s___Node_Body_Which, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s___Node_Body_Which, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1416 + /* "schema.pyx":1422 * * * _StructNode_Member_Body_Which = make_enum('_StructNode_Member_Body_Which',fieldMember = _StructNode_Member_Body_fieldMember,unionMember = _StructNode_Member_Body_unionMember,) # <<<<<<<<<<<<<< * cdef class _StructNode_Member_BodyReader: * cdef C_StructNode.Member.Body.Reader thisptr */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__make_enum); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::StructNode::Member::Body::Which::FIELD_MEMBER)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::StructNode::Member::Body::Which::FIELD_MEMBER)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__fieldMember), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__fieldMember), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::StructNode::Member::Body::Which::UNION_MEMBER)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyInt_FromLong(((int)::capnp::schema::StructNode::Member::Body::Which::UNION_MEMBER)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__unionMember), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__unionMember), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_44), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_44), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s_43, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s_43, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1422; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1697 - * self.thisptr = new capnp.PackedFdMessageReader(int) + /* "schema.pyx":1703 + * self.thisptr = new capnp.PackedFdMessageReader(fd) * * def writeMessageToFd(int fd, MessageBuilder m): # <<<<<<<<<<<<<< * capnp.writeMessageToFd(fd, deref(m.thisptr)) * def writePackedMessageToFd(int fd, MessageBuilder m): */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_6schema_3writeMessageToFd, NULL, __pyx_n_s__schema); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_6schema_3writeMessageToFd, NULL, __pyx_n_s__schema); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s__writeMessageToFd, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__writeMessageToFd, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1699 + /* "schema.pyx":1705 * def writeMessageToFd(int fd, MessageBuilder m): * capnp.writeMessageToFd(fd, deref(m.thisptr)) * def writePackedMessageToFd(int fd, MessageBuilder m): # <<<<<<<<<<<<<< * capnp.writePackedMessageToFd(fd, deref(m.thisptr)) * */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_6schema_5writePackedMessageToFd, NULL, __pyx_n_s__schema); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_6schema_5writePackedMessageToFd, NULL, __pyx_n_s__schema); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_49, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1699; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s_49, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1703 + /* "schema.pyx":1709 * * # Make the namespace human usable * from types import ModuleType # <<<<<<<<<<<<<< * temp = CodeGeneratorRequest = ModuleType('CodeGeneratorRequest') * temp.Reader = _CodeGeneratorRequestReader */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_INCREF(((PyObject *)__pyx_n_s__ModuleType)); PyList_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_n_s__ModuleType)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ModuleType)); - __pyx_t_2 = __Pyx_Import(((PyObject *)__pyx_n_s__types), ((PyObject *)__pyx_t_3), -1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_Import(((PyObject *)__pyx_n_s__types), ((PyObject *)__pyx_t_3), -1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s__ModuleType, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1703; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__ModuleType, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1704 + /* "schema.pyx":1710 * # Make the namespace human usable * from types import ModuleType * temp = CodeGeneratorRequest = ModuleType('CodeGeneratorRequest') # <<<<<<<<<<<<<< * temp.Reader = _CodeGeneratorRequestReader * temp.Builder = _CodeGeneratorRequestBuilder */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1704; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_51), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1704; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_51), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1704; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s_50, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1704; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s_50, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1705 + /* "schema.pyx":1711 * from types import ModuleType * temp = CodeGeneratorRequest = ModuleType('CodeGeneratorRequest') * temp.Reader = _CodeGeneratorRequestReader # <<<<<<<<<<<<<< * temp.Builder = _CodeGeneratorRequestBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1705; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1706 + /* "schema.pyx":1712 * temp = CodeGeneratorRequest = ModuleType('CodeGeneratorRequest') * temp.Reader = _CodeGeneratorRequestReader * temp.Builder = _CodeGeneratorRequestBuilder # <<<<<<<<<<<<<< * * temp = ElementSize = ModuleType('ElementSize') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1706; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1706; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__CodeGeneratorRequestBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1708 + /* "schema.pyx":1714 * temp.Builder = _CodeGeneratorRequestBuilder * * temp = ElementSize = ModuleType('ElementSize') # <<<<<<<<<<<<<< * ElementSize = _ElementSize * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1708; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1714; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_52), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1708; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_52), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1714; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1708; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__ElementSize, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1708; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1714; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__ElementSize, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1714; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1709 + /* "schema.pyx":1715 * * temp = ElementSize = ModuleType('ElementSize') * ElementSize = _ElementSize # <<<<<<<<<<<<<< * * temp = InterfaceNode = ModuleType('InterfaceNode') */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s___ElementSize); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s___ElementSize); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_d, __pyx_n_s__ElementSize, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__ElementSize, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1711 + /* "schema.pyx":1717 * ElementSize = _ElementSize * * temp = InterfaceNode = ModuleType('InterfaceNode') # <<<<<<<<<<<<<< * temp.Reader = _InterfaceNodeReader * temp.Builder = _InterfaceNodeBuilder */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_53), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_53), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__InterfaceNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1711; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__InterfaceNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1712 + /* "schema.pyx":1718 * * temp = InterfaceNode = ModuleType('InterfaceNode') * temp.Reader = _InterfaceNodeReader # <<<<<<<<<<<<<< * temp.Builder = _InterfaceNodeBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1718; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1718; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1713 + /* "schema.pyx":1719 * temp = InterfaceNode = ModuleType('InterfaceNode') * temp.Reader = _InterfaceNodeReader * temp.Builder = _InterfaceNodeBuilder # <<<<<<<<<<<<<< * * temp = InterfaceNode.Method = ModuleType('InterfaceNode.Method') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1715 + /* "schema.pyx":1721 * temp.Builder = _InterfaceNodeBuilder * * temp = InterfaceNode.Method = ModuleType('InterfaceNode.Method') # <<<<<<<<<<<<<< * temp.Reader = _InterfaceNode_MethodReader * temp.Builder = _InterfaceNode_MethodBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_55), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_55), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__InterfaceNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__InterfaceNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Method, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1715; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Method, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1716 + /* "schema.pyx":1722 * * temp = InterfaceNode.Method = ModuleType('InterfaceNode.Method') * temp.Reader = _InterfaceNode_MethodReader # <<<<<<<<<<<<<< * temp.Builder = _InterfaceNode_MethodBuilder * */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1716; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1722; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1716; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1722; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1717 + /* "schema.pyx":1723 * temp = InterfaceNode.Method = ModuleType('InterfaceNode.Method') * temp.Reader = _InterfaceNode_MethodReader * temp.Builder = _InterfaceNode_MethodBuilder # <<<<<<<<<<<<<< * * temp = InterfaceNode.Method.Param = ModuleType('InterfaceNode.Method.Param') */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1717; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_MethodBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1719 + /* "schema.pyx":1725 * temp.Builder = _InterfaceNode_MethodBuilder * * temp = InterfaceNode.Method.Param = ModuleType('InterfaceNode.Method.Param') # <<<<<<<<<<<<<< * temp.Reader = _InterfaceNode_Method_ParamReader * temp.Builder = _InterfaceNode_Method_ParamBuilder */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_57), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_57), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__InterfaceNode); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__InterfaceNode); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s__Method); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s__Method); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Param, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1719; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Param, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1720 + /* "schema.pyx":1726 * * temp = InterfaceNode.Method.Param = ModuleType('InterfaceNode.Method.Param') * temp.Reader = _InterfaceNode_Method_ParamReader # <<<<<<<<<<<<<< * temp.Builder = _InterfaceNode_Method_ParamBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1720; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1726; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1720; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1726; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1721 + /* "schema.pyx":1727 * temp = InterfaceNode.Method.Param = ModuleType('InterfaceNode.Method.Param') * temp.Reader = _InterfaceNode_Method_ParamReader * temp.Builder = _InterfaceNode_Method_ParamBuilder # <<<<<<<<<<<<<< * * temp = Value = ModuleType('Value') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__InterfaceNode_Method_ParamBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1723 + /* "schema.pyx":1729 * temp.Builder = _InterfaceNode_Method_ParamBuilder * * temp = Value = ModuleType('Value') # <<<<<<<<<<<<<< * temp.Reader = _ValueReader * temp.Builder = _ValueBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1729; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_58), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_58), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1729; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__Value, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1723; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1729; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__Value, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1729; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1724 + /* "schema.pyx":1730 * * temp = Value = ModuleType('Value') * temp.Reader = _ValueReader # <<<<<<<<<<<<<< * temp.Builder = _ValueBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1724; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1730; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1724; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1730; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1725 + /* "schema.pyx":1731 * temp = Value = ModuleType('Value') * temp.Reader = _ValueReader * temp.Builder = _ValueBuilder # <<<<<<<<<<<<<< * * temp = Value.Body = ModuleType('Value.Body') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1725; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ValueBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1727 + /* "schema.pyx":1733 * temp.Builder = _ValueBuilder * * temp = Value.Body = ModuleType('Value.Body') # <<<<<<<<<<<<<< * temp.Reader = _Value_BodyReader * temp.Builder = _Value_BodyBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_60), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_60), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__Value); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__Value); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Body, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1727; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Body, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1728 + /* "schema.pyx":1734 * * temp = Value.Body = ModuleType('Value.Body') * temp.Reader = _Value_BodyReader # <<<<<<<<<<<<<< * temp.Builder = _Value_BodyBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1728; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1734; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1728; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1734; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1729 + /* "schema.pyx":1735 * temp = Value.Body = ModuleType('Value.Body') * temp.Reader = _Value_BodyReader * temp.Builder = _Value_BodyBuilder # <<<<<<<<<<<<<< * * temp = ConstNode = ModuleType('ConstNode') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1729; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1729; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Value_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1731 + /* "schema.pyx":1737 * temp.Builder = _Value_BodyBuilder * * temp = ConstNode = ModuleType('ConstNode') # <<<<<<<<<<<<<< * temp.Reader = _ConstNodeReader * temp.Builder = _ConstNodeBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_61), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_61), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__ConstNode, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1731; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__ConstNode, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1732 + /* "schema.pyx":1738 * * temp = ConstNode = ModuleType('ConstNode') * temp.Reader = _ConstNodeReader # <<<<<<<<<<<<<< * temp.Builder = _ConstNodeBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1732; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1738; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1732; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1738; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1733 + /* "schema.pyx":1739 * temp = ConstNode = ModuleType('ConstNode') * temp.Reader = _ConstNodeReader * temp.Builder = _ConstNodeBuilder # <<<<<<<<<<<<<< * * temp = Type = ModuleType('Type') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1733; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__ConstNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1735 + /* "schema.pyx":1741 * temp.Builder = _ConstNodeBuilder * * temp = Type = ModuleType('Type') # <<<<<<<<<<<<<< * temp.Reader = _TypeReader * temp.Builder = _TypeBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_62), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_62), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__Type, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1735; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__Type, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1736 + /* "schema.pyx":1742 * * temp = Type = ModuleType('Type') * temp.Reader = _TypeReader # <<<<<<<<<<<<<< * temp.Builder = _TypeBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1736; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1736; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1737 + /* "schema.pyx":1743 * temp = Type = ModuleType('Type') * temp.Reader = _TypeReader * temp.Builder = _TypeBuilder # <<<<<<<<<<<<<< * * temp = Type.Body = ModuleType('Type.Body') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1737; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__TypeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1739 + /* "schema.pyx":1745 * temp.Builder = _TypeBuilder * * temp = Type.Body = ModuleType('Type.Body') # <<<<<<<<<<<<<< * temp.Reader = _Type_BodyReader * temp.Builder = _Type_BodyBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_64), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_64), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__Type); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__Type); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Body, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1739; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Body, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1740 + /* "schema.pyx":1746 * * temp = Type.Body = ModuleType('Type.Body') * temp.Reader = _Type_BodyReader # <<<<<<<<<<<<<< * temp.Builder = _Type_BodyBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1740; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1746; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1740; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1746; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1741 + /* "schema.pyx":1747 * temp = Type.Body = ModuleType('Type.Body') * temp.Reader = _Type_BodyReader * temp.Builder = _Type_BodyBuilder # <<<<<<<<<<<<<< * * temp = FileNode = ModuleType('FileNode') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1741; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Type_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1743 + /* "schema.pyx":1749 * temp.Builder = _Type_BodyBuilder * * temp = FileNode = ModuleType('FileNode') # <<<<<<<<<<<<<< * temp.Reader = _FileNodeReader * temp.Builder = _FileNodeBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1749; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_65), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_65), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1749; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__FileNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1749; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__FileNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1749; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1744 + /* "schema.pyx":1750 * * temp = FileNode = ModuleType('FileNode') * temp.Reader = _FileNodeReader # <<<<<<<<<<<<<< * temp.Builder = _FileNodeBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1744; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1750; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1744; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1750; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1745 + /* "schema.pyx":1751 * temp = FileNode = ModuleType('FileNode') * temp.Reader = _FileNodeReader * temp.Builder = _FileNodeBuilder # <<<<<<<<<<<<<< * * temp = FileNode.Import = ModuleType('FileNode.Import') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1745; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1747 + /* "schema.pyx":1753 * temp.Builder = _FileNodeBuilder * * temp = FileNode.Import = ModuleType('FileNode.Import') # <<<<<<<<<<<<<< * temp.Reader = _FileNode_ImportReader * temp.Builder = _FileNode_ImportBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_67), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_67), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__FileNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__FileNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Import, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1747; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Import, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1748 + /* "schema.pyx":1754 * * temp = FileNode.Import = ModuleType('FileNode.Import') * temp.Reader = _FileNode_ImportReader # <<<<<<<<<<<<<< * temp.Builder = _FileNode_ImportBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1748; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1754; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1748; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1754; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1749 + /* "schema.pyx":1755 * temp = FileNode.Import = ModuleType('FileNode.Import') * temp.Reader = _FileNode_ImportReader * temp.Builder = _FileNode_ImportBuilder # <<<<<<<<<<<<<< * * temp = Node = ModuleType('Node') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1749; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1749; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__FileNode_ImportBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1751 + /* "schema.pyx":1757 * temp.Builder = _FileNode_ImportBuilder * * temp = Node = ModuleType('Node') # <<<<<<<<<<<<<< * temp.Reader = _NodeReader * temp.Builder = _NodeBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1757; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_68), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_68), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1757; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__Node, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1751; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1757; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__Node, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1757; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1752 + /* "schema.pyx":1758 * * temp = Node = ModuleType('Node') * temp.Reader = _NodeReader # <<<<<<<<<<<<<< * temp.Builder = _NodeBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1752; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1758; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1752; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1758; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1753 + /* "schema.pyx":1759 * temp = Node = ModuleType('Node') * temp.Reader = _NodeReader * temp.Builder = _NodeBuilder # <<<<<<<<<<<<<< * * temp = Node.Body = ModuleType('Node.Body') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1753; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__NodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1755 + /* "schema.pyx":1761 * temp.Builder = _NodeBuilder * * temp = Node.Body = ModuleType('Node.Body') # <<<<<<<<<<<<<< * temp.Reader = _Node_BodyReader * temp.Builder = _Node_BodyBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_70), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_70), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__Node); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__Node); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Body, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1755; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Body, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1756 + /* "schema.pyx":1762 * * temp = Node.Body = ModuleType('Node.Body') * temp.Reader = _Node_BodyReader # <<<<<<<<<<<<<< * temp.Builder = _Node_BodyBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1756; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1762; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1756; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1762; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1757 + /* "schema.pyx":1763 * temp = Node.Body = ModuleType('Node.Body') * temp.Reader = _Node_BodyReader * temp.Builder = _Node_BodyBuilder # <<<<<<<<<<<<<< * * temp = Node.NestedNode = ModuleType('Node.NestedNode') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1757; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1757; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1759 + /* "schema.pyx":1765 * temp.Builder = _Node_BodyBuilder * * temp = Node.NestedNode = ModuleType('Node.NestedNode') # <<<<<<<<<<<<<< * temp.Reader = _Node_NestedNodeReader * temp.Builder = _Node_NestedNodeBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_72), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_72), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__Node); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__Node); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__NestedNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1759; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__NestedNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1760 + /* "schema.pyx":1766 * * temp = Node.NestedNode = ModuleType('Node.NestedNode') * temp.Reader = _Node_NestedNodeReader # <<<<<<<<<<<<<< * temp.Builder = _Node_NestedNodeBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1760; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1766; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1760; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1766; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1761 + /* "schema.pyx":1767 * temp = Node.NestedNode = ModuleType('Node.NestedNode') * temp.Reader = _Node_NestedNodeReader * temp.Builder = _Node_NestedNodeBuilder # <<<<<<<<<<<<<< * * temp = AnnotationNode = ModuleType('AnnotationNode') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__Node_NestedNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1763 + /* "schema.pyx":1769 * temp.Builder = _Node_NestedNodeBuilder * * temp = AnnotationNode = ModuleType('AnnotationNode') # <<<<<<<<<<<<<< * temp.Reader = _AnnotationNodeReader * temp.Builder = _AnnotationNodeBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_73), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_73), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__AnnotationNode, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__AnnotationNode, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1764 + /* "schema.pyx":1770 * * temp = AnnotationNode = ModuleType('AnnotationNode') * temp.Reader = _AnnotationNodeReader # <<<<<<<<<<<<<< * temp.Builder = _AnnotationNodeBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1764; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1770; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1764; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1770; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1765 + /* "schema.pyx":1771 * temp = AnnotationNode = ModuleType('AnnotationNode') * temp.Reader = _AnnotationNodeReader * temp.Builder = _AnnotationNodeBuilder # <<<<<<<<<<<<<< * * temp = EnumNode = ModuleType('EnumNode') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1767 + /* "schema.pyx":1773 * temp.Builder = _AnnotationNodeBuilder * * temp = EnumNode = ModuleType('EnumNode') # <<<<<<<<<<<<<< * temp.Reader = _EnumNodeReader * temp.Builder = _EnumNodeBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1773; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_74), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_74), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1773; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__EnumNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1773; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__EnumNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1773; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1768 + /* "schema.pyx":1774 * * temp = EnumNode = ModuleType('EnumNode') * temp.Reader = _EnumNodeReader # <<<<<<<<<<<<<< * temp.Builder = _EnumNodeBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1768; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1774; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1768; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1774; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1769 + /* "schema.pyx":1775 * temp = EnumNode = ModuleType('EnumNode') * temp.Reader = _EnumNodeReader * temp.Builder = _EnumNodeBuilder # <<<<<<<<<<<<<< * * temp = EnumNode.Enumerant = ModuleType('EnumNode.Enumerant') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1775; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1775; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1771 + /* "schema.pyx":1777 * temp.Builder = _EnumNodeBuilder * * temp = EnumNode.Enumerant = ModuleType('EnumNode.Enumerant') # <<<<<<<<<<<<<< * temp.Reader = _EnumNode_EnumerantReader * temp.Builder = _EnumNode_EnumerantBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_76), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_76), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__EnumNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__EnumNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Enumerant, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1771; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Enumerant, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1772 + /* "schema.pyx":1778 * * temp = EnumNode.Enumerant = ModuleType('EnumNode.Enumerant') * temp.Reader = _EnumNode_EnumerantReader # <<<<<<<<<<<<<< * temp.Builder = _EnumNode_EnumerantBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1772; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1778; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1772; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1778; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1773 + /* "schema.pyx":1779 * temp = EnumNode.Enumerant = ModuleType('EnumNode.Enumerant') * temp.Reader = _EnumNode_EnumerantReader * temp.Builder = _EnumNode_EnumerantBuilder # <<<<<<<<<<<<<< * * temp = StructNode = ModuleType('StructNode') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1773; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1773; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__EnumNode_EnumerantBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1775 + /* "schema.pyx":1781 * temp.Builder = _EnumNode_EnumerantBuilder * * temp = StructNode = ModuleType('StructNode') # <<<<<<<<<<<<<< * temp.Reader = _StructNodeReader * temp.Builder = _StructNodeBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1775; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1781; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_77), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1775; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_77), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1781; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1775; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__StructNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1775; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1781; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__StructNode, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1781; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1776 + /* "schema.pyx":1782 * * temp = StructNode = ModuleType('StructNode') * temp.Reader = _StructNodeReader # <<<<<<<<<<<<<< * temp.Builder = _StructNodeBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1776; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1782; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1776; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1782; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1777 + /* "schema.pyx":1783 * temp = StructNode = ModuleType('StructNode') * temp.Reader = _StructNodeReader * temp.Builder = _StructNodeBuilder # <<<<<<<<<<<<<< * * temp = StructNode.Union = ModuleType('StructNode.Union') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1777; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNodeBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1779 + /* "schema.pyx":1785 * temp.Builder = _StructNodeBuilder * * temp = StructNode.Union = ModuleType('StructNode.Union') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_UnionReader * temp.Builder = _StructNode_UnionBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_79), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_79), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Union, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1779; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Union, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1780 + /* "schema.pyx":1786 * * temp = StructNode.Union = ModuleType('StructNode.Union') * temp.Reader = _StructNode_UnionReader # <<<<<<<<<<<<<< * temp.Builder = _StructNode_UnionBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1780; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1786; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1780; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1786; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1781 + /* "schema.pyx":1787 * temp = StructNode.Union = ModuleType('StructNode.Union') * temp.Reader = _StructNode_UnionReader * temp.Builder = _StructNode_UnionBuilder # <<<<<<<<<<<<<< * * temp = StructNode.Member = ModuleType('StructNode.Member') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1781; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1781; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_UnionBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1783 + /* "schema.pyx":1789 * temp.Builder = _StructNode_UnionBuilder * * temp = StructNode.Member = ModuleType('StructNode.Member') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_MemberReader * temp.Builder = _StructNode_MemberBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_81), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_81), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Member, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1783; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Member, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1784 + /* "schema.pyx":1790 * * temp = StructNode.Member = ModuleType('StructNode.Member') * temp.Reader = _StructNode_MemberReader # <<<<<<<<<<<<<< * temp.Builder = _StructNode_MemberBuilder * */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1784; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1790; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1784; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1790; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1785 + /* "schema.pyx":1791 * temp = StructNode.Member = ModuleType('StructNode.Member') * temp.Reader = _StructNode_MemberReader * temp.Builder = _StructNode_MemberBuilder # <<<<<<<<<<<<<< * * temp = StructNode.Member.Body = ModuleType('StructNode.Member.Body') */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1785; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_3, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_MemberBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - /* "schema.pyx":1787 + /* "schema.pyx":1793 * temp.Builder = _StructNode_MemberBuilder * * temp = StructNode.Member.Body = ModuleType('StructNode.Member.Body') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_Member_BodyReader * temp.Builder = _StructNode_Member_BodyBuilder */ - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_83), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_83), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s__Member); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s__Member); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Body, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1787; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Body, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1788 + /* "schema.pyx":1794 * * temp = StructNode.Member.Body = ModuleType('StructNode.Member.Body') * temp.Reader = _StructNode_Member_BodyReader # <<<<<<<<<<<<<< * temp.Builder = _StructNode_Member_BodyBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1788; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1794; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1788; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1794; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1789 + /* "schema.pyx":1795 * temp = StructNode.Member.Body = ModuleType('StructNode.Member.Body') * temp.Reader = _StructNode_Member_BodyReader * temp.Builder = _StructNode_Member_BodyBuilder # <<<<<<<<<<<<<< * * temp = StructNode.Field = ModuleType('StructNode.Field') */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1795; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1789; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_Member_BodyBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1795; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1791 + /* "schema.pyx":1797 * temp.Builder = _StructNode_Member_BodyBuilder * * temp = StructNode.Field = ModuleType('StructNode.Field') # <<<<<<<<<<<<<< * temp.Reader = _StructNode_FieldReader * temp.Builder = _StructNode_FieldBuilder */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_85), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_85), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__StructNode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Field, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1791; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Field, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1792 + /* "schema.pyx":1798 * * temp = StructNode.Field = ModuleType('StructNode.Field') * temp.Reader = _StructNode_FieldReader # <<<<<<<<<<<<<< * temp.Builder = _StructNode_FieldBuilder * */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1792; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1798; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1792; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1798; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1793 + /* "schema.pyx":1799 * temp = StructNode.Field = ModuleType('StructNode.Field') * temp.Reader = _StructNode_FieldReader * temp.Builder = _StructNode_FieldBuilder # <<<<<<<<<<<<<< * * temp = Annotation = ModuleType('Annotation') */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1799; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1793; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_2, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__StructNode_FieldBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1799; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - /* "schema.pyx":1795 + /* "schema.pyx":1801 * temp.Builder = _StructNode_FieldBuilder * * temp = Annotation = ModuleType('Annotation') # <<<<<<<<<<<<<< * temp.Reader = _AnnotationReader * temp.Builder = _AnnotationBuilder */ - __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1795; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s__ModuleType); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1801; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_86), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1795; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_86), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1801; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1795; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - if (PyDict_SetItem(__pyx_d, __pyx_n_s__Annotation, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1795; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__temp, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1801; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (PyDict_SetItem(__pyx_d, __pyx_n_s__Annotation, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1801; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1796 + /* "schema.pyx":1802 * * temp = Annotation = ModuleType('Annotation') * temp.Reader = _AnnotationReader # <<<<<<<<<<<<<< * temp.Builder = _AnnotationBuilder * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1796; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1802; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1796; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Reader, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationReader))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1802; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "schema.pyx":1797 + /* "schema.pyx":1803 * temp = Annotation = ModuleType('Annotation') * temp.Reader = _AnnotationReader * temp.Builder = _AnnotationBuilder # <<<<<<<<<<<<<< * */ - __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s__temp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1803; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s__Builder, ((PyObject *)((PyObject*)__pyx_ptype_6schema__AnnotationBuilder))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1803; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "schema.pyx":1 diff --git a/schema.pyx b/schema.pyx index dcc5c2c..6edcdab 100644 --- a/schema.pyx +++ b/schema.pyx @@ -8,7 +8,7 @@ from schema_cpp cimport CodeGeneratorRequest as C_CodeGeneratorRequest,Interface from schema_cpp cimport _ElementSize_inlineComposite,_ElementSize_eightBytes,_ElementSize_pointer,_ElementSize_bit,_ElementSize_twoBytes,_ElementSize_fourBytes,_ElementSize_byte,_ElementSize_empty from schema_cpp cimport _Value_Body_uint32Value,_Value_Body_float64Value,_Value_Body_voidValue,_Value_Body_dataValue,_Value_Body_listValue,_Value_Body_int32Value,_Value_Body_enumValue,_Value_Body_int8Value,_Value_Body_boolValue,_Value_Body_int16Value,_Value_Body_float32Value,_Value_Body_interfaceValue,_Value_Body_uint16Value,_Value_Body_uint8Value,_Value_Body_int64Value,_Value_Body_structValue,_Value_Body_textValue,_Value_Body_uint64Value,_Value_Body_objectValue,_Type_Body_boolType,_Type_Body_structType,_Type_Body_int32Type,_Type_Body_voidType,_Type_Body_uint16Type,_Type_Body_dataType,_Type_Body_objectType,_Type_Body_int64Type,_Type_Body_float64Type,_Type_Body_interfaceType,_Type_Body_uint32Type,_Type_Body_uint8Type,_Type_Body_listType,_Type_Body_int8Type,_Type_Body_float32Type,_Type_Body_enumType,_Type_Body_uint64Type,_Type_Body_textType,_Type_Body_int16Type,_Node_Body_annotationNode,_Node_Body_interfaceNode,_Node_Body_enumNode,_Node_Body_structNode,_Node_Body_constNode,_Node_Body_fileNode,_StructNode_Member_Body_fieldMember,_StructNode_Member_Body_unionMember -# from capnp_schema cimport * +# from schema_cpp cimport * # Not doing this since we want to namespace away the class names from cython.operator cimport dereference as deref @@ -24,12 +24,16 @@ ctypedef int16_t Int16 ctypedef int32_t Int32 ctypedef int64_t Int64 -ctypedef char * Data ctypedef char * Object -ctypedef char * Text ctypedef bint Bool ctypedef float Float32 ctypedef double Float64 +cdef extern from "capnp/blob.h" namespace "::capnp": + cdef cppclass Data: + char * begin() + size_t size() + cdef cppclass Text: + char * cStr() cdef extern from "capnp/message.h" namespace "::capnp": cdef cppclass List[T]: cppclass Reader: @@ -470,7 +474,7 @@ cdef class _InterfaceNode_Method_ParamReader: return _TypeReader().init(self.thisptr.getType()) property name: def __get__(self): - return None + return self.thisptr.getName().cStr() property annotations: def __get__(self): return _List_InterfaceNode_Method_Param_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -493,7 +497,7 @@ cdef class _InterfaceNode_Method_ParamBuilder: pass property name: def __get__(self): - return None + return self.thisptr.getName().cStr() def __set__(self, val): pass property annotations: @@ -512,7 +516,7 @@ cdef class _InterfaceNode_MethodReader: return self.thisptr.getCodeOrder() property name: def __get__(self): - return None + return self.thisptr.getName().cStr() property params: def __get__(self): return _List_InterfaceNode_Method_InterfaceNode_Method_Param_Reader().init(self.thisptr.getParams()) @@ -539,7 +543,7 @@ cdef class _InterfaceNode_MethodBuilder: self.thisptr.setCodeOrder(val) property name: def __get__(self): - return None + return self.thisptr.getName().cStr() def __set__(self, val): pass property params: @@ -605,7 +609,8 @@ cdef class _Value_BodyReader: return None property dataValue: def __get__(self): - return None + temp = self.thisptr.getDataValue() + return (temp.begin())[:temp.size()] property listValue: def __get__(self): return None @@ -644,7 +649,7 @@ cdef class _Value_BodyReader: return None property textValue: def __get__(self): - return None + return self.thisptr.getTextValue().cStr() property uint64Value: def __get__(self): return self.thisptr.getUint64Value() @@ -677,7 +682,8 @@ cdef class _Value_BodyBuilder: pass property dataValue: def __get__(self): - return None + temp = self.thisptr.getDataValue() + return (temp.begin())[:temp.size()] def __set__(self, val): pass property listValue: @@ -742,7 +748,7 @@ cdef class _Value_BodyBuilder: pass property textValue: def __get__(self): - return None + return self.thisptr.getTextValue().cStr() def __set__(self, val): pass property uint64Value: @@ -1012,7 +1018,7 @@ cdef class _FileNode_ImportReader: return self.thisptr.getId() property name: def __get__(self): - return None + return self.thisptr.getName().cStr() cdef class _FileNode_ImportBuilder: cdef C_FileNode.Import.Builder thisptr @@ -1027,7 +1033,7 @@ cdef class _FileNode_ImportBuilder: self.thisptr.setId(val) property name: def __get__(self): - return None + return self.thisptr.getName().cStr() def __set__(self, val): pass cdef class _FileNodeReader: @@ -1128,7 +1134,7 @@ cdef class _Node_NestedNodeReader: property name: def __get__(self): - return None + return self.thisptr.getName().cStr() property id: def __get__(self): return self.thisptr.getId() @@ -1141,7 +1147,7 @@ cdef class _Node_NestedNodeBuilder: property name: def __get__(self): - return None + return self.thisptr.getName().cStr() def __set__(self, val): pass property id: @@ -1160,7 +1166,7 @@ cdef class _NodeReader: return _Node_BodyReader().init(self.thisptr.getBody()) property displayName: def __get__(self): - return None + return self.thisptr.getDisplayName().cStr() property annotations: def __get__(self): return _List_Node_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -1187,7 +1193,7 @@ cdef class _NodeBuilder: pass property displayName: def __get__(self): - return None + return self.thisptr.getDisplayName().cStr() def __set__(self, val): pass property annotations: @@ -1333,7 +1339,7 @@ cdef class _EnumNode_EnumerantReader: return self.thisptr.getCodeOrder() property name: def __get__(self): - return None + return self.thisptr.getName().cStr() property annotations: def __get__(self): return _List_EnumNode_Enumerant_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -1351,7 +1357,7 @@ cdef class _EnumNode_EnumerantBuilder: self.thisptr.setCodeOrder(val) property name: def __get__(self): - return None + return self.thisptr.getName().cStr() def __set__(self, val): pass property annotations: @@ -1464,7 +1470,7 @@ cdef class _StructNode_MemberReader: return self.thisptr.getCodeOrder() property name: def __get__(self): - return None + return self.thisptr.getName().cStr() property annotations: def __get__(self): return _List_StructNode_Member_Annotation_Reader().init(self.thisptr.getAnnotations()) @@ -1492,7 +1498,7 @@ cdef class _StructNode_MemberBuilder: self.thisptr.setCodeOrder(val) property name: def __get__(self): - return None + return self.thisptr.getName().cStr() def __set__(self, val): pass property annotations: @@ -1688,11 +1694,11 @@ cdef class MessageReader: cdef class StreamFdMessageReader(MessageReader): def __cinit__(self, int fd): - self.thisptr = new capnp.StreamFdMessageReader(int) + self.thisptr = new capnp.StreamFdMessageReader(fd) cdef class PackedFdMessageReader(MessageReader): def __cinit__(self, int fd): - self.thisptr = new capnp.PackedFdMessageReader(int) + self.thisptr = new capnp.PackedFdMessageReader(fd) def writeMessageToFd(int fd, MessageBuilder m): capnp.writeMessageToFd(fd, deref(m.thisptr)) diff --git a/schema_cpp.pxd b/schema_cpp.pxd index d925627..c116068 100644 --- a/schema_cpp.pxd +++ b/schema_cpp.pxd @@ -14,13 +14,24 @@ ctypedef int16_t Int16 ctypedef int32_t Int32 ctypedef int64_t Int64 -ctypedef char * Data ctypedef char * Object -ctypedef char * Text ctypedef bint Bool ctypedef float Float32 ctypedef double Float64 +cdef extern from "capnp/blob.h" namespace "::capnp": + cdef cppclass Data: + cppclass Reader: + char * begin() + size_t size() + cppclass Builder: + char * begin() + size_t size() + cdef cppclass Text: + cppclass Reader: + char * cStr() + cppclass Builder: + char * cStr() cdef extern from "capnp/message.h" namespace "::capnp": cdef cppclass List[T]: cppclass Reader: @@ -130,7 +141,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": Value getDefaultValue() Type getType() - Text getName() + Text.Reader getName() List[InterfaceNode.Method.Param.Annotation].Reader getAnnotations() cppclass Builder: @@ -138,14 +149,14 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": void setDefaultValue(Value) Type getType() void setType(Type) - Text getName() + Text.Builder getName() void setName(Text) List[InterfaceNode.Method.Param.Annotation].Builder getAnnotations() List[InterfaceNode.Method.Param.Annotation].Builder initAnnotations(int) cppclass Reader: UInt16 getCodeOrder() - Text getName() + Text.Reader getName() List[InterfaceNode.Method.InterfaceNode.Method.Param].Reader getParams() UInt16 getRequiredParamCount() Type getReturnType() @@ -154,7 +165,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": UInt16 getCodeOrder() void setCodeOrder(UInt16) - Text getName() + Text.Builder getName() void setName(Text) List[InterfaceNode.Method.InterfaceNode.Method.Param].Builder getParams() List[InterfaceNode.Method.InterfaceNode.Method.Param].Builder initParams(int) @@ -183,7 +194,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": UInt32 getUint32Value() Float64 getFloat64Value() Void getVoidValue() - Data getDataValue() + Data.Reader getDataValue() Object getListValue() Int32 getInt32Value() UInt16 getEnumValue() @@ -196,7 +207,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": UInt8 getUint8Value() Int64 getInt64Value() Object getStructValue() - Text getTextValue() + Text.Reader getTextValue() UInt64 getUint64Value() Object getObjectValue() cppclass Builder: @@ -207,7 +218,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": void setFloat64Value(Float64) Void getVoidValue() void setVoidValue(Void) - Data getDataValue() + Data.Builder getDataValue() void setDataValue(Data) Object getListValue() void setListValue(Object) @@ -233,7 +244,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": void setInt64Value(Int64) Object getStructValue() void setStructValue(Object) - Text getTextValue() + Text.Builder getTextValue() void setTextValue(Text) UInt64 getUint64Value() void setUint64Value(UInt64) @@ -344,12 +355,12 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": cppclass Reader: UInt64 getId() - Text getName() + Text.Reader getName() cppclass Builder: UInt64 getId() void setId(UInt64) - Text getName() + Text.Builder getName() void setName(Text) cppclass Reader: @@ -393,18 +404,18 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": cppclass Reader: - Text getName() + Text.Reader getName() UInt64 getId() cppclass Builder: - Text getName() + Text.Builder getName() void setName(Text) UInt64 getId() void setId(UInt64) cppclass Reader: Node.Body getBody() - Text getDisplayName() + Text.Reader getDisplayName() List[Node.Annotation].Reader getAnnotations() UInt64 getScopeId() List[Node.Node.NestedNode].Reader getNestedNodes() @@ -413,7 +424,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": Node.Body getBody() void setBody(Node.Body) - Text getDisplayName() + Text.Builder getDisplayName() void setDisplayName(Text) List[Node.Annotation].Builder getAnnotations() List[Node.Annotation].Builder initAnnotations(int) @@ -476,13 +487,13 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": cppclass Reader: UInt16 getCodeOrder() - Text getName() + Text.Reader getName() List[EnumNode.Enumerant.Annotation].Reader getAnnotations() cppclass Builder: UInt16 getCodeOrder() void setCodeOrder(UInt16) - Text getName() + Text.Builder getName() void setName(Text) List[EnumNode.Enumerant.Annotation].Builder getAnnotations() List[EnumNode.Enumerant.Annotation].Builder initAnnotations(int) @@ -534,7 +545,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": UInt16 getOrdinal() StructNode.Member.Body getBody() UInt16 getCodeOrder() - Text getName() + Text.Reader getName() List[StructNode.Member.Annotation].Reader getAnnotations() cppclass Builder: @@ -544,7 +555,7 @@ cdef extern from "schema.capnp.h" namespace "::capnp::schema": void setBody(StructNode.Member.Body) UInt16 getCodeOrder() void setCodeOrder(UInt16) - Text getName() + Text.Builder getName() void setName(Text) List[StructNode.Member.Annotation].Builder getAnnotations() List[StructNode.Member.Annotation].Builder initAnnotations(int) diff --git a/setup.py b/setup.py index 49524bf..7fa8fb1 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,6 @@ #!/usr/bin/env python from distutils.core import setup from Cython.Build import cythonize -from jinja2 import Environment, FileSystemLoader -import os - -curr_dir = os.path.abspath(os.path.dirname(__file__)) -env = Environment(loader=FileSystemLoader(curr_dir)) setup( name = "capnp",