Staging
v0.5.1
Revision 1a274359283d3d1f4f60dd527843f72e0368caf3 authored by Miss Islington (bot) on 24 January 2020, 20:10:52 UTC, committed by GitHub on 24 January 2020, 20:10:52 UTC

Use `from ... import ...` to ensure module is fully loaded before accessing its attributes.
(cherry picked from commit 9017e0bd5e124ae6d2ed94b9e9cacb2e86270980)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 61b3484
Raw File
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