Internal protection, recursion limit.
(self)
| 92 | |
| 93 | @property |
| 94 | def maxNesting(self) -> int: |
| 95 | """Internal protection, recursion limit.""" |
| 96 | return self._options["maxNesting"] |
| 97 | |
| 98 | @maxNesting.setter |
| 99 | def maxNesting(self, value: int) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected