MCPcopy Index your code
hub / github.com/webpy/webpy / next

Function next

web/utils.py:732–739  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

730 """Makes an iterator safe by ignoring the exceptions occurred during the iteration."""
731
732 def next():
733 while True:
734 try:
735 return next(it)
736 except StopIteration:
737 raise
738 except:
739 traceback.print_exc()
740
741 it = iter(it)
742 while True:

Callers 15

firstMethod · 0.85
__getitem__Method · 0.85
__bool__Method · 0.85
peepMethod · 0.85
next_hookFunction · 0.85
firstMethod · 0.85
__iter__Method · 0.85
__getitem__Method · 0.85
__nonzero__Method · 0.85
safeiterFunction · 0.85
identifierMethod · 0.85
attr_accessMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected