summaryrefslogtreecommitdiff
path: root/src/proto/if_python3.pro
AgeCommit message (Collapse)Author
2016-01-19patch 7.4.1133Bram Moolenaar
Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
2015-02-03updated for version 7.4.609Bram Moolenaar
Problem: For complicated list and dict use the garbage collector can run out of stack space. Solution: Use a stack of dicts and lists to be marked, thus making it iterative instead of recursive. (Ben Fritz)
2013-07-03updated for version 7.3.1299Bram Moolenaar
Problem: Errors when doing "make proto". Didn't do "make depend" for a while. Solution: Add #ifdefs. Update dependencies. Update proto files.
2013-05-15updated for version 7.3.957Bram Moolenaar
Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)
2013-05-15updated for version 7.3.949Bram Moolenaar
Problem: Python: no easy access to tabpages. Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
2012-06-29updated for version 7.3.569Bram Moolenaar
Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
2010-07-24Temporary solution for crashing when using both :py and :py3: disallow both inBram Moolenaar
one session.
2010-07-19Rename some "python3" symbols to "py3", as the command name.Bram Moolenaar
Documentation updates.
2010-07-18Make automatic prototype generation work with more interfaces.Bram Moolenaar
2010-07-17Added support for Python 3. (Roland Puntaier)Bram Moolenaar