MissingPy-0.10.0: glue/excglue.c
/* NOTICE -- THIS FILE IS AUTO-GENERATED -- DO NOT EDIT
MissingPy: Haskell Python Interface libraries
Copyright (C) 2004 - 2005 John Goerzen <jgoerzen@complete.org>
All code is under the following license unless otherwise noted:
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
The GNU General Public License is available in the file COPYING in the source
distribution. Debian GNU/Linux users may find this in
/usr/share/common-licenses/GPL-2.
If the GPL is unacceptable for your uses, please e-mail me; alternative
terms can be negotiated for your project.
*/
#include <Python.h>
PyObject *hspy_ArithmeticError(void) { return PyExc_ArithmeticError; }
PyObject *hspy_AssertionError(void) { return PyExc_AssertionError; }
PyObject *hspy_AttributeError(void) { return PyExc_AttributeError; }
PyObject *hspy_EOFError(void) { return PyExc_EOFError; }
PyObject *hspy_EnvironmentError(void) { return PyExc_EnvironmentError; }
PyObject *hspy_Exception(void) { return PyExc_Exception; }
PyObject *hspy_FloatingPointError(void) { return PyExc_FloatingPointError; }
PyObject *hspy_IOError(void) { return PyExc_IOError; }
PyObject *hspy_ImportError(void) { return PyExc_ImportError; }
PyObject *hspy_IndexError(void) { return PyExc_IndexError; }
PyObject *hspy_KeyError(void) { return PyExc_KeyError; }
PyObject *hspy_KeyboardInterrupt(void) { return PyExc_KeyboardInterrupt; }
PyObject *hspy_LookupError(void) { return PyExc_LookupError; }
PyObject *hspy_MemoryError(void) { return PyExc_MemoryError; }
PyObject *hspy_NameError(void) { return PyExc_NameError; }
PyObject *hspy_NotImplementedError(void) { return PyExc_NotImplementedError; }
PyObject *hspy_OSError(void) { return PyExc_OSError; }
PyObject *hspy_OverflowError(void) { return PyExc_OverflowError; }
PyObject *hspy_ReferenceError(void) { return PyExc_ReferenceError; }
PyObject *hspy_RuntimeError(void) { return PyExc_RuntimeError; }
PyObject *hspy_StandardError(void) { return PyExc_StandardError; }
PyObject *hspy_SyntaxError(void) { return PyExc_SyntaxError; }
PyObject *hspy_SystemError(void) { return PyExc_SystemError; }
PyObject *hspy_SystemExit(void) { return PyExc_SystemExit; }
PyObject *hspy_TypeError(void) { return PyExc_TypeError; }
PyObject *hspy_ValueError(void) { return PyExc_ValueError; }
PyObject *hspy_ZeroDivisionError(void) { return PyExc_ZeroDivisionError; }
#ifdef MS_WINDOWS
PyObject *hspy_WindowsError(void) { return PyExc_WindowsError; }
#endif