Ignore the flags, if they are raised
(self, *flags)
| 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""" |