summaryrefslogtreecommitdiffstats
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-18 16:18:13 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-18 16:18:13 (GMT)
commite89bc75048d0142859379b2b92e77d984fdbef6e (patch)
tree59cc70e5004568e03a371b088109b2330d03698c /Include/pyerrors.h
parent14aa5da824a398fad7403510f7b49e724f862e23 (diff)
downloadcpython-e89bc75048d0142859379b2b92e77d984fdbef6e.zip
cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.gz
cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.bz2
Changes for dynamic linking under NT
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index 050ff19..33c7806 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -39,25 +39,25 @@ void err_clear PROTO((void));
/* Predefined exceptions */
-extern object *AccessError;
-extern object *AttributeError;
-extern object *ConflictError;
-extern object *EOFError;
-extern object *IOError;
-extern object *ImportError;
-extern object *IndexError;
-extern object *KeyError;
-extern object *KeyboardInterrupt;
-extern object *MemoryError;
-extern object *NameError;
-extern object *OverflowError;
-extern object *RuntimeError;
-extern object *SyntaxError;
-extern object *SystemError;
-extern object *SystemExit;
-extern object *TypeError;
-extern object *ValueError;
-extern object *ZeroDivisionError;
+extern DL_IMPORT object *AccessError;
+extern DL_IMPORT object *AttributeError;
+extern DL_IMPORT object *ConflictError;
+extern DL_IMPORT object *EOFError;
+extern DL_IMPORT object *IOError;
+extern DL_IMPORT object *ImportError;
+extern DL_IMPORT object *IndexError;
+extern DL_IMPORT object *KeyError;
+extern DL_IMPORT object *KeyboardInterrupt;
+extern DL_IMPORT object *MemoryError;
+extern DL_IMPORT object *NameError;
+extern DL_IMPORT object *OverflowError;
+extern DL_IMPORT object *RuntimeError;
+extern DL_IMPORT object *SyntaxError;
+extern DL_IMPORT object *SystemError;
+extern DL_IMPORT object *SystemExit;
+extern DL_IMPORT object *TypeError;
+extern DL_IMPORT object *ValueError;
+extern DL_IMPORT object *ZeroDivisionError;
/* Convenience functions */