⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module_tail

📁 Python语言编译器
💻
字号:
/* List of methods defined in the module */static struct PyMethodDef $abbrev$_methods[] = {	$methodlist$	{NULL,	 (PyCFunction)NULL, 0, NULL}		/* sentinel */};/* Initialization function for the module (*must* be called init$name$) */static char $name$_module_documentation[] = "";voidinit$name$(){	PyObject *m, *d;	/* Create the module and add the functions */	m = Py_InitModule4("$name$", $abbrev$_methods,		$name$_module_documentation,		(PyObject*)NULL,PYTHON_API_VERSION);	/* Add some symbolic constants to the module */	d = PyModule_GetDict(m);	ErrorObject = PyString_FromString("$name$.error");	PyDict_SetItemString(d, "error", ErrorObject);	/* XXXX Add constants here */		/* Check for errors */	if (PyErr_Occurred())		Py_FatalError("can't initialize module $name$");}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -