def __mul__(self, n):
return self.__class__(self.data*n)
__rmul__ = __mul__
- def __imull__(self, n):
- self.data += n
+ def __imul__(self, n):
+ self.data *= n
return self
# the following methods are defined in alphabetical order:
- #128475 - pythonrun.c - In Py_Finalize, don't reset initialized flag
until after the exit funcs have run
+- #128713 - mmapmodule.c - type(mmap_object) blew up on Linux.
+
+- mmap on windows creates a mapping without a name when tagname isn't
+ specified
+
+- #117745 - UserString.py - Fix two typos in __imul__.
+
What's New in Python 2.0?
=========================