Skip to content

Commit

Permalink
Import collections.abc for Python 3.4.
Browse files Browse the repository at this point in the history
Thanks @SzieberthAdam for the report and initial patch.

Fix #62.
  • Loading branch information
aaugustin committed Jul 18, 2015
1 parent a621764 commit 23878bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion websockets/client.py
Expand Up @@ -5,7 +5,7 @@
__all__ = ['connect', 'WebSocketClientProtocol']

import asyncio
import collections
import collections.abc

from .exceptions import InvalidHandshake
from .handshake import build_request, check_response
Expand Down
2 changes: 1 addition & 1 deletion websockets/server.py
Expand Up @@ -4,7 +4,7 @@

__all__ = ['serve', 'WebSocketServerProtocol']

import collections
import collections.abc
import logging

import asyncio
Expand Down

0 comments on commit 23878bc

Please sign in to comment.