summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-09-29 23:12:37 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-09-29 23:12:37 (GMT)
commitc2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1 (patch)
tree6d171b1a787523c01a48fc7ad1eeafc5508f24ed /Objects
parent18f836fb658a5a545e8f9e3c72751759836322f8 (diff)
parentd48bc9468f75e57249da5e3518c42d4c8b83ba29 (diff)
downloadcpython-c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1.zip
cpython-c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1.tar.gz
cpython-c2cfa8ddd8dbad8e09b3f3cec56b0727c9370af1.tar.bz2
merge 3.3
Diffstat (limited to 'Objects')
-rw-r--r--Objects/bytesobject.c2
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;