| 237 | | 0, /*ob_size*/ |
| 238 | | "rb.vision._camera.Camera", /*tp_name*/ |
| 239 | | sizeof(Camera), /*tp_basicsize*/ |
| 240 | | 0, /*tp_itemsize*/ |
| 241 | | (destructor) Camera_dealloc, /*tp_dealloc*/ |
| 242 | | 0, /*tp_print*/ |
| 243 | | 0, /*tp_getattr*/ |
| 244 | | 0, /*tp_setattr*/ |
| 245 | | 0, /*tp_compare*/ |
| 246 | | 0, /*tp_repr*/ |
| 247 | | 0, /*tp_as_number*/ |
| 248 | | 0, /*tp_as_sequence*/ |
| 249 | | 0, /*tp_as_mapping*/ |
| 250 | | 0, /*tp_hash */ |
| 251 | | 0, /*tp_call*/ |
| 252 | | 0, /*tp_str*/ |
| 253 | | 0, /*tp_getattro*/ |
| 254 | | 0, /*tp_setattro*/ |
| 255 | | 0, /*tp_as_buffer*/ |
| 256 | | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/ |
| | 237 | 0, // ob_size |
| | 238 | "rb.vision._camera.Camera", // tp_name |
| | 239 | sizeof(Camera), // tp_basicsize |
| | 240 | 0, // tp_itemsize |
| | 241 | (destructor) Camera_dealloc, // tp_dealloc |
| | 242 | 0, // tp_print |
| | 243 | 0, // tp_getattr |
| | 244 | 0, // tp_setattr |
| | 245 | 0, // tp_compare |
| | 246 | 0, // tp_repr |
| | 247 | 0, // tp_as_number |
| | 248 | 0, // tp_as_sequence |
| | 249 | 0, // tp_as_mapping |
| | 250 | 0, // tp_hash |
| | 251 | 0, // tp_call |
| | 252 | 0, // tp_str |
| | 253 | 0, // tp_getattro |
| | 254 | 0, // tp_setattro |
| | 255 | 0, // tp_as_buffer |
| | 256 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, // tp_flags |
| 260 | | "Throws `RuntimeError` if unable to open a camera.", /* tp_doc */ |
| 261 | | 0, /* tp_traverse */ |
| 262 | | 0, /* tp_clear */ |
| 263 | | 0, /* tp_richcompare */ |
| 264 | | 0, /* tp_weaklistoffset */ |
| 265 | | 0, /* tp_iter */ |
| 266 | | 0, /* tp_iternext */ |
| 267 | | Camera_methods, /* tp_methods */ |
| 268 | | 0, /* tp_members */ |
| 269 | | 0, /* tp_getset */ |
| 270 | | 0, /* tp_base */ |
| 271 | | 0, /* tp_dict */ |
| 272 | | 0, /* tp_descr_get */ |
| 273 | | 0, /* tp_descr_set */ |
| 274 | | 0, /* tp_dictoffset */ |
| 275 | | (initproc) Camera_init, /* tp_init */ |
| 276 | | 0, /* tp_alloc */ |
| 277 | | Camera_new, /* tp_new */ |
| | 260 | "Throws `RuntimeError` if unable to open a camera.", // tp_doc |
| | 261 | 0, // tp_traverse |
| | 262 | 0, // tp_clear |
| | 263 | 0, // tp_richcompare |
| | 264 | 0, // tp_weaklistoffset |
| | 265 | 0, // tp_iter |
| | 266 | 0, // tp_iternext |
| | 267 | Camera_methods, // tp_methods |
| | 268 | 0, // tp_members |
| | 269 | 0, // tp_getset |
| | 270 | 0, // tp_base |
| | 271 | 0, // tp_dict |
| | 272 | 0, // tp_descr_get |
| | 273 | 0, // tp_descr_set |
| | 274 | 0, // tp_dictoffset |
| | 275 | (initproc) Camera_init, // tp_init |
| | 276 | 0, // tp_alloc |
| | 277 | Camera_new, // tp_new |