MCPcopy Create free account
hub / github.com/numpy/numpy / is_glob_pattern

Function is_glob_pattern

numpy/distutils/misc_util.py:506–507  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

504 return True
505
506def is_glob_pattern(s):
507 return is_string(s) and ('*' in s or '?' in s)
508
509def as_list(seq):
510 if is_sequence(seq):

Callers 2

add_data_dirMethod · 0.85
add_data_filesMethod · 0.85

Calls 1

is_stringFunction · 0.85

Tested by

no test coverage detected