pyxb
pyxb copied to clipboard
Python XML Schema Bindings
When I'm running PyXB on Python 3.8, I get an error when using the date field. I get a type error that there are too many arguments in the date...
When packaging pyxb for openSUSE, I see these tests failing even with patches from #111 and #123. ``` [ 10s] ====================================================================== [ 10s] ERROR: testBasic (test_gMonthDay.Test_gMonthDay) [ 10s] ---------------------------------------------------------------------- [...
I'm trying to get the test suite running, but it does not seem to work (anymore?). ``` ====================================================================== ERROR: testDate (test_trac_0121.TestTrac0121) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_trac_0121", line...
Add additional valid fields.
I'm running the command `python3.9 -m pip install pyxb` in a virtual environment and receiving these errors. I cannot figure out a meaningful message inside the logs. Am I missing...
Reporting this issue for posterity, I realise this is unlikely to be fixed due to #100. After pickling and unpickling a pyxb object that has an abstract element/substitutionGroup in a...
I am using bindings generated by PyXB 1.2.6. I have a schema which is (essentially): ``` ``` Paired with another schema: ``` ``` Parsing this XML sample: ``` Foo A...
Hi, Here are some assorted fixes I've made to PyXB. More details are in the individual commit messages. Thanks to Eurofins Digital Testing for paying me to work on most...
https://github.com/pabigot/pyxb/blob/14737c23a125fd12c954823ad64fc4497816fae3/pyxb/binding/basis.py#L1295-L1296 Because in `__new__` the first argument is actually the class (of which an instance is to be constructed), so if we actually want this message to be helpful, it...
Dear authors of pyxb. I need to process a XML document which is assembled from others by means of XInclude. LibXML and python seems to handle that, but via PyXB...