Delete .venv directory
This commit is contained in:
committed by
GitHub
parent
7795984d81
commit
5a2693bd9f
@@ -1,24 +0,0 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user