Lines Matching defs:mod
810 mod_ty mod;
815 mod = PyAST_obj2mod(source, arena, compile_mode);
816 if (mod == NULL || !_PyAST_Validate(mod)) {
820 result = (PyObject*)_PyAST_Compile(mod, filename,
875 Return the tuple (x//y, x%y). Invariant: div*y + mod == x.
1954 mod: object = None
1956 Equivalent to base**exp with 2 arguments or base**exp % mod with 3 arguments
1964 PyObject *mod)
1967 return PyNumber_Power(base, exp, mod);
3029 PyObject *mod, *dict, *debug;
3033 mod = _PyModule_CreateInitialized(&builtinsmodule, PYTHON_API_VERSION);
3034 if (mod == NULL)
3036 dict = PyModule_GetDict(mod);
3093 return mod;