I use repr(query) to get a nice representation of ndb queries. What can I do to get something similar with db queries as well? Currently I do following (which I picked from stackoverflow) to get some representation of them.
'kind=%s filters=%r' % (query._model_class.__name__, query._get_query()) But I guess it is not good to use those private attributes from the query class. I'll be really thankful for some help. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
