diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-06-16 05:42:57 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-06-16 05:42:57 (GMT) |
commit | 52e155e31bd6801b322420c9d95defd56cb5ca47 (patch) | |
tree | 7499e2c13e7347b4bb988a226f9916932813fd71 /Objects | |
parent | a7259597f1f9ef389012010d7b8a02ebcf7396e7 (diff) | |
download | cpython-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.c | 3 |
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; |