comparison src/if_python3.c @ 4982:39980afcf54a v7.3.1236

updated for version 7.3.1236 Problem: Python: WindowSetattr() missing support for NUMBER_UNSIGNED. Solution: Add NUMBER_UNSIGNED, add more tests. Various fixes. (ZyX)
author Bram Moolenaar <bram@vim.org>
date Sun, 23 Jun 2013 16:35:47 +0200
parents 537bbfff0c5c
children 34c629c3b4ba
comparison
equal deleted inserted replaced
4981:216a48da3659 4982:39980afcf54a
1621 PySys_SetArgv(1, argv); 1621 PySys_SetArgv(1, argv);
1622 1622
1623 if ((vim_module = PyModule_Create(&vimmodule)) == NULL) 1623 if ((vim_module = PyModule_Create(&vimmodule)) == NULL)
1624 return NULL; 1624 return NULL;
1625 1625
1626 if (populate_module(vim_module, PyModule_AddObject, PyObject_GetAttrString)) 1626 if (populate_module(vim_module))
1627 return NULL; 1627 return NULL;
1628 1628
1629 if (init_sys_path()) 1629 if (init_sys_path())
1630 return NULL; 1630 return NULL;
1631 1631