diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-23 16:35:47 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-23 16:35:47 +0200 |
commit | dee2e315d786cbe9d5bba2d388fb72d96ad1a846 (patch) | |
tree | 3a8548edebc6f07c6b08a3d2017dcb877f351bb4 /src/if_python.c | |
parent | ede3e6383d0bc86c13f039e9013ff72e307937d2 (diff) | |
download | vim-git-dee2e315d786cbe9d5bba2d388fb72d96ad1a846.tar.gz |
updated for version 7.3.1236v7.3.1236
Problem: Python: WindowSetattr() missing support for NUMBER_UNSIGNED.
Solution: Add NUMBER_UNSIGNED, add more tests. Various fixes. (ZyX)
Diffstat (limited to 'src/if_python.c')
-rw-r--r-- | src/if_python.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/if_python.c b/src/if_python.c index da2783889..d72dbfcb8 100644 --- a/src/if_python.c +++ b/src/if_python.c @@ -1404,8 +1404,7 @@ PythonMod_Init(void) vim_module = Py_InitModule4("vim", VimMethods, (char *)NULL, (PyObject *)NULL, PYTHON_API_VERSION); - if (populate_module(vim_module, PyModule_AddObject, - PyObject_GetAttrString)) + if (populate_module(vim_module)) return -1; if (init_sys_path()) |