Staging
v0.8.1
https://github.com/python/cpython
Revision 7c251bbd6e94ee43f100c8011cbcb5d9a8a1c9b3 authored by Brian Curtin on 14 August 2010, 17:09:55 UTC, committed by Brian Curtin on 14 August 2010, 17:09:55 UTC
1 parent 77cb7ed
Raw File
Tip revision: 7c251bbd6e94ee43f100c8011cbcb5d9a8a1c9b3 authored by Brian Curtin on 14 August 2010, 17:09:55 UTC
Fix #9600. Don't use relative imports for _multiprocessing on Windows.
Tip revision: 7c251bb
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