| Guido van Rossum | 22a1d36 | 1999-12-20 21:18:49 +0000 | [diff] [blame] | 1 | /*********************************************************** | 
 | 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
 | 3 | The Netherlands. | 
 | 4 |  | 
 | 5 |                         All Rights Reserved | 
 | 6 |  | 
| Guido van Rossum | fd71b9e | 2000-06-30 23:50:40 +0000 | [diff] [blame^] | 7 | Copyright (c) 2000, BeOpen.com. | 
 | 8 | Copyright (c) 1995-2000, Corporation for National Research Initiatives. | 
 | 9 | Copyright (c) 1990-1995, Stichting Mathematisch Centrum. | 
 | 10 | All rights reserved. | 
| Guido van Rossum | 22a1d36 | 1999-12-20 21:18:49 +0000 | [diff] [blame] | 11 |  | 
| Guido van Rossum | fd71b9e | 2000-06-30 23:50:40 +0000 | [diff] [blame^] | 12 | See the file "Misc/COPYRIGHT" for information on usage and | 
 | 13 | redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. | 
| Guido van Rossum | 22a1d36 | 1999-12-20 21:18:49 +0000 | [diff] [blame] | 14 |  | 
 | 15 | ******************************************************************/ | 
 | 16 |  | 
 | 17 | /* This module provides the necessary stubs for when dynamic loading is | 
 | 18 |    not present. */ | 
 | 19 |  | 
 | 20 | #include "Python.h" | 
 | 21 | #include "importdl.h" | 
 | 22 |  | 
 | 23 |  | 
 | 24 | const struct filedescr _PyImport_DynLoadFiletab[] = { | 
 | 25 | 	{0, 0} | 
 | 26 | }; |