xubiubiu

Results 2 issues of xubiubiu

``` int n; char *s; PyObject* list; PyArg_ParseTuple(args, "siO", &n, &s, &list); ``` `PyArg_ParseTuple(args, "siO", &n, &s, &list);` 中 `&n` 与 `&s` 的顺序写反了。 应为 ``` int n; char *s; PyObject*...

when i use source code from github, it can not handle post request with `text/plain`, i try to fix it. but when i install this lib use opm, i find...