Bram Moolenaar
7f85d297dc
updated for version 7.3.422
...
Problem: Python 3 does not have __members__.
Solution: Add "name" and "number" in another way. (lilydjwg)
2012-02-04 20:17:26 +01:00
Bram Moolenaar
314ed4b21a
updated for version 7.3.313
...
Problem: One more warning when compiling with dynamic Python 3.
Solution: Change PySliceObject to PyObject.
2011-09-14 18:59:39 +02:00
Bram Moolenaar
9e8edf6ee6
updated for version 7.3.309
...
Problem: Warnings for pointer types.
Solution: Change PySliceObject to PyObject.
2011-09-14 15:41:58 +02:00
Bram Moolenaar
ba4897e6e5
updated for version 7.3.307
...
Problem: Python 3 doesn't support slice assignment.
Solution: Implement slices. (Brett Overesch, Roland Puntaier)
2011-09-14 15:01:58 +02:00
Bram Moolenaar
9dc93ae43e
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
3d64a3176c
updated for version 7.3.250
...
Problem: Python: Errors in Unicode characters not handled nicely.
Solution: Add the surrogateescape error handler. (lilydjwg)
2011-07-15 15:54:44 +02:00
Bram Moolenaar
0baa7f1cd0
updated for version 7.3.236
...
Problem: Python 3 doesn't compile without +multi_byte
Solution: Use "latin1" when MULTI_BYTE is not defined. (lilydjwg)
2011-06-26 19:13:50 +02:00
Bram Moolenaar
19e6094378
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
456f2bb24f
updated for version 7.3.212
...
Problem: With Python 3.2 ":py3" fails.
Solution: Move PyEval_InitThreads() to after Py_Initialize(). (Roland
Puntaier) Check abiflags in configure. (Andreas Behr)
2011-06-12 21:37:13 +02:00
Bram Moolenaar
0c1f3f4d49
updated for version 7.3.132
...
Problem: C++ style comments.
Solution: Change to C comments.
2011-02-25 15:18:50 +01:00
Bram Moolenaar
644d37b84d
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
ebbcb824ba
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
b744b2fa32
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
2010-08-13 16:22:57 +02:00
Bram Moolenaar
b61f95c31f
When building with both Python 2 and Python 3 don't use RTLD_GLOBAL, so that
...
both may work.
2010-08-09 22:06:13 +02:00
Bram Moolenaar
ca8a4dfe7a
Move many more common Python items to if_py_both.c.
2010-07-31 19:54:14 +02:00
Bram Moolenaar
d68554d4fe
Include old Python changes in Python 3 interface.
2010-07-25 13:43:20 +02:00
Bram Moolenaar
170bf1aed5
Move some common code from if_python.c and if_python3.c to if_py_both.h.
2010-07-24 23:51:45 +02:00
Bram Moolenaar
4c3a326c53
Temporary solution for crashing when using both :py and :py3: disallow both in
...
one session.
2010-07-24 15:42:14 +02:00
Bram Moolenaar
fa5d1e63c7
Fix: "import termios" doesn't work with dynamically loaded Python. (James
...
Vega)
2010-07-22 21:44:13 +02:00
Bram Moolenaar
368373e909
Rename some "python3" symbols to "py3", as the command name.
...
Documentation updates.
2010-07-19 20:46:22 +02:00
Bram Moolenaar
69154f22a6
Fixes and improvements for MS-Windows build.
2010-07-18 21:42:34 +02:00
Bram Moolenaar
6df6f47d6d
Make automatic prototype generation work with more interfaces.
2010-07-18 18:04:50 +02:00
Bram Moolenaar
55d5c0348c
Whitespace cleanup.
2010-07-17 23:52:29 +02:00
Bram Moolenaar
bd5e15fd5c
Added support for Python 3. (Roland Puntaier)
2010-07-17 21:19:38 +02:00