Kaydet (Commit) 79f25d9a authored tarafından Guido van Rossum's avatar Guido van Rossum

Quickly renamed the remaining files -- this directory is done.

üst 65bf9f26
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -40,10 +40,11 @@ extern struct filedescr {
char *suffix;
char *mode;
enum filetype type;
} import_filetab[];
} _PyImport_Filetab[];
extern object *import_modules;
extern PyObject *import_modules;
extern object *load_dynamic_module PROTO((char *name, char *pathname, FILE *));
extern PyObject *_PyImport_LoadDynamicModule
Py_PROTO((char *name, char *pathname, FILE *));
extern int import_maxsuffixsize;
extern int _PyImport_MaxSuffixSize;
This diff is collapsed.
This diff is collapsed.
......@@ -36,15 +36,14 @@ PERFORMANCE OF THIS SOFTWARE.
overridden (at link time) by a more powerful version implemented in
signalmodule.c. */
#include "allobjects.h"
#include "intrcheck.h"
#include "Python.h"
/* ARGSUSED */
int
sigcheck()
PyErr_CheckSignals()
{
if (!intrcheck())
if (!PyOS_InterruptOccurred())
return 0;
err_set(KeyboardInterrupt);
PyErr_SetNone(PyExc_KeyboardInterrupt);
return -1;
}
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment