# HG changeset patch # User Bram Moolenaar # Date 1369860386 -7200 # Node ID 38276cfe40b2069f94b159cc14b4ade47257c836 # Parent a70df97b59ff921eea93255b4986d18625535087 updated for version 7.3.1050 Problem: Python: Typo in pyiter_to_tv. Solution: Python patch 11. (ZyX) diff --git a/src/if_py_both.h b/src/if_py_both.h --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -4196,7 +4196,7 @@ pyiter_to_tv(PyObject *obj, typval_T *tv 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 --- 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,