私が思う奇妙な問題:
char* を逆にする C ライブラリがあります。純粋な python で ctypes を使用すると、適切な解決策が得られます。ただし、django ビューで同じコードを試すと、間違った答えが得られます。
純粋なパイソン:
import sys
from ctypes import *
path = "library.so"
lib = cdll.LoadLibrary(path)
reverse = lib.reverse
reverse.restype = c_char_p
「reverse('pepe')」を使用すると、「epep」が得られます
django では、同じコードで「p」しか得られません。
何か案が?