As part of the "async sans-I/O-pattern", claude made a "protocol layer", bare functions under caldav/protocol/xml*.py
However, we still have XML parsing logic in the Response class - and now we even have some overlapping code.
Does it make sense to have the "protocol layer"? Could we not have the response class do all the xml parsing?
In any case, the duplicated code should be deduplicated and XML parsing should be done one and only one place.
As part of the "async sans-I/O-pattern", claude made a "protocol layer", bare functions under caldav/protocol/xml*.py
However, we still have XML parsing logic in the Response class - and now we even have some overlapping code.
Does it make sense to have the "protocol layer"? Could we not have the response class do all the xml parsing?
In any case, the duplicated code should be deduplicated and XML parsing should be done one and only one place.