diff options
| author | Benjamin Peterson <benjamin@python.org> | 2014-09-29 19:12:37 -0400 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2014-09-29 19:12:37 -0400 |
| commit | c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1 (patch) | |
| tree | 6d171b1a787523c01a48fc7ad1eeafc5508f24ed | |
| parent | 18f836fb658a5a545e8f9e3c72751759836322f8 (diff) | |
| parent | d48bc9468f75e57249da5e3518c42d4c8b83ba29 (diff) | |
| download | cpython-git-c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1.tar.gz | |
merge 3.3
| -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 6eb61e3527..4a8561cf2f 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; |
