Changeset 41b985f for python/ext/py-cvec.c
- Timestamp:
- Mar 12, 2017, 11:26:24 AM (8 years ago)
- Branches:
- sampler
- Children:
- bde49c4a
- Parents:
- 71f2e5f (diff), 67b6618 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-cvec.c
r71f2e5f r41b985f 148 148 if (length != vec->length) { 149 149 PyErr_Format (PyExc_ValueError, 150 "input array has length % ld, but cvec has length %d", length,150 "input array has length %" NPY_INTP_FMT ", but cvec has length %d", length, 151 151 vec->length); 152 152 return 1; … … 169 169 if (length != vec->length) { 170 170 PyErr_Format (PyExc_ValueError, 171 "input array has length % ld, but cvec has length %d", length,171 "input array has length %" NPY_INTP_FMT ", but cvec has length %d", length, 172 172 vec->length); 173 173 return 1;
Note: See TracChangeset
for help on using the changeset viewer.