| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  | #include <Python.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     PyObject_HEAD | 
					
						
							| 
									
										
										
										
											2002-04-12 16:17:06 +00:00
										 |  |  |     /* Type-specific fields go here. */ | 
					
						
							| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  | } noddy_NoddyObject; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-17 16:42:48 +00:00
										 |  |  | static PyTypeObject noddy_NoddyType = { | 
					
						
							| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  |     PyObject_HEAD_INIT(NULL) | 
					
						
							| 
									
										
										
										
											2003-05-12 17:42:56 +00:00
										 |  |  |     0,                         /*ob_size*/ | 
					
						
							|  |  |  |     "noddy.Noddy",             /*tp_name*/ | 
					
						
							|  |  |  |     sizeof(noddy_NoddyObject), /*tp_basicsize*/ | 
					
						
							|  |  |  |     0,                         /*tp_itemsize*/ | 
					
						
							|  |  |  |     0,                         /*tp_dealloc*/ | 
					
						
							|  |  |  |     0,                         /*tp_print*/ | 
					
						
							|  |  |  |     0,                         /*tp_getattr*/ | 
					
						
							|  |  |  |     0,                         /*tp_setattr*/ | 
					
						
							|  |  |  |     0,                         /*tp_compare*/ | 
					
						
							|  |  |  |     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*/ | 
					
						
							|  |  |  |     "Noddy objects",           /* tp_doc */ | 
					
						
							|  |  |  |     0,		               /* tp_traverse */ | 
					
						
							|  |  |  |     0,		               /* tp_clear */ | 
					
						
							|  |  |  |     0,		               /* tp_richcompare */ | 
					
						
							|  |  |  |     0,		               /* tp_weaklistoffset */ | 
					
						
							|  |  |  |     0,		               /* tp_iter */ | 
					
						
							|  |  |  |     0,		               /* tp_iternext */ | 
					
						
							|  |  |  |     0,		               /* tp_methods */ | 
					
						
							|  |  |  |     0,                         /* tp_members */ | 
					
						
							|  |  |  |     0,                         /* tp_getset */ | 
					
						
							|  |  |  |     0,                         /* tp_base */ | 
					
						
							|  |  |  |     0,                         /* tp_dict */ | 
					
						
							|  |  |  |     0,                         /* tp_descr_get */ | 
					
						
							|  |  |  |     0,                         /* tp_descr_set */ | 
					
						
							|  |  |  |     0,                         /* tp_dictoffset */ | 
					
						
							|  |  |  |     0,                         /* tp_init */ | 
					
						
							|  |  |  |     0,                         /* tp_alloc */ | 
					
						
							|  |  |  |     PyType_GenericNew,         /* tp_new */ | 
					
						
							| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef noddy_methods[] = { | 
					
						
							| 
									
										
										
										
											2002-04-12 16:17:06 +00:00
										 |  |  |     {NULL}  /* Sentinel */ | 
					
						
							| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-16 13:53:43 +00:00
										 |  |  | #ifndef PyMODINIT_FUNC	/* declarations for DLL import/export */
 | 
					
						
							|  |  |  | #define PyMODINIT_FUNC void
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-07-31 06:17:46 +00:00
										 |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  | initnoddy(void)  | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-05-12 17:42:56 +00:00
										 |  |  |     PyObject* m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PyType_Ready(&noddy_NoddyType) < 0) | 
					
						
							| 
									
										
										
										
											2002-04-12 16:17:06 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-12 17:42:56 +00:00
										 |  |  |     m = Py_InitModule3("noddy", noddy_methods, | 
					
						
							|  |  |  |                        "Example module that creates an extension type."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyModule_AddObject(m, "Noddy", (PyObject *)&noddy_NoddyType); | 
					
						
							| 
									
										
										
										
											2002-03-28 23:32:53 +00:00
										 |  |  | } |