[XML-SIG] [Bug #125917] DbDom : no cloneNode method.

noreply@sourceforge.net noreply@sourceforge.net
Fri, 15 Dec 2000 10:44:25 -0800


Bug #125917, was updated on 2000-Dec-15 10:44
Here is a current snapshot of the bug.

Project: Python/XML
Category: 4Suite
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: afayolle
Assigned to : nobody
Summary: DbDom : no cloneNode method.

Details: Here's a small script that demonstrates the bug:

from Ft.DbDom.Dom import DocumentImp

d = DocumentImp()
e = d.createElementNS('','root')
d.appendChild(e)
f = e.cloneNode(1)

--------------

[alf@leo alf]$ python dbdomclone.py
Traceback (innermost last):
  File "dbdomclone.py", line 6, in ?
    f = e.cloneNode(1)
  File "/usr/lib/python1.5/site-packages/Ft/Ods/PersistentObject.py", line 170, in __getattr__
    raise AttributeError(name)
AttributeError: cloneNode


For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=125917&group_id=6473