summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-29 22:46:26 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-29 22:46:26 +0200
commitc8366790e8b7ea903200cf9e5ecef4802478b56e (patch)
treeba1a39bcfbdaef356aebd7099974e1aa63020677
parentc37b6ecd60e0ef99406aa903cc98482117f5ed7b (diff)
updated for version 7.3.1050v7.3.1050
Problem: Python: Typo in pyiter_to_tv. Solution: Python patch 11. (ZyX)
-rw-r--r--src/if_py_both.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h
index eae3894378..6188f47211 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -4196,7 +4196,7 @@ pyiter_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
if (iterator == NULL)
return -1;
- while ((item = PyIter_Next(obj)))
+ while ((item = PyIter_Next(iterator)))
{
li = listitem_alloc();
if (li == NULL)
diff --git a/src/version.c b/src/version.c
index 13a0ec2f43..52089f945e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1050,
+/**/
1049,
/**/
1048,