New submission from Matthew Russell <matt.horiz...@gmail.com>:

Tuples, as we know are designed to immutable.

Hence I'm questioning if the following behavior is considered a defect:

>>> t = (1, 2)
>>> t += (1, 2, 3)
>>> t
(1, 2, 3)

?

----------
components: Interpreter Core
messages: 99219
nosy: mattrussell
severity: normal
status: open
title: immutability w/r to tuple.__add__
type: behavior
versions: Python 2.5, Python 2.6, Python 2.7, Python 3.1

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue7910>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to