MCPcopy
hub / github.com/django/django / leaves

Method leaves

django/db/models/sql/where.py:316–321  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

314 return self.output_field.get_lookup(lookup)
315
316 def leaves(self):
317 for child in self.children:
318 if isinstance(child, WhereNode):
319 yield from child.leaves()
320 else:
321 yield child
322
323
324class NothingNode:

Callers 1

get_qualify_sqlMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected