File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5252#include "../../build/build_cefpython/cefpython_py39_fixed.h"
5353#elif PY_MINOR_VERSION == 10
5454#include "../../build/build_cefpython/cefpython_py310_fixed.h"
55+ #elif PY_MINOR_VERSION == 11
56+ #include "../../build/build_cefpython/cefpython_py311_fixed.h"
5557#endif // PY_MINOR_VERSION
5658#endif // PY_MAJOR_VERSION
5759
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ cdef class PyRequest:
203203
204204 cpdef py_void SetHeaderMap(self , dict headerMap):
205205 assert len (headerMap) > 0 , " headerMap param is empty"
206- cpdef list headerMultimap = []
206+ cdef list headerMultimap = []
207207 cdef object key
208208 for key in headerMap:
209209 headerMultimap.append((str (key), str (headerMap[key])))
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ cdef class PyResponse:
8686
8787 cpdef py_void SetHeaderMap(self , dict headerMap):
8888 assert len (headerMap) > 0 , " headerMap param is empty"
89- cpdef list headerMultimap = []
89+ cdef list headerMultimap = []
9090 cdef object key
9191 for key in headerMap:
9292 headerMultimap.append((str (key), str (headerMap[key])))
Original file line number Diff line number Diff line change 1- Cython == 0.29.21
1+ Cython == 0.29.36
22docopt >= 0.6.2
33setuptools
44wheel
You can’t perform that action at this time.
0 commit comments