Remove unreachable code. (Sjoerd)

This commit is contained in:
Guido van Rossum 1998-10-09 13:27:19 +00:00
parent 1554b7b061
commit 3886026bed
1 changed files with 0 additions and 8 deletions

View File

@ -398,10 +398,6 @@ PyLong_FromLongLong(ival)
return (PyObject *)v;
}
/* If we got here, we're confused... */
PyErr_SetString( PyExc_ArithmeticError, "invalid long integer" );
return NULL;
#endif
}
@ -434,10 +430,6 @@ PyLong_FromUnsignedLongLong(ival)
return (PyObject *)v;
}
/* If we got here, we're confused... */
PyErr_SetString( PyExc_ArithmeticError, "invalid unsigned long integer" );
return NULL;
#endif
}