0
0
mirror of https://github.com/vim/vim.git synced 2025-09-06 21:53:38 -04:00

updated for version 7.3.1050

Problem:    Python: Typo in pyiter_to_tv.
Solution:   Python patch 11. (ZyX)
This commit is contained in:
Bram Moolenaar 2013-05-29 22:46:26 +02:00
parent c37b6ecd60
commit c8366790e8
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1050,
/**/
1049,
/**/