2

我安装了一些依赖项:

sudo apt-get install python3.2-dev
sudo apt-get install libmemcached-dev

并试图:

pip install pylibmc

在 virtualenv 中使用我的 python 3.2

但有这个:

_pylibmcmodule.c:77:9: error: ‘PylibMC_Client’ has no member named ‘ob_type’
_pylibmcmodule.c:1812:39: error: ‘PyInt_Type’ undeclared (first use in this function)
_pylibmcmodule.c:1841:53: error: ‘PylibMC_Client’ has no member named ‘ob_type’
error: command 'gcc' failed with exit status 1

我该如何解决?
(它适用于 python 2.7)

4

1 回答 1

3

编辑:看起来它正在“master”中工作,但尚未发布。

我写了一些 python 3 支持 -请参阅我的 repo 分支

我修改了测试,但仍然有几个失败:

1. "test_touch" (test_client.py)  

python 2和3对我来说都失败了。即使是未更改的代码。(看起来像我的内存缓存问题 - 不知道)

>       ok_(self.mc.touch(touch_test, 5))
E       SystemError: error return without exception set

2. "test_cas" (test_client.py)

仅对 python 3 失败。Python 2 没问题。

>           rv, cas = mc.gets(k)
E           ValueError: gets without cas behavior

这可能是由于将 Integer 对象保存为pickle.
负责的代码是:

} else if (PyLong_Check(value_obj)) {
    serialized->flags |= PYLIBMC_FLAG_LONG;
    PyObject* tmp = PyNumber_Long(value_obj);
    store_val = PyObject_Bytes(tmp);
    Py_DECREF(tmp);

我不能在 python 3 中使用它,因为会PyObject_Bytes 产生错误

>       ok_(mc.set(k, 0))
E       TypeError: 'int' object is not iterable

我运行这样的测试:

py.test tests/test_client.py
于 2013-04-13T21:00:19.197 回答