Home | History | Annotate | Download | only in src

Lines Matching refs:source_file

129             source_file = os.path.join(source_root, *module.split('.'))
130 if os.path.exists(source_file + ".py"):
131 pyx_source_file = source_file + ".py"
133 pyx_source_file = source_file + ".pyx"
135 if os.path.exists(source_file + '.pxd'):
136 dep_files.append(source_file + '.pxd')
190 source_file = os.path.join(source_root, *module.split('.'))
191 if os.path.exists(source_file + ".py"):
192 pyx_source_file = source_file + ".py"
194 pyx_source_file = source_file + ".pyx"
195 c_source_file = source_file + ".c"
204 pxd_source_file = source_file + ".pxd"