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:
parent
c37b6ecd60
commit
c8366790e8
@ -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)
|
||||
|
@ -728,6 +728,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1050,
|
||||
/**/
|
||||
1049,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user