[issue14707] extend() puzzled me.
Daniel543 added the comment: Thank u both. -- ___ Python tracker <http://bugs.python.org/issue14707> ___ ___ Python-bugs-list mailing list Unsubscribe:
[issue14707] extend() puzzled me.
New submission from Daniel543 : Python 2.7.3 (default, Apr 20 2012, 22:44:07) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> a = ['1'] >>> b = [] >>> c = a >>>