| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | #include <Python.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     PyObject_HEAD | 
					
						
							|  |  |  |     /* Type-specific fields go here. */ | 
					
						
							|  |  |  | } noddy_NoddyObject; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject noddy_NoddyType = { | 
					
						
							| 
									
										
										
										
											2009-05-05 07:55:26 +00:00
										 |  |  |     PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |     "noddy.Noddy",             /* tp_name */ | 
					
						
							|  |  |  |     sizeof(noddy_NoddyObject), /* tp_basicsize */ | 
					
						
							|  |  |  |     0,                         /* tp_itemsize */ | 
					
						
							|  |  |  |     0,                         /* tp_dealloc */ | 
					
						
							|  |  |  |     0,                         /* tp_print */ | 
					
						
							|  |  |  |     0,                         /* tp_getattr */ | 
					
						
							|  |  |  |     0,                         /* tp_setattr */ | 
					
						
							| 
									
										
										
										
											2009-02-02 21:29:40 +00:00
										 |  |  |     0,                         /* tp_reserved */ | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |     0,                         /* tp_repr */ | 
					
						
							|  |  |  |     0,                         /* tp_as_number */ | 
					
						
							|  |  |  |     0,                         /* tp_as_sequence */ | 
					
						
							|  |  |  |     0,                         /* tp_as_mapping */ | 
					
						
							|  |  |  |     0,                         /* tp_hash  */ | 
					
						
							|  |  |  |     0,                         /* tp_call */ | 
					
						
							|  |  |  |     0,                         /* tp_str */ | 
					
						
							|  |  |  |     0,                         /* tp_getattro */ | 
					
						
							|  |  |  |     0,                         /* tp_setattro */ | 
					
						
							|  |  |  |     0,                         /* tp_as_buffer */ | 
					
						
							|  |  |  |     Py_TPFLAGS_DEFAULT,        /* tp_flags */ | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |     "Noddy objects",           /* tp_doc */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  | static PyModuleDef noddymodule = { | 
					
						
							|  |  |  |     PyModuleDef_HEAD_INIT, | 
					
						
							|  |  |  |     "noddy", | 
					
						
							|  |  |  |     "Example module that creates an extension type.", | 
					
						
							|  |  |  |     -1, | 
					
						
							|  |  |  |     NULL, NULL, NULL, NULL, NULL | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2015-03-18 21:53:15 +02:00
										 |  |  | PyInit_noddy(void) | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject* m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     noddy_NoddyType.tp_new = PyType_GenericNew; | 
					
						
							|  |  |  |     if (PyType_Ready(&noddy_NoddyType) < 0) | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |     m = PyModule_Create(&noddymodule); | 
					
						
							|  |  |  |     if (m == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_INCREF(&noddy_NoddyType); | 
					
						
							|  |  |  |     PyModule_AddObject(m, "Noddy", (PyObject *)&noddy_NoddyType); | 
					
						
							| 
									
										
										
										
											2008-12-24 16:27:25 +00:00
										 |  |  |     return m; | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | } |