Staging
v0.5.1
https://github.com/python/cpython
Revision 1812bd44d5cada6e8058c56fb13bba7be919c40d authored by Serhiy Storchaka on 05 February 2014, 11:42:01 UTC, committed by Serhiy Storchaka on 05 February 2014, 11:42:01 UTC
1 parent d33491e
Raw File
Tip revision: 1812bd44d5cada6e8058c56fb13bba7be919c40d authored by Serhiy Storchaka on 05 February 2014, 11:42:01 UTC
Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests.
Tip revision: 1812bd4
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