Staging
v0.5.1
https://github.com/python/cpython
Revision 9da33ab193803922141f654f6d3cccdaed6b4866 authored by Serhiy Storchaka on 24 October 2013, 20:59:28 UTC, committed by Serhiy Storchaka on 24 October 2013, 20:59:28 UTC
argument.  Original patch by Arfrever Frehtes Taifersar Arahesis.
1 parent be80fc9
Raw File
Tip revision: 9da33ab193803922141f654f6d3cccdaed6b4866 authored by Serhiy Storchaka on 24 October 2013, 20:59:28 UTC
Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string
Tip revision: 9da33ab
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