Commit 6710c561 authored by Jason Madden's avatar Jason Madden

spawn_raw really doesn't take keywords so don't include it in the signature. Fixes #486.

parent 18d7c7d4
......@@ -63,10 +63,10 @@ get_ident = thread.get_ident
MAIN_THREAD = get_ident()
def spawn_raw(function, *args, **kwargs):
def spawn_raw(function, *args):
hub = get_hub()
g = greenlet(function, hub)
hub.loop.run_callback(g.switch, *args, **kwargs)
hub.loop.run_callback(g.switch, *args)
return g
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment