通过attrib处理属性作为字典的lxml错误吗?

时间:2012-01-07 05:08:10

标签: lxml

我正在尝试将一些代码从使用ElementTree迁移到使用lxml.etree并且在早期遇到错误:

>>> import lxml.etree as ET
>>> main = ET.Element("main")
>>> another = ET.Element("another", foo="bar")
>>> main.attrib.update(another.attrib)

Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    main.attrib.update(another.attrib)
  File "lxml.etree.pyx", line 2153, in lxml.etree._Attrib.update 
    (src/lxml/lxml.etree.c:46972)
ValueError: too many values to unpack (expected 2)

但我可以使用以下内容进行更新:

>>> main.attrib.update({'foo': 'bar'})

这是lxml(版本2.3)中的错误还是我错过了一些明显的东西?

1 个答案:

答案 0 :(得分:3)

我遇到同样的错误,不要认为这只是2.3问题。

解决方法:

main.attrib.update(dict(another.attrib))

# or more efficient if it has many attributes:
main.attrib.update(another.attrib.iteritems())

<强>更新

lxml.etree._Attrib.update接受dict或iterable (source)。虽然_Attrib具有dict接口,但它不是dict实例。

In [3]: type(another.attrib)
Out[3]: lxml.etree._Attrib

In [4]: isinstance(another.attrib, dict)
Out[4]: False

因此update会尝试将项目迭代为key, value。也许这是为了表现而已。只有lxml作者知道。

如何在lxml中更改它:

  1. 子类dict

  2. 检查hasattr(sequence_or_dict, 'items')

  3. 我不熟悉Cython并且不知道哪个更好。