Remove legacy use of __SC__; no longer needed now that ANSI source is

the standard for Python implementation.
This commit is contained in:
Fred Drake 2000-07-09 05:31:24 +00:00
parent fd99de6470
commit 1f0968c5f8
1 changed files with 0 additions and 5 deletions

View File

@ -112,12 +112,7 @@ fill_free_list(void)
}
PyObject *
#ifdef __SC__
PyFloat_FromDouble(double fval)
#else
PyFloat_FromDouble(fval)
double fval;
#endif
{
register PyFloatObject *op;
if (free_list == NULL) {