diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-09-29 23:12:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-09-29 23:12:37 (GMT) |
commit | c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1 (patch) | |
tree | 6d171b1a787523c01a48fc7ad1eeafc5508f24ed /Objects | |
parent | 18f836fb658a5a545e8f9e3c72751759836322f8 (diff) | |
parent | d48bc9468f75e57249da5e3518c42d4c8b83ba29 (diff) | |
download | cpython-c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1.zip cpython-c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1.tar.gz cpython-c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1.tar.bz2 |
merge 3.3
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/bytesobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index 6eb61e3..4a8561c 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -594,7 +594,7 @@ PyBytes_Repr(PyObject *obj, int smartquotes) { PyBytesObject* op = (PyBytesObject*) obj; Py_ssize_t i, length = Py_SIZE(op); - size_t newsize, squotes, dquotes; + Py_ssize_t newsize, squotes, dquotes; PyObject *v; unsigned char quote, *s, *p; |