summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-02-15 13:03:20 -0500
committerBenjamin Peterson <benjamin@python.org>2014-02-15 13:03:20 -0500
commit4267869ad892520ef26dc403b988ef6b5b3fe428 (patch)
tree5aae5f51aa0a8ee808841152409b48e51d3cf870 /Objects/unicodeobject.c
parent504f6e8653f7d8ccd81ee8376149a54e2a3f839d (diff)
parent9743b2c2b584b0f0e56e33705e81b8b663dc03c3 (diff)
downloadcpython-git-4267869ad892520ef26dc403b988ef6b5b3fe428.tar.gz
merge 3.3 (#20507)
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 994c4f570f..42aa98df7c 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -9666,7 +9666,7 @@ PyUnicode_Join(PyObject *separator, PyObject *seq)
PyObject *last_obj;
unsigned int kind = 0;
- fseq = PySequence_Fast(seq, "");
+ fseq = PySequence_Fast(seq, "can only join an iterable");
if (fseq == NULL) {
return NULL;
}