summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-06-16 05:42:57 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-06-16 05:42:57 (GMT)
commit52e155e31bd6801b322420c9d95defd56cb5ca47 (patch)
tree7499e2c13e7347b4bb988a226f9916932813fd71 /Objects
parenta7259597f1f9ef389012010d7b8a02ebcf7396e7 (diff)
downloadcpython-52e155e31bd6801b322420c9d95defd56cb5ca47.zip
cpython-52e155e31bd6801b322420c9d95defd56cb5ca47.tar.gz
cpython-52e155e31bd6801b322420c9d95defd56cb5ca47.tar.bz2
Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/stringobject.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 24443d8..9a88d2f 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -1031,7 +1031,8 @@ string_join(PyStringObject *self, PyObject *args)
return res;
}
-PyObject *_PyString_Join(PyObject *sep, PyObject *x)
+PyObject *
+_PyString_Join(PyObject *sep, PyObject *x)
{
PyObject* args;
PyObject* result = NULL;