Staging
v0.5.1
https://github.com/python/cpython
Revision 10c9937b2381f6f5fa6464d95e1612369e8787b8 authored by Hirokazu Yamamoto on 28 February 2009, 12:21:53 UTC, committed by Hirokazu Yamamoto on 28 February 2009, 12:21:53 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70056 | hirokazu.yamamoto | 2009-02-28 21:13:07 +0900 | 2 lines

  Issue #1733986: Fixed mmap crash in accessing elements of second map object
  with same tagname but larger size than first map. (Windows)
........
1 parent 39c6dea
Raw File
Tip revision: 10c9937b2381f6f5fa6464d95e1612369e8787b8 authored by Hirokazu Yamamoto on 28 February 2009, 12:21:53 UTC
Merged revisions 70056 via svnmerge from
Tip revision: 10c9937
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