Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: d4c7290368a82a265c9905dc5c1e95591fb96333 authored by Serhiy Storchaka on 30 October 2014, 22:53:19 UTC
Issue #22410: Module level functions in the re module now cache compiled
Tip revision: d4c7290
dynload_stub.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};
back to top