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