Skip to content

Commit

Permalink
backed out some buggy code supporting buggy async implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
MelindaShore committed Feb 26, 2015
1 parent 6dbe93f commit 9fbf79c
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions getdns.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,12 +399,6 @@ static struct PyMethodDef getdns_methods[] = {
{ 0, 0, 0 }
};

static void
cleanup(void)
{
pthread_join(runner_thread, NULL);
}


PyMODINIT_FUNC
initgetdns(void)
Expand All @@ -424,7 +418,6 @@ initgetdns(void)
Py_INCREF(&getdns_ContextType);
PyModule_AddObject(g, "Context", (PyObject *)&getdns_ContextType);
PyModule_AddStringConstant(g, "__version__", PYGETDNS_VERSION);
Py_AtExit(cleanup);
/*
* return value constants
*/
Expand Down

0 comments on commit 9fbf79c

Please sign in to comment.