mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08: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.
10 lines
186 B
C
10 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};
|