Staging
v0.8.1
https://github.com/python/cpython
Revision 4718bf894103887262287293599f4188e2601d37 authored by Kurt B. Kaiser on 12 February 2008, 21:34:12 UTC, committed by Kurt B. Kaiser on 12 February 2008, 21:34:12 UTC
1 parent 53dbe39
Raw File
Tip revision: 4718bf894103887262287293599f4188e2601d37 authored by Kurt B. Kaiser on 12 February 2008, 21:34:12 UTC
Convert some custom sort comparison functions to equivalent key functions.
Tip revision: 4718bf8
dynload_stub.c

/* This module provides the necessary stubs for when dynamic loading is
   not present. */

#include "Python.h"
#include "importdl.h"


const struct filedescr _PyImport_DynLoadFiletab[] = {
	{0, 0}
};
back to top