From 09b6a45abea11345afb59161f0f0496189b533a5 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 22 Aug 2007 21:33:30 +0000 Subject: [PATCH] Guido and Jeffrey decided that __mod__ and __divmod__ should stay on floats. --- pep-3100.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-3100.txt b/pep-3100.txt index 94b5f44ca..af4b6fd3d 100644 --- a/pep-3100.txt +++ b/pep-3100.txt @@ -121,7 +121,7 @@ To be removed: * ``raise Exception, "message"``: use ``raise Exception("message")`` [12]_ * ```x```: use ``repr(x)`` [2]_ [done] * The ``<>`` operator: use ``!=`` instead [3]_ [done] -* The __mod__ and __divmod__ special methods on float. [21]_ +* The __mod__ and __divmod__ special methods on float. [they should stay] [21]_ * Might drop unbound methods? [7]_ [UNLIKELY] * METH_OLDARGS * WITH_CYCLE_GC [done]