NDB map(callback, produces_cursors=True)
问题 The Google AppEngine NDB Documentation for map() states that: "All query options keyword arguments are supported." However, I have tried to use produces_cursors=True on map() and I'm not getting a cursor back. map(callback, pass_batch_into_callback=None, merge_future=None, **q_options) I'd like to use map() as I can set the callback to a tasklet. https://developers.google.com/appengine/docs/python/ndb/queryclass#kwdargs_options Edit - Providing code sample: @ndb.tasklet def callback(user):