summaryrefslogtreecommitdiffstats
path: root/src/dict.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dict.h')
-rw-r--r--src/dict.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/dict.h b/src/dict.h
index 47dd957..86cbbb3 100644
--- a/src/dict.h
+++ b/src/dict.h
@@ -1,8 +1,6 @@
#ifndef DICT_H
#define DICT_H
-#include <Python.h>
-
typedef struct Dict Dict;
Dict* dictCreate();
@@ -10,5 +8,4 @@ Dict* dictCreate();
void dictFree(Dict *t);
void dictInsert(Dict* list, const char* key, const char* value);
unsigned int dictCount(Dict *table);
-PyObject* dictToPyDict(Dict *dict);
#endif