Operating System Utilities¶
- int
Py_FdIsInteractive(FILE *fp, const char *filename)¶ Return true (nonzero) if the standard I/O filefp with namefilename isdeemed interactive. This is the case for files for which
isatty(fileno(fp))is true. If the global flagPy_InteractiveFlagis true, this functionalso returns true if thefilename pointer isNULL or if the name is equal toone of the strings'<stdin>'or'???'.
- void
PyOS_AfterFork()¶ Function to update some internal state after a process fork; this should becalled in the new process if the Python interpreter will continue to be used.If a new executable is loaded into the new process, this function does not needto be called.
- int
PyOS_CheckStack()¶ Return true when the interpreter runs out of stack space. This is a reliablecheck, but is only available when
USE_STACKCHECKis defined (currentlyon Windows using the Microsoft Visual C++ compiler).USE_STACKCHECKwill be defined automatically; you should never change the definition in yourown code.
- PyOS_sighandler_t
PyOS_getsig(int i)¶ Return the current signal handler for signali. This is a thin wrapper aroundeither
sigaction()orsignal(). Do not call those functionsdirectly!PyOS_sighandler_tis a typedef alias forvoid(*)(int).
- PyOS_sighandler_t
PyOS_setsig(int i, PyOS_sighandler_t h)¶ Set the signal handler for signali to beh; return the old signal handler.This is a thin wrapper around either
sigaction()orsignal(). Donot call those functions directly!PyOS_sighandler_tis a typedefalias forvoid(*)(int).
System Functions¶
These are utility functions that make functionality from thesys moduleaccessible to C code. They all work with the current interpreter thread’ssys module’s dict, which is contained in the internal thread state structure.
- PyObject *
PySys_GetObject(char *name)¶ - Return value: Borrowed reference.
Return the objectname from the
sysmodule orNULL if it doesnot exist, without setting an exception.
- FILE *
PySys_GetFile(char *name, FILE *def)¶ Return the
FILE*associated with the objectname in thesysmodule, ordef ifname is not in the module or is not associatedwith aFILE*.
- int
PySys_SetObject(char *name,PyObject *v)¶ Setname in the
sysmodule tov unlessv isNULL, in whichcasename is deleted from the sys module. Returns0on success,-1on error.
- void
PySys_ResetWarnOptions()¶ Reset
sys.warnoptionsto an empty list.
- void
PySys_AddWarnOption(char *s)¶ Appends to
sys.warnoptions.
- void
PySys_SetPath(char *path)¶ Set
sys.pathto a list object of paths found inpath which shouldbe a list of paths separated with the platform’s search path delimiter(:on Unix,;on Windows).
- void
PySys_WriteStdout(const char *format, ...)¶ Write the output string described byformat to
sys.stdout. Noexceptions are raised, even if truncation occurs (see below).format should limit the total size of the formatted output string to1000 bytes or less – after 1000 bytes, the output string is truncated.In particular, this means that no unrestricted “%s” formats should occur;these should be limited using “%.<N>s” where <N> is a decimal numbercalculated so that <N> plus the maximum size of other formatted text does notexceed 1000 bytes. Also watch out for “%f”, which can print hundreds ofdigits for very large numbers.
If a problem occurs, or
sys.stdoutis unset, the formatted messageis written to the real (C level)stdout.
- void
PySys_WriteStderr(const char *format, ...)¶ As above, but write to
sys.stderrorstderr instead.
Process Control¶
- void
Py_FatalError(const char *message)¶ Print a fatal error message and kill the process. No cleanup is performed.This function should only be invoked when a condition is detected that wouldmake it dangerous to continue using the Python interpreter; e.g., when theobject administration appears to be corrupted. On Unix, the standard C libraryfunction
abort()is called which will attempt to produce acorefile.
- void
Py_Exit(int status)¶ Exit the current process. This calls
Py_Finalize()and then calls thestandard C library functionexit(status).
- int
Py_AtExit(void (*func)())¶ Register a cleanup function to be called by
Py_Finalize(). The cleanupfunction will be called with no arguments and should return no value. At most32 cleanup functions can be registered. When the registration is successful,Py_AtExit()returns0; on failure, it returns-1. The cleanupfunction registered last is called first. Each cleanup function will be calledat most once. Since Python’s internal finalization will have completed beforethe cleanup function, no Python APIs should be called byfunc.
