Staging
v0.8.1
https://github.com/python/cpython
Revision aef859c5ee3506f8faad0055e7875af94c4d483f authored by Serhiy Storchaka on 05 February 2015, 13:14:35 UTC, committed by Serhiy Storchaka on 05 February 2015, 13:14:35 UTC
1 parent a87501f
Raw File
Tip revision: aef859c5ee3506f8faad0055e7875af94c4d483f authored by Serhiy Storchaka on 05 February 2015, 13:14:35 UTC
Issue #18982: Add tests for CLI of the calendar module.
Tip revision: aef859c
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