Commit 52e155e3 authored by Tim Peters's avatar Tim Peters

Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup.

parent a7259597
...@@ -126,6 +126,9 @@ Core ...@@ -126,6 +126,9 @@ Core
faster now. Thanks to Christian Tismer for pointing out the cause and faster now. Thanks to Christian Tismer for pointing out the cause and
the nature of an effective cure (last December! better late than never). the nature of an effective cure (last December! better late than never).
- repr() is much faster for large containers (dict, list, tuple).
Library Library
- A new function fnmatch.filter to filter lists of file names was added. - A new function fnmatch.filter to filter lists of file names was added.
......
...@@ -1031,7 +1031,8 @@ string_join(PyStringObject *self, PyObject *args) ...@@ -1031,7 +1031,8 @@ string_join(PyStringObject *self, PyObject *args)
return res; return res;
} }
PyObject *_PyString_Join(PyObject *sep, PyObject *x) PyObject *
_PyString_Join(PyObject *sep, PyObject *x)
{ {
PyObject* args; PyObject* args;
PyObject* result = NULL; PyObject* result = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment