golden hour
/opt/alt/python37/lib64/python3.7/site-packages/multidict/_multilib
⬆️ Go Up
Upload
File/Folder
Size
Actions
defs.h
627 B
Del
OK
dict.h
368 B
Del
OK
istr.h
1.87 KB
Del
OK
iter.h
5.92 KB
Del
OK
pair_list.h
26.38 KB
Del
OK
views.h
12.28 KB
Del
OK
Edit: dict.h
#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
Save