Chris Tsou

Results 138 comments of Chris Tsou

> * The subscriptable types don't evaluate [forward references](https://github.com/python/cpython/pull/30900) correctly, the issue was fixed in 3.11 but it wasn't backported to 3.10 That's because of this https://github.com/python/cpython/pull/30900 , the issue...

Hey @sshishov This feature is not merged on master, please give it a try. No need to run pyupgrade, there are a few new options ``` --subscriptable-types / --no-subscriptable-types Use...

Since v24.3 the generator avoids flattening all root elements and global types, which also removed the filtering strategies.

There is no filter strategies anymore, all root elements and complex types are going to be generated.

I am closing this one, for now it's not super important

Hi @atlantis-dsf on the serializer you can override the prefixes and set a default one https://xsdata.readthedocs.io/en/latest/xml.html#serialize-xml-with-default-namespace ``` print(serializer.render(books, ns_map={None: "urn:books"})) Hightower, Kim The First Book Fiction 44.95 2000-10-01 An amazing...