Staging
v0.8.1
https://github.com/python/cpython
Revision 86516d9225d82cc039b1f71a41bec610cf9ab5ce authored by Victor Stinner on 18 February 2014, 08:22:00 UTC, committed by Victor Stinner on 18 February 2014, 08:22:00 UTC
1 parent 9a49c64
Raw File
Tip revision: 86516d9225d82cc039b1f71a41bec610cf9ab5ce authored by Victor Stinner on 18 February 2014, 08:22:00 UTC
Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.
Tip revision: 86516d9
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