(s)
| 271 | |
| 272 | USE_TYPES = {'nothing', 'open_doors', 'starting_equipment', 'weapons_armour'} |
| 273 | def parse_use(s): |
| 274 | return parse_enum(s, "MONUSE_", USE_TYPES) |
| 275 | |
| 276 | SIZES = {'tiny', 'little', 'small', 'medium', 'large', 'giant'} |
| 277 | def parse_size(s): |
nothing calls this directly
no test coverage detected