commit | c8366790e8b7ea903200cf9e5ecef4802478b56e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed May 29 22:46:26 2013 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed May 29 22:46:26 2013 +0200 |
tree | ba1a39bcfbdaef356aebd7099974e1aa63020677 | |
parent | c37b6ecd60e0ef99406aa903cc98482117f5ed7b [diff] [blame] |
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 index eae3894..6188f47 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h
@@ -4196,7 +4196,7 @@ if (iterator == NULL) return -1; - while ((item = PyIter_Next(obj))) + while ((item = PyIter_Next(iterator))) { li = listitem_alloc(); if (li == NULL)