Staging
v0.5.1
https://github.com/python/cpython
Revision 0d441119f5eb6437f6145e89e0963f75494d8a3f authored by Serhiy Storchaka on 14 November 2015, 13:10:35 UTC, committed by Serhiy Storchaka on 14 November 2015, 13:10:35 UTC
1 parent 806fb25
Raw File
Tip revision: 0d441119f5eb6437f6145e89e0963f75494d8a3f authored by Serhiy Storchaka on 14 November 2015, 13:10:35 UTC
Issue #25388: Fixed tokenizer crash when processing undecodable source code
Tip revision: 0d44111
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