forked from aniani/vim
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)
|
if (iterator == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
while ((item = PyIter_Next(obj)))
|
while ((item = PyIter_Next(iterator)))
|
||||||
{
|
{
|
||||||
li = listitem_alloc();
|
li = listitem_alloc();
|
||||||
if (li == NULL)
|
if (li == NULL)
|
||||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1050,
|
||||||
/**/
|
/**/
|
||||||
1049,
|
1049,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user