5 * Binary polynomial arithmetic
7 * (c) 2004 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of the Python interface to Catacomb.
14 * Catacomb/Python is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * Catacomb/Python is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with Catacomb/Python; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
34 /*----- Header files ------------------------------------------------------*/
36 #include "catacomb-python.h"
38 /*----- Main code ---------------------------------------------------------*/
40 PyTypeObject *gf_pytype;
42 PyObject *gf_pywrap(mp *x)
44 mp_pyobj *z = PyObject_New(mp_pyobj, mp_pytype);
46 return ((PyObject *)z);
49 mp *getgf(PyObject *o)
52 if ((x = tomp(o)) == 0) {
53 PyErr_Format(PyExc_TypeError, "can't convert %.100s to gf",
61 /*----- That's all, folks -------------------------------------------------*/