PCQRSCANER/venv/Lib/site-packages/multidict/_multidict_views.h

21 lines
359 B
C
Raw Normal View History

2019-12-22 21:51:47 +01:00
#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