On Fri, Feb 1, 2019 at 3:48 AM K.Takata <[email protected]> wrote: > > It seems that Python 2.6 supports it. > How about this patch? > > --- a/src/if_py_both.h > +++ b/src/if_py_both.h > @@ -93,6 +93,10 @@ static PyObject *py_load_module; > > static PyObject *VimError; > > +#if PY_VERSION_HEX < 0x02060000 > +# define PyBytes_FromStringAndSize PyString_FromStringAndSize > +#endif > + > /* > * obtain a lock on the Vim data structures > */ > > — > You are receiving this because you are subscribed to this thread. > Reply to this email directly, view it on GitHub > > -- > -- > You received this message from the "vim_dev" maillist. > Do not top-post! Type your reply below the text you are replying to. > For more information, visit http://www.vim.org/maillist.php > > --- > You received this message because you are subscribed to the Google Groups > "vim_dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout.
-- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
