We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
from collections import Iterable
1 parent e789b99 commit 0410317Copy full SHA for 0410317
pythonosc/udp_client.py
@@ -1,6 +1,10 @@
1
"""UDP Clients for sending OSC messages to an OSC server"""
2
3
-from collections.abc import Iterable
+try:
4
+ from collections.abc import Iterable
5
+catch ImportError: # python 3.5
6
+ from collections import Iterable
7
+
8
import socket
9
10
from .osc_message_builder import OscMessageBuilder
0 commit comments