MCPcopy Index your code
hub / github.com/RustPython/RustPython / _ignore_flags

Method _ignore_flags

Lib/_pydecimal.py:4028–4033  ·  view source on GitHub ↗

Ignore the flags, if they are raised

(self, *flags)

Source from the content-addressed store, hash-verified

4026 return self._ignore_flags(*_signals)
4027
4028 def _ignore_flags(self, *flags):
4029 """Ignore the flags, if they are raised"""
4030 # Do not mutate-- This way, copies of a context leave the original
4031 # alone.
4032 self._ignored_flags = (self._ignored_flags + list(flags))
4033 return list(flags)
4034
4035 def _regard_flags(self, *flags):
4036 """Stop ignoring the flags, if they are raised"""

Callers 1

_ignore_all_flagsMethod · 0.95

Calls 1

listClass · 0.85

Tested by

no test coverage detected