Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-20 | updated for version 7.3.825 | Bram Moolenaar | |
Problem: With Python errors are not always clear. Solution: Print the stack trace, unless :silent is used. (ZyX) | |||
2013-02-13 | updated for version 7.3.808 | Bram Moolenaar | |
Problem: Python threads still do not work properly. Solution: Fix both Python 2 and 3. Add tests. (Ken Takata) | |||
2013-01-30 | updated for version 7.3.786 | Bram Moolenaar | |
Problem: Python threads don't run in the background (issue 103). Solution: Move the statements to manipulate thread state. | |||
2012-10-21 | updated for version 7.3.698 | Bram Moolenaar | |
Problem: Python 3 does not preserve state beween commands. Solution: Preserve the state. (Paul Ollis) | |||
2012-10-14 | updated for version 7.3.691 | Bram Moolenaar | |
Problem: State specific to the Python thread is discarded. Solution: Keep state between threads. (Paul) | |||
2012-09-21 | updated for version 7.3.672 | Bram Moolenaar | |
Problem: Not possible to lock/unlock lists in Python interface. Solution: Add .locked and .scope attributes. (ZyX) | |||
2012-09-21 | updated for version 7.3.671 | Bram Moolenaar | |
Problem: More Python code can be shared between Python 2 and 3. Solution: Move code to if_py_both.h. (ZyX) | |||
2012-09-12 | updated for version 7.3.661 | Bram Moolenaar | |
Problem: SEGV in Python code. Solution: Initialize len to zero. Use the right function depending on version. (Maxim Philippov) | |||
2012-09-05 | updated for version 7.3.657 | Bram Moolenaar | |
Problem: Python bindings silently truncate string values containing NUL. Solution: Fail when a string contains NUL. (ZyX) | |||
2012-09-05 | updated for version 7.3.656 | Bram Moolenaar | |
Problem: Internal error in :pyeval. Solution: Handle failed object conversion. (ZyX) | |||
2012-06-30 | updated for version 7.3.584 | Bram Moolenaar | |
Problem: PyCObject is not always defined. Solution: Use PyObject instead. | |||
2012-06-30 | updated for version 7.3.583 | Bram Moolenaar | |
Problem: PyObject_NextNotImplemented is not defined before Python 2.7. (Danek Duvall) Solution: Add #ifdefs. | |||
2012-06-29 | updated for version 7.3.581 | Bram Moolenaar | |
Problem: Problems compiling with Python. Solution: Pick UCS2 or UCS4 function at runtime. (lilydjwg) | |||
2012-06-29 | updated for version 7.3.579 | Bram Moolenaar | |
Problem: Can't compile with Python 2.5. Solution: Use PyCObject when Capsules are not available. | |||
2012-06-29 | updated for version 7.3.569 | Bram Moolenaar | |
Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX) | |||
2011-08-28 | updated for version 7.3.288 | Bram Moolenaar | |
Problem: has('python') may give an error message for not being able to load the library after using python3. Solution: Only give the error when the verbose argument is true. | |||
2011-06-19 | updated for version 7.3.220 | Bram Moolenaar | |
Problem: Python 3: vim.error is a 'str' instead of an 'Exception' object, so 'except' or 'raise' it causes a 'SystemError' exception. Buffer objects do not support slice assignment. When exchanging text between Vim and Python, multibyte texts become gabage or cause Unicode Expceptions, etc. 'py3file' tries to read in the file as Unicode, sometimes causes UnicodeDecodeException Solution: Fix the problems. (lilydjwg) | |||
2011-03-26 | updated for version 7.3.145 | Bram Moolenaar | |
Problem: Can't build with Python dynamically loading. Solution: Add dll_PyType_Ready. | |||
2011-03-26 | updated for version 7.3.144 | Bram Moolenaar | |
Problem: Crash with ":python help(dir)". (Kearn Holliday) Solution: Fix the way the type is set on objects. (Tobias Columbus) | |||
2010-11-16 | updated for version 7.3.062 | Bram Moolenaar | |
Problem: Python doesn't work properly when installed in another directory than expected. Solution: Figure out home directory in configure and use Py_SetPythonHome() at runtime. (Roland Puntaier) | |||
2010-10-23 | updated for version 7.3.034 | Bram Moolenaar | |
Problem: Win32: may be loading .dll from the wrong directory. Solution: Go to the Vim executable directory when opening a library. | |||
2010-08-13 | Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier) | Bram Moolenaar | |
2010-08-09 | When building with both Python 2 and Python 3 don't use RTLD_GLOBAL, so that | Bram Moolenaar | |
both may work. | |||
2010-07-31 | Move many more common Python items to if_py_both.c. | Bram Moolenaar | |
2010-07-24 | Move some common code from if_python.c and if_python3.c to if_py_both.h. | Bram Moolenaar | |
2010-07-24 | Temporary solution for crashing when using both :py and :py3: disallow both in | Bram Moolenaar | |
one session. | |||
2010-07-22 | Fix: "import termios" doesn't work with dynamically loaded Python. (James | Bram Moolenaar | |
Vega) | |||
2010-07-17 | Added support for Python 3. (Roland Puntaier) | Bram Moolenaar | |
2010-07-14 | Support completion for ":find". (Nazri Ramliy) | Bram Moolenaar | |
Cleanup white space. | |||
2010-06-05 | Add the conceal patch from Vince Negri. | Bram Moolenaar | |
2010-03-02 | updated for version 7.2.383 | Bram Moolenaar | |
Problem: Vim doesn't build cleanly with MSVC 2010. Solution: Change a few types. (George Reilly) | |||
2009-11-11 | updated for version 7.2-288 | Bram Moolenaar | |
2009-11-03 | updated for version 7.2-268 | Bram Moolenaar | |
2009-07-09 | updated for version 7.2-226 | Bram Moolenaar | |
2009-05-21 | updated for version 7.2-184 | Bram Moolenaar | |
2009-01-13 | updated for version 7.2-084 | Bram Moolenaar | |
2008-11-20 | updated for version 7.2-045 | Bram Moolenaar | |
2008-07-24 | updated for version 7.2b-014 | Bram Moolenaar | |
2008-07-13 | updated for version 7.2b-000 | Bram Moolenaar | |
2008-06-20 | updated for version 7.1-320 | Bram Moolenaar | |
2008-06-04 | updated for version 7.1-307 | Bram Moolenaar | |
2007-03-08 | updated for version 7.0-209 | Bram Moolenaar | |
2006-10-03 | updated for version 7.0-112 | Bram Moolenaar | |
2006-04-30 | updated for version 7.0g | Bram Moolenaar | |
2006-02-16 | updated for version 7.0199 | Bram Moolenaar | |
2006-01-21 | updated for version 7.0184 | Bram Moolenaar | |
2006-01-20 | updated for version 7.0183 | Bram Moolenaar | |
2005-11-23 | updated for version 7.0158 | Bram Moolenaar | |
2005-09-01 | updated for version 7.0140 | Bram Moolenaar | |
2005-08-01 | updated for version 7.0121 | Bram Moolenaar | |