mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user