From 1f0968c5f8f1216538f3a47db0338ddaa0feae71 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sun, 9 Jul 2000 05:31:24 +0000 Subject: [PATCH] Remove legacy use of __SC__; no longer needed now that ANSI source is the standard for Python implementation. --- Objects/floatobject.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 0e837f711b..7a444ad509 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -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) { -- 2.49.0