From 7afedab6f82193fc3559a5572387eb6ee4775ce9 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Fri, 11 Sep 2009 15:38:08 -0400 Subject: [PATCH] syntax coloring --- special-method-names.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/special-method-names.html b/special-method-names.html index 9bb28a1..99a3fad 100644 --- a/special-method-names.html +++ b/special-method-names.html @@ -388,7 +388,7 @@ class FieldStorage: x.__truediv__(y) floor division -x // y +x // y x.__floordiv__(y) modulo (remainder) @@ -466,7 +466,7 @@ class FieldStorage: y.__rtruediv__(x) floor division -x // y +x // y y.__rfloordiv__(x) modulo (remainder) @@ -527,7 +527,7 @@ class FieldStorage: x.__itruediv__(y) in-place floor division -x //= y +x //= y x.__ifloordiv__(y) in-place modulo