Mercurial > pub > dyncall > bindings
comparison python/pydc/pydcext.c @ 37:8c8f848131c6
- version bump
- better doc
- made calling convention mode reset by default, as only way to specify convention used is via signature string
author | Tassilo Philipp |
---|---|
date | Mon, 13 Apr 2020 20:08:54 +0200 |
parents | b84064293541 |
children | 1d50532dce12 |
comparison
equal
deleted
inserted
replaced
36:b84064293541 | 37:8c8f848131c6 |
---|---|
191 ptr = signature; | 191 ptr = signature; |
192 pos = 0; | 192 pos = 0; |
193 ts = PyTuple_Size(args); | 193 ts = PyTuple_Size(args); |
194 | 194 |
195 dcReset(gpCall); | 195 dcReset(gpCall); |
196 dcMode(gpCall, DC_CALL_C_DEFAULT); | |
196 | 197 |
197 for (ch = *ptr; ch != '\0' && ch != ')'; ch = *++ptr) | 198 for (ch = *ptr; ch != '\0' && ch != ')'; ch = *++ptr) |
198 { | 199 { |
199 PyObject* po; | 200 PyObject* po; |
200 | 201 |