tuxbot-bot/venv/lib/python3.7/site-packages/multidict/_multidict_views.h
2019-12-16 18:12:10 +01:00

20 lines
339 B
C

#ifndef _MULTIDICT_VIEWS_H
#define _MULTIDICT_VIEWS_H
#ifdef __cplusplus
extern "C" {
#endif
#include "Python.h"
PyObject *multidict_itemsview_new(PyObject *impl);
PyObject *multidict_keysview_new(PyObject *impl);
PyObject *multidict_valuesview_new(PyObject *impl);
int multidict_views_init(void);
#ifdef __cplusplus
}
#endif
#endif