Staging
v0.8.1
https://github.com/python/cpython
Revision 7ed6f7ead19c81d697e0364ac849bd042b7f1502 authored by Raymond Hettinger on 10 March 2013, 16:49:08 UTC, committed by Raymond Hettinger on 10 March 2013, 16:49:08 UTC
1 parent 8c5c3e3
Raw File
Tip revision: 7ed6f7ead19c81d697e0364ac849bd042b7f1502 authored by Raymond Hettinger on 10 March 2013, 16:49:08 UTC
Classmethod example needs to inherit from object
Tip revision: 7ed6f7e
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