You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xmlrpclib won't auto-escape characters that are invalid in XML, which can cause operations to fail when strings contain non-ASCII characters.
This library knows enough about the fields to auto-escape/encode those which can contain arbitrary strings (e.g., WordPressPost.title). Can be as simple as text.encode('ascii', 'xmlcharrefreplace') when building struct.
The text was updated successfully, but these errors were encountered:
xmlrpclib
won't auto-escape characters that are invalid in XML, which can cause operations to fail when strings contain non-ASCII characters.This library knows enough about the fields to auto-escape/encode those which can contain arbitrary strings (e.g.,
WordPressPost.title
). Can be as simple astext.encode('ascii', 'xmlcharrefreplace')
when buildingstruct
.The text was updated successfully, but these errors were encountered: