mirror of
https://github.com/python/cpython
synced 2024-11-02 15:20:44 +00:00
2657df4744
This introduces a new function, imp.extension_suffixes(), which is currently undocumented. That is forthcoming once issue #14657 is resolved and how to expose file suffixes is decided.
9 lines
186 B
C
9 lines
186 B
C
|
|
/* This module provides the necessary stubs for when dynamic loading is
|
|
not present. */
|
|
|
|
#include "Python.h"
|
|
#include "importdl.h"
|
|
|
|
|
|
const char *_PyImport_DynLoadFiletab[] = {NULL};
|