maxcutler / python-wordpress-xmlrpc

Python library for WordPress XML-RPC integration
http://python-wordpress-xmlrpc.rtfd.org
MIT License
380 stars 129 forks source link

fix import for py3.10 compat: collections.Iterable -> collections.abc… #148

Closed ghost closed 1 year ago

ghost commented 2 years ago

The collections.Iterable is broken in python 3.10, collections.abc.Iterable has to be used.

esregnet0409 commented 2 years ago

I would like to submit a suggestion. How about to check the backward compatibility issue? The try-exception expression is more suitable.

try: collections = collections.abc except AttributeError: pass