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