在 pyd 中实现迭代器
implementing iterators in pyd
我正在尝试为用 pyd.wrap_class 包装的 D class 提供 python 迭代器支持。根据文档 (https://github.com/ariovistus/pyd/wiki/ClassWrap#Iterator_wrapping and http://pyd.readthedocs.org/en/latest/classes.html#iterator-wrapping),next
方法应该 return null
发出终止信号。
这是我的最小 D 示例:
import pyd.pyd;
import pyd.pydobject;
import pyd.class_wrap;
class IteratorTest
{
IteratorTest _iter()
{
return this;
}
PydObject _next()
{
return null;
}
}
extern(C) void PydMain() {
module_init();
wrap_class!(
IteratorTest,
Def!(IteratorTest._iter, PyName!("__iter__")),
Def!(IteratorTest._next, PyName!("next"))
);
}
但是,使用 python 测试代码调用它
for item in IteratorTest() :
print item
向我打印了一个永无止境的 None
流。有谁知道我在这里做错了什么?
感谢 DejanLekic,我找到了问题的解决方案。
正确的实现是(注意 _next()
方法的更改签名):
import pyd.pyd;
import pyd.class_wrap;
import deimos.python.object;
class IteratorTest
{
IteratorTest _iter()
{
return this;
}
PyObject *_next()
{
return null;
}
}
extern(C) void PydMain() {
module_init();
wrap_class!(
IteratorTest,
Def!(IteratorTest._iter, PyName!("__iter__")),
Def!(IteratorTest._next, PyName!("next"))
);
}
我正在尝试为用 pyd.wrap_class 包装的 D class 提供 python 迭代器支持。根据文档 (https://github.com/ariovistus/pyd/wiki/ClassWrap#Iterator_wrapping and http://pyd.readthedocs.org/en/latest/classes.html#iterator-wrapping),next
方法应该 return null
发出终止信号。
这是我的最小 D 示例:
import pyd.pyd;
import pyd.pydobject;
import pyd.class_wrap;
class IteratorTest
{
IteratorTest _iter()
{
return this;
}
PydObject _next()
{
return null;
}
}
extern(C) void PydMain() {
module_init();
wrap_class!(
IteratorTest,
Def!(IteratorTest._iter, PyName!("__iter__")),
Def!(IteratorTest._next, PyName!("next"))
);
}
但是,使用 python 测试代码调用它
for item in IteratorTest() :
print item
向我打印了一个永无止境的 None
流。有谁知道我在这里做错了什么?
感谢 DejanLekic,我找到了问题的解决方案。
正确的实现是(注意 _next()
方法的更改签名):
import pyd.pyd;
import pyd.class_wrap;
import deimos.python.object;
class IteratorTest
{
IteratorTest _iter()
{
return this;
}
PyObject *_next()
{
return null;
}
}
extern(C) void PydMain() {
module_init();
wrap_class!(
IteratorTest,
Def!(IteratorTest._iter, PyName!("__iter__")),
Def!(IteratorTest._next, PyName!("next"))
);
}