Getting rid of bitwise operators in Python 3?

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Sat Sep 22 19:04:42 EDT 2007


On Sat, 22 Sep 2007 21:17:38 +0000, Bryan Olson wrote:

> The operator module offers pow(). Is there any good reason for
> pow() as a built-in?

The `operator.pow()` is  just the function for ``**``, it lacks the
optional third argument of the built in `pow()`.

Ciao,
	Marc 'BlackJack' Rintsch



More information about the Python-list mailing list