Project

Profile

Help

Bug #5343

closed

Error found when converting array of XdmValue to XdmArray

Added by O'Neil Delpratt about 2 years ago. Updated about 2 years ago.

Status:
Closed
Priority:
Normal
Category:
Python
Start date:
2022-02-21
Due date:
% Done:

100%

Estimated time:
Found in version:
11.2
Fixed in version:
11.3
Platforms:

Description

Reported by user here: https://saxonica.plan.io/boards/4/topics/8573

The simple python script which creates a PyXdmArray object:

from saxonc import *

with PySaxonProcessor(license=False) as proc:
    print("Test SaxonC on Python")
    print(proc.version)
    
    xdm_value = PyXdmValue()
    for i in range(1, 6):
        xdm_value.add_xdm_item(proc.make_array([proc.make_integer_value(n) for n in range(1, i)]))

    print(isinstance(xdm_value, PyXdmValue))
    
    print(xdm_value)
    
    for item in xdm_value:
        print(isinstance(item, PyXdmItem))
        print(isinstance(item, PyXdmArray))
        print(item)

Prints the following error message before SaxonC crashes:

Error found when converting array of XdmValue to XdmArray

Please register to edit this issue

Also available in: Atom PDF