commit | 8fb665a51aec51020e9e40ba1c29e6d86587eb4f | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun May 25 17:59:38 2003 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun May 25 17:59:38 2003 +0000 |
tree | f2a6752e0c48466f9cb947e1f259cfa175383952 | |
parent | 50d8b8b6ae320d08acc07601cca58cd52299ac76 [diff] [blame] |
Fix ref counts in initialization code.
diff --git a/Doc/ext/noddy.c b/Doc/ext/noddy.c index 849b3c9..632d8e1 100644 --- a/Doc/ext/noddy.c +++ b/Doc/ext/noddy.c
@@ -65,5 +65,6 @@ m = Py_InitModule3("noddy", noddy_methods, "Example module that creates an extension type."); + Py_INCREF(&noddy_NoddyType); PyModule_AddObject(m, "Noddy", (PyObject *)&noddy_NoddyType); }