Bram Moolenaar
4ca5875815
updated for version 7.3.951
...
Problem: Python exceptions have problems.
Solution: Change some IndexErrors to TypeErrors. Make “line number out of
range” an IndexError. Make “unable to get option value” a
RuntimeError. Make all PyErr_SetString messages start with
lowercase letter and use _(). (ZyX)
2013-05-15 15:44:28 +02:00
Bram Moolenaar
36ff1a0017
updated for version 7.3.950
...
Problem: Python: Stack trace printer can't handle messages.
Solution: Make KeyErrors use PyErr_SetObject. (ZyX)
2013-05-15 15:35:09 +02:00
Bram Moolenaar
e100baa455
updated for version 7.3.949
...
Problem: Python: no easy access to tabpages.
Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
2013-05-15 15:12:29 +02:00
Bram Moolenaar
2d8401eccc
updated for version 7.3.948
...
Problem: Cannot build with Python 2.2
Solution: Make Python interface work with Python 2.2
Make 2.2 the first supported version. (ZyX)
2013-05-15 14:51:35 +02:00
Bram Moolenaar
9936ba050f
updated for version 7.3.947
...
Problem: Python: No iterator for vim.list and vim.bufferlist.
Solution: Add the iterators. Also fix name of FunctionType. Add tests for
vim.buffers. (ZyX)
2013-05-15 14:39:52 +02:00
Bram Moolenaar
f73743182a
updated for version 7.3.945
...
Problem: Python: List of buffers is not very useful.
Solution: Make vim.buffers a map. No iterator yet. (ZyX)
2013-05-15 13:38:47 +02:00
Bram Moolenaar
c5ce83a8ab
updated for version 7.3.942
...
Problem: Python: SEGV in Buffer functions.
Solution: Call CheckBuffer() at the right time. (ZyX)
2013-05-12 20:36:14 +02:00
Bram Moolenaar
61b1fe8326
updated for version 7.3.941
...
Problem: Stuff in if_py_both.h is ordered badly.
Solution: Reorder by type. (ZyX)
2013-05-12 19:45:35 +02:00
Bram Moolenaar
204ca0bb29
updated for version 7.3.937
...
Problem: More can be shared between Python 2 and 3.
Solution: Move code to if_py_both.h. (ZyX)
2013-05-12 18:44:48 +02:00
Bram Moolenaar
76e5f82bfe
updated for version 7.3.925
...
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
2013-05-06 04:24:17 +02:00
Bram Moolenaar
90f9d857c3
updated for version 7.3.924
...
Problem: Python interface can't easily access options.
Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
2013-05-06 03:52:55 +02:00
Bram Moolenaar
5e5ba1d9ef
updated for version 7.3.911
...
Problem: Python: Access to Vim variables is not so easy.
Solution: Define vim.vars and vim.vvars. (ZyX)
2013-04-24 14:07:45 +02:00
Bram Moolenaar
47ed369f91
updated for version 7.3.910
...
Problem: Python code in #ifdef branches with only minor differences.
Solution: Merge the #ifdef branches. (ZyX)
2013-04-24 13:47:45 +02:00
Bram Moolenaar
f7de925840
updated for version 7.3.909
...
Problem: Duplicate Python code.
Solution: Move more items to if_py_both.h. (ZyX) Also avoid compiler
warnings for missing initializers.
2013-04-24 13:39:15 +02:00
Bram Moolenaar
ac94621d1d
updated for version 7.3.907
...
Problem: Python uses IndexError when a dict key is not found.
Solution: Use KeyError instead. (ZyX)
2013-04-24 13:04:26 +02:00
Bram Moolenaar
b294e9d559
updated for version 7.3.825
...
Problem: With Python errors are not always clear.
Solution: Print the stack trace, unless :silent is used. (ZyX)
2013-02-20 16:09:43 +01:00
Bram Moolenaar
af21cefe0e
updated for version 7.3.808
...
Problem: Python threads still do not work properly.
Solution: Fix both Python 2 and 3. Add tests. (Ken Takata)
2013-02-13 14:17:08 +01:00
Bram Moolenaar
3b7e2e5958
updated for version 7.3.786
...
Problem: Python threads don't run in the background (issue 103).
Solution: Move the statements to manipulate thread state.
2013-01-30 11:44:39 +01:00
Bram Moolenaar
9cb2e95126
updated for version 7.3.698
...
Problem: Python 3 does not preserve state beween commands.
Solution: Preserve the state. (Paul Ollis)
2012-10-21 01:47:00 +02:00
Bram Moolenaar
800e8a737d
updated for version 7.3.691
...
Problem: State specific to the Python thread is discarded.
Solution: Keep state between threads. (Paul)
2012-10-14 05:20:12 +02:00
Bram Moolenaar
2f54401a8d
updated for version 7.3.672
...
Problem: Not possible to lock/unlock lists in Python interface.
Solution: Add .locked and .scope attributes. (ZyX)
2012-09-21 14:00:35 +02:00
Bram Moolenaar
23eb14c8e3
updated for version 7.3.671
...
Problem: More Python code can be shared between Python 2 and 3.
Solution: Move code to if_py_both.h. (ZyX)
2012-09-21 13:46:06 +02:00
Bram Moolenaar
b9b0f25c07
updated for version 7.3.661
...
Problem: SEGV in Python code.
Solution: Initialize len to zero. Use the right function depending on
version. (Maxim Philippov)
2012-09-12 20:21:43 +02:00
Bram Moolenaar
8d41f92290
updated for version 7.3.657
...
Problem: Python bindings silently truncate string values containing NUL.
Solution: Fail when a string contains NUL. (ZyX)
2012-09-05 19:03:56 +02:00
Bram Moolenaar
8c950049fd
updated for version 7.3.656
...
Problem: Internal error in :pyeval.
Solution: Handle failed object conversion. (ZyX)
2012-09-05 18:54:48 +02:00
Bram Moolenaar
6bc7065f45
updated for version 7.3.584
...
Problem: PyCObject is not always defined.
Solution: Use PyObject instead.
2012-06-30 13:34:34 +02:00
Bram Moolenaar
ee9f93f339
updated for version 7.3.583
...
Problem: PyObject_NextNotImplemented is not defined before Python 2.7.
(Danek Duvall)
Solution: Add #ifdefs.
2012-06-30 13:21:08 +02:00
Bram Moolenaar
23f2ec16c7
updated for version 7.3.581
...
Problem: Problems compiling with Python.
Solution: Pick UCS2 or UCS4 function at runtime. (lilydjwg)
2012-06-29 19:14:52 +02:00
Bram Moolenaar
365041a617
updated for version 7.3.579
...
Problem: Can't compile with Python 2.5.
Solution: Use PyCObject when Capsules are not available.
2012-06-29 16:28:28 +02:00
Bram Moolenaar
92591ff798
updated for version 7.3.569
...
Problem: Evaluating Vim expression in Python is insufficient.
Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
2012-06-29 12:54:53 +02:00
Bram Moolenaar
054b67b2b8
updated for version 7.3.288
...
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-08-28 16:00:19 +02:00
Bram Moolenaar
e8c4996e56
updated for version 7.3.220
...
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-06-19 00:27:51 +02:00
Bram Moolenaar
31a04844b5
updated for version 7.3.145
...
Problem: Can't build with Python dynamically loading.
Solution: Add dll_PyType_Ready.
2011-03-26 18:32:05 +01:00
Bram Moolenaar
94caed3c03
updated for version 7.3.144
...
Problem: Crash with ":python help(dir)". (Kearn Holliday)
Solution: Fix the way the type is set on objects. (Tobias Columbus)
2011-03-26 13:56:48 +01:00
Bram Moolenaar
17bcd02554
updated for version 7.3.062
...
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-11-16 19:26:02 +01:00
Bram Moolenaar
8e94a6f547
updated for version 7.3.034
...
Problem: Win32: may be loading .dll from the wrong directory.
Solution: Go to the Vim executable directory when opening a library.
2010-10-23 14:02:54 +02:00
Bram Moolenaar
148e620808
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
...
--HG--
branch : vim73
2010-08-13 16:22:57 +02:00
Bram Moolenaar
a6abdcd2d8
When building with both Python 2 and Python 3 don't use RTLD_GLOBAL, so that
...
both may work.
--HG--
branch : vim73
2010-08-09 22:06:13 +02:00
Bram Moolenaar
dd1c05e11f
Move many more common Python items to if_py_both.c.
...
--HG--
branch : vim73
2010-07-31 19:54:14 +02:00
Bram Moolenaar
f804a143ec
Move some common code from if_python.c and if_python3.c to if_py_both.h.
...
--HG--
branch : vim73
2010-07-24 23:51:45 +02:00
Bram Moolenaar
a324d8f0d6
Temporary solution for crashing when using both :py and :py3: disallow both in
...
one session.
--HG--
branch : vim73
2010-07-24 15:42:14 +02:00
Bram Moolenaar
605246a15f
Fix: "import termios" doesn't work with dynamically loaded Python. (James
...
Vega)
--HG--
branch : vim73
2010-07-22 21:44:13 +02:00
Bram Moolenaar
56361677b1
Added support for Python 3. (Roland Puntaier)
...
--HG--
branch : vim73
2010-07-17 21:19:38 +02:00
Bram Moolenaar
6a69fb8ff7
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
--HG--
branch : vim73
2010-07-14 16:52:17 +02:00
Bram Moolenaar
01601aaade
Add the conceal patch from Vince Negri.
...
--HG--
branch : vim73
2010-06-05 23:22:07 +02:00
Bram Moolenaar
54b75f39a3
updated for version 7.2.383
...
Problem: Vim doesn't build cleanly with MSVC 2010.
Solution: Change a few types. (George Reilly)
2010-03-02 17:54:33 +01:00
vimboss
0aef550233
updated for version 7.2-288
2009-11-11 14:06:59 +00:00
vimboss
2dc63d8e16
updated for version 7.2-268
2009-11-03 10:43:27 +00:00
vimboss
2cd4c80953
updated for version 7.2-226
2009-07-09 18:06:49 +00:00
vimboss
1f4d8dd8e1
updated for version 7.2-184
2009-05-21 21:27:43 +00:00