timka7060
Vim cannot load python3 due to outdated symbol table
Hey all.
So TL;TD;
How to upgrade vim in termux from version 9.1?
---
I'm trying to use python in vim:
vim --cmd 'python3 print(123)' --cmd ':qa!'
Error detected while processing pre-vimrc command line: E448: Could not load library function PyTuple_SET_ITEM E263: Sorry, this command is disabled, the Python library could not be loaded.
---
I found a similar symbol in the library (but not the all caps one):
nm -D $PREFIX/lib/libpython3.12.so | grep -i pytuple_set 869:0000000000306668 T PyTuple_SetItem
---
➜ vim --version VIM - Vi IMproved 9.1 (2024 Jan 02, compiled Mar 28 2025 02:34:04) Included patches: 1-1250 Compiled by Termux ... +cmdline_hist +langmap -python +viminfo +cmdline_info +libcall +python3/dyn +virtualedit
---
python -V Python 3.12.9
---
I can see in the vim repo that use of PyTuple_SET_ITEM was recently removed:
~/git/vim ✖ git log -p src/if_python3.c commit e06b2aea437f44a9fe4ac685667b5f4c89904dc8 (tag: v9.1.1$ Author: Yee Cheng Chin [email protected] Date: Thu Mar 27 20:13:33 2025 +0100
patch 9.1.1251: if_python: build error with tuples and d$
Problem: if_python: build error with tuples and dynamic$
(after v9.1.1239)
Solution: Fix build error and test failures (Yee Cheng C$
closes: #16992
diff --git a/src/if_python3.c b/src/if_python3.c index b2eb1d473..8b94e073e 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -190,8 +190,6 @@ static HINSTANCE hinstPy3 = 0; // Instan$
define PyTuple_New py3_PyTuple_New
define PyTuple_GetItem py3_PyTuple_GetItem
define PyTuple_SetItem py3_PyTuple_SetItem
-# undef PyTuple_SET_ITEM -# define PyTuple_SET_ITEM py3_PyTuple_SET_ITEM
....
16 replies