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_python3.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_python3.c')
-rw-r--r-- | src/if_python3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python3.c b/src/if_python3.c index 3d9a5ee4c..badf015c2 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -1623,7 +1623,7 @@ Py3Init_vim(void) if ((vim_module = PyModule_Create(&vimmodule)) == NULL) return NULL; - if (populate_module(vim_module, PyModule_AddObject, PyObject_GetAttrString)) + if (populate_module(vim_module)) return NULL; if (init_sys_path()) |