Amaury Forgeot d'Arc <[email protected]> added the comment: Well, this already happen with other types:
>>> a = 100 >>> a //= 2.0 >>> a 50.0 >>> d = datetime.datetime.now() >>> d -= datetime.datetime.now() >>> d datetime.timedelta(-1, 86391, 609000) See http://docs.python.org/reference/datamodel.html#object.__iadd__ "... return the result (which could be, but does not have to be, self) ..." ---------- _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue2706> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
