Skip to content

Commit

Permalink
version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Gibson committed May 9, 2017
1 parent 9503d00 commit 818cc92
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
4 changes: 0 additions & 4 deletions livesync/asyncserver/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ def send_pong(self, message):
self.send_text(message, OPCODE_PONG)

def send_text(self, message, opcode=OPCODE_TEXT):
"""
Important: Fragmented(=continuation) messages are not supported since
their usage cases are limited - when we don't know the payload length.
"""
payload = create_payload(message)

if not payload:
Expand Down
2 changes: 0 additions & 2 deletions livesync/asyncserver/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ class WebsocketServer(ThreadingMixIn, TCPServer):
host(str): Hostname or IP to listen for connections. By default 127.0.0.1
is being used. To accept connections from any client, you should use
0.0.0.0.
loglevel: Logging level from logging module to use for logging. By default
warnings and errors are being logged.
Properties:
clients(list): A list of connected clients. A client is a dictionary
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='django-livesync',
version='0.2',
version='0.3',
packages=find_packages(),
include_package_data=True,
license='BSD License',
Expand Down

0 comments on commit 818cc92

Please sign in to comment.