(expr, item)
| 39 | |
| 40 | |
| 41 | def re_fn(expr, item): |
| 42 | try: |
| 43 | reg = re.compile(expr, re.IGNORECASE) |
| 44 | except (SystemExit, KeyboardInterrupt): |
| 45 | raise |
| 46 | except: |
| 47 | return False |
| 48 | return reg.search(item) is not None |
| 49 | |
| 50 | |
| 51 | pyfalog.debug('Initializing gamedata') |
nothing calls this directly
no outgoing calls
no test coverage detected