(seq)
| 495 | return True |
| 496 | |
| 497 | def is_sequence(seq): |
| 498 | if is_string(seq): |
| 499 | return False |
| 500 | try: |
| 501 | len(seq) |
| 502 | except Exception: |
| 503 | return False |
| 504 | return True |
| 505 | |
| 506 | def is_glob_pattern(s): |
| 507 | return is_string(s) and ('*' in s or '?' in s) |
no test coverage detected