Lines Matching refs:gif
44 :file:`../../Tools/\*/\*.gif`), and can contain shell-style wildcards. Broken
108 :file:`1.gif`, :file:`2.txt`, :file:`card.gif` and a subdirectory :file:`sub`
115 ['./1.gif', './2.txt']
116 >>> glob.glob('*.gif')
117 ['1.gif', 'card.gif']
118 >>> glob.glob('?.gif')
119 ['1.gif']
126 default. For example, consider a directory containing :file:`card.gif` and
127 :file:`.card.gif`::
130 >>> glob.glob('*.gif')
131 ['card.gif']
133 ['.card.gif']