#ifndef _MULTIDICT_C_H
#define _MULTIDICT_C_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct { // 16 or 24 for GC prefix
PyObject_HEAD // 16
PyObject *weaklist;
pair_list_t pairs;
} MultiDictObject;
typedef struct {
PyObject_HEAD
PyObject *weaklist;
MultiDictObject *md;
} MultiDictProxyObject;
#ifdef __cplusplus
}
#endif
#endif
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| defs.h | File | 627 B | 0644 |
|
| dict.h | File | 368 B | 0644 |
|
| istr.h | File | 1.87 KB | 0644 |
|
| iter.h | File | 5.92 KB | 0644 |
|
| pair_list.h | File | 26.38 KB | 0644 |
|
| views.h | File | 12.28 KB | 0644 |
|