From af01f668173d4061893148b54a0f01b91c7716c2 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sat, 21 Dec 2013 16:19:10 +0100 Subject: Issue #16136: Remove VMS support and VMS-related code --- Objects/exceptions.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Objects/exceptions.c') diff --git a/Objects/exceptions.c b/Objects/exceptions.c index af40bc8fea..bff7f0819e 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -16,9 +16,6 @@ PyObject *PyExc_IOError = NULL; #ifdef MS_WINDOWS PyObject *PyExc_WindowsError = NULL; #endif -#ifdef __VMS -PyObject *PyExc_VMSError = NULL; -#endif /* The dict map from errno codes to OSError subclasses */ static PyObject *errnomap = NULL; @@ -2472,9 +2469,6 @@ _PyExc_Init(PyObject *bltinmod) INIT_ALIAS(IOError, OSError) #ifdef MS_WINDOWS INIT_ALIAS(WindowsError, OSError) -#endif -#ifdef __VMS - INIT_ALIAS(VMSError, OSError) #endif POST_INIT(EOFError) POST_INIT(RuntimeError) -- cgit v1.2.1