commit | d4ec0c3e2cbf76fe59c2f2a172fdcac09b3018ff | [log] [tgz] |
---|---|---|
author | Thomas Wouters <thomas@python.org> | Fri Apr 21 16:44:05 2006 +0000 |
committer | Thomas Wouters <thomas@python.org> | Fri Apr 21 16:44:05 2006 +0000 |
tree | cbb873ade20466ec7aef5e210428af8a6f929c37 | |
parent | 13247bfc8bd35cedcb44a3a8ec9d89e7c1a9f7ef [diff] |
Merge with trunk up to revision 45620.
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 32e825e..b34dcb2 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c
@@ -865,7 +865,7 @@ *p++ = quote; *p = '\0'; _PyString_Resize( - &v, (int) (p - PyString_AS_STRING(v))); + &v, (p - PyString_AS_STRING(v))); return v; } }