This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients ezio.melotti, vivek.ratnaparkhi
Date 2013-08-17.18:07:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376762870.25.0.807988713643.issue18770@psf.upfronthosting.co.za>
In-reply-to
Content
The docs say that:
  l.insert(pos, val)
is equivalent to:
  l[pos:pos] = [val]
The docstring also says that the value is inserted before pos, so .insert is working as documented.
History
Date User Action Args
2013-08-17 18:07:50ezio.melottisetrecipients: + ezio.melotti, vivek.ratnaparkhi
2013-08-17 18:07:50ezio.melottisetmessageid: <1376762870.25.0.807988713643.issue18770@psf.upfronthosting.co.za>
2013-08-17 18:07:50ezio.melottilinkissue18770 messages
2013-08-17 18:07:50ezio.melotticreate