Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

agriconnect / multidict   python

Repository URL to install this package:

Version: 4.5.2 

/ _multidict_views.h

#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();

#ifdef __cplusplus
}
#endif

#endif