Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 61683
Collapse All | Expand All

(-)python/vtemodule.c.orig (-2 / +2 lines)
Lines 32-45 Link Here
32
extern PyTypeObject PyVteTerminal_Type;
32
extern PyTypeObject PyVteTerminal_Type;
33
33
34
DL_EXPORT(void)
34
DL_EXPORT(void)
35
init_vte(void)
35
initvte(void)
36
{
36
{
37
	PyObject *m, *d;
37
	PyObject *m, *d;
38
38
39
	init_pygobject();
39
	init_pygobject();
40
	init_pygtk();
40
	init_pygtk();
41
41
42
	m = Py_InitModule("_vte", pyvte_functions);
42
	m = Py_InitModule("vte", pyvte_functions);
43
	d = PyModule_GetDict(m);
43
	d = PyModule_GetDict(m);
44
44
45
	pyvte_register_classes(d);
45
	pyvte_register_classes(d);

Return to bug 61683