0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.3.1236

Problem:    Python: WindowSetattr() missing support for NUMBER_UNSIGNED.
Solution:   Add NUMBER_UNSIGNED, add more tests. Various fixes. (ZyX)
This commit is contained in:
Bram Moolenaar
2013-06-23 16:35:47 +02:00
parent ede3e6383d
commit dee2e315d7
14 changed files with 549 additions and 225 deletions

View File

@@ -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())