summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-07-09 05:31:24 (GMT)
committerFred Drake <fdrake@acm.org>2000-07-09 05:31:24 (GMT)
commit1f0968c5f8f1216538f3a47db0338ddaa0feae71 (patch)
tree9e1779c37ddefaedea675fd0c93a332df66dcc5b /Objects
parentfd99de64701600f6a43153a5a3adab3e76f5ffe8 (diff)
downloadcpython-1f0968c5f8f1216538f3a47db0338ddaa0feae71.zip
cpython-1f0968c5f8f1216538f3a47db0338ddaa0feae71.tar.gz
cpython-1f0968c5f8f1216538f3a47db0338ddaa0feae71.tar.bz2
Remove legacy use of __SC__; no longer needed now that ANSI source is
the standard for Python implementation.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/floatobject.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 0e837f7..7a444ad 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) {