Staging
v0.8.1
Revision 20372d65243d5573fba17d026681a3b24d95c284 authored by Miss Islington (bot) on 25 June 2019, 07:12:19 UTC, committed by GitHub on 25 June 2019, 07:12:19 UTC

eval() was being called an extra time without a filter for
deprecation warnings.
(cherry picked from commit 9fe42b49c79c453d905d0395150ba0607fbab18b)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
1 parent 210358b
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