Staging
v0.5.1
https://github.com/python/cpython
Revision c6f9b2b7f5f3640ce8aeac4aff67f75821891d81 authored by Steve Dower on 08 October 2016, 19:37:33 UTC, committed by Steve Dower on 08 October 2016, 19:37:33 UTC
1 parent ea200db
Raw File
Tip revision: c6f9b2b7f5f3640ce8aeac4aff67f75821891d81 authored by Steve Dower on 08 October 2016, 19:37:33 UTC
Issue #28162: Fixes Ctrl+Z handling in console readall()
Tip revision: c6f9b2b
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