#include <fcntl.h>
#endif
#ifdef __cplusplus
-extern "C" {
+extern "C" {
#endif
#ifdef MS_WINDOWS
flags.cf_flags = 0;
- mod = PyParser_ASTFromFile(fp, pathname, Py_file_input, 0, 0, &flags,
+ mod = PyParser_ASTFromFile(fp, pathname, Py_file_input, 0, 0, &flags,
NULL, arena);
if (mod) {
co = PyAST_Compile(mod, pathname, NULL, arena);
mode_t mode = srcstat->st_mode & ~S_IEXEC;
#else
mode_t mode = srcstat->st_mode & ~S_IXUSR & ~S_IXGRP & ~S_IXOTH;
-#endif
+#endif
fp = open_exclusive(cpathname, mode);
if (fp == NULL) {
char *cpathname;
PyCodeObject *co;
PyObject *m;
-
+
if (fstat(fileno(fp), &st) != 0) {
PyErr_Format(PyExc_RuntimeError,
"unable to get file status from '%s'",
else {
char warnstr[MAXPATHLEN+80];
sprintf(warnstr, "Not importing directory "
- "'%.*s': missing __init__.py",
+ "'%.*s': missing __init__.py",
MAXPATHLEN, buf);
if (PyErr_Warn(PyExc_ImportWarning,
warnstr)) {
else {
char warnstr[MAXPATHLEN+80];
sprintf(warnstr, "Not importing directory "
- "'%.*s': missing __init__.py",
+ "'%.*s': missing __init__.py",
MAXPATHLEN, buf);
if (PyErr_Warn(PyExc_ImportWarning,
warnstr)) {
modname = PyDict_GetItem(globals, namestr);
if (modname == NULL || !PyString_Check(modname))
return Py_None;
-
+
modpath = PyDict_GetItem(globals, pathstr);
if (modpath != NULL) {
/* __path__ is set, so modname is already the package name */
struct filedescr *fdp;
FILE *fp = NULL;
PyObject *newm;
-
+
if (modules_reloading == NULL) {
Py_FatalError("PyImport_ReloadModule: "
"no modules_reloading dictionary!");