From 8a5de60b33218a6c66354945f43bbff65e4ab176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20K=C3=B6the?= Date: Tue, 28 Nov 2000 21:38:21 +0000 Subject: [PATCH] fixed html bugs recovered by "validator.w3.org" [SVN r8353] --- doc/special.html | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/special.html b/doc/special.html index 525b0a56..1f35b01d 100644 --- a/doc/special.html +++ b/doc/special.html @@ -1,11 +1,10 @@ - + Special Method and Operator Support

- c++boost.gif (8819 bytes)Special Method and Operator Support

@@ -202,7 +201,7 @@ BigNum operator+(BigNum, BigNum) or as member functions
 BigNum BigNum::operator+(BigNum).
-
+

For the Python built-in functions pow() and @@ -646,13 +645,13 @@ Note that "__rrpow__" is an extension not present in plain Python. iteration idiom looks like

 for i in S:
-
+ while in C++ one writes
 for (iterator i = S.begin(), end = S.end(); i != end; ++i)
-
+

One could try to wrap C++ iterators in order to carry the C++ idiom into Python. However, this does not work very well because