Author: Philip Jenvey <[email protected]>
Branch:
Changeset: r65158:7a85cc22a4c9
Date: 2013-07-01 16:28 -0700
http://bitbucket.org/pypy/pypy/changeset/7a85cc22a4c9/
Log: py3k compat
diff --git a/lib_pypy/greenlet.py b/lib_pypy/greenlet.py
--- a/lib_pypy/greenlet.py
+++ b/lib_pypy/greenlet.py
@@ -132,7 +132,8 @@
_tls.main = gmain
_tls.current = gmain
-def _greenlet_start(greenlet, (args, kwds)):
+def _greenlet_start(greenlet, args):
+ args, kwds = args
_tls.current = greenlet
try:
res = greenlet.run(*args, **kwds)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit