Closed davidszotten closed 10 years ago
so that manager._execute() actually executes code, without the need for the silly
manager._execute()
next(manager._execute(), None)
probably enough to return e.g.
(row for row in results)
instead of using yield
yield
fixed in 0.11.0
so that
manager._execute()
actually executes code, without the need for the sillyprobably enough to return e.g.
instead of using
yield