Browse Source

Merge branch 'master' into django_example

pull/31/head
sillygod 9 years ago
parent
commit
869f3e77c1
  1. 4
      examples/flask_chat/templates/latency.html
  2. 2
      setup.py
  3. 2
      socketio/server.py

4
examples/flask_chat/templates/latency.html

@ -23,7 +23,7 @@
} }
send(); send();
}); });
socket.on('pong', function() { socket.on('pong_from_server', function() {
var latency = new Date - last; var latency = new Date - last;
$('#latency').text(latency + 'ms'); $('#latency').text(latency + 'ms');
if (time) if (time)
@ -39,7 +39,7 @@
var last; var last;
function send() { function send() {
last = new Date; last = new Date;
socket.emit('ping'); socket.emit('ping_from_client');
$('#transport').text(socket.io.engine.transport.name); $('#transport').text(socket.io.engine.transport.name);
} }

2
setup.py

@ -12,7 +12,7 @@ with open('README.rst', 'r') as f:
setup( setup(
name='python-socketio', name='python-socketio',
version='1.4', version='1.4.1',
url='http://github.com/miguelgrinberg/python-socketio/', url='http://github.com/miguelgrinberg/python-socketio/',
license='MIT', license='MIT',
author='Miguel Grinberg', author='Miguel Grinberg',

2
socketio/server.py

@ -322,7 +322,7 @@ class Server(object):
the Python standard library. The `start()` method on this object is the Python standard library. The `start()` method on this object is
already called by this function. already called by this function.
""" """
self.eio.start_background_task(target, *args, **kwargs) return self.eio.start_background_task(target, *args, **kwargs)
def sleep(self, seconds=0): def sleep(self, seconds=0):
"""Sleep for the requested amount of time using the appropriate async """Sleep for the requested amount of time using the appropriate async

Loading…
Cancel
Save