Home | History | Annotate | Download | only in python2.7

Lines Matching refs:fp

51 #define PyParser_SimpleParseFile(FP, S, B) \
52 PyParser_SimpleParseFileFlags(FP, S, B, 0)
85 #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL)
86 #define PyRun_AnyFileEx(fp, name, closeit) \
87 PyRun_AnyFileExFlags(fp, name, closeit, NULL)
88 #define PyRun_AnyFileFlags(fp, name, flags) \
89 PyRun_AnyFileExFlags(fp, name, 0, flags)
95 #define PyRun_File(fp, p, s, g, l) \
96 PyRun_FileExFlags(fp, p, s, g, l, 0, NULL)
97 #define PyRun_FileEx(fp, p, s, g, l, c) \
98 PyRun_FileExFlags(fp, p, s, g, l, c, NULL)
99 #define PyRun_FileFlags(fp, p, s, g, l, flags) \
100 PyRun_FileExFlags(fp, p, s, g, l, 0, flags)