diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2002-07-29 13:42:14 +0000 |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2002-07-29 13:42:14 +0000 |
commit | 868e0a4b4411edf7a1e59cd0fbd520c4e289ec3c (patch) | |
tree | 9bb0b88493eb04a804887d593ff90ab411a44854 /Python/exceptions.c | |
parent | d2688a389898c95ac81ff71257f628ca310abf68 (diff) | |
download | cpython-868e0a4b4411edf7a1e59cd0fbd520c4e289ec3c.tar.gz |
Excise DL_IMPORT/EXPORT from object.h, and related files. This patch
also adds 'extern' to PyAPI_DATA rather than at each declaration, as
discussed with Tim and Guido.
Diffstat (limited to 'Python/exceptions.c')
-rw-r--r-- | Python/exceptions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/exceptions.c b/Python/exceptions.c index afb6a7bf38..934850aa06 100644 --- a/Python/exceptions.c +++ b/Python/exceptions.c @@ -1050,7 +1050,7 @@ static struct { -DL_EXPORT(void) +void _PyExc_Init(void) { char *modulename = "exceptions"; @@ -1146,7 +1146,7 @@ _PyExc_Init(void) } -DL_EXPORT(void) +void _PyExc_Fini(void) { int i; |