MCPcopy Create free account
hub / github.com/gawel/pyquery / next

Method next

pyquery/pyquery.py:440–443  ·  view source on GitHub ↗
(self, selector=None)

Source from the content-addressed store, hash-verified

438 [e.getprevious() for e in self if e.getprevious() is not None])
439
440 def next(self, selector=None):
441 return self._filter_only(
442 selector,
443 [e.getnext() for e in self if e.getnext() is not None])
444
445 def _traverse(self, method):
446 for e in self:

Callers

nothing calls this directly

Calls 1

_filter_onlyMethod · 0.95

Tested by

no test coverage detected