[issue31915] (list).insert() not working

2017-10-31 Thread Steven D'Aprano
Change by Steven D'Aprano : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue31915] (list).insert() not working

2017-10-31 Thread Steven D'Aprano
Steven D'Aprano added the comment: Thank you for taking the time to report what you thought was a bug, but your example is way too complicated for a bug report. We shouldn't have to study your entire program to understand what the problem is. I can see at least one bug in your code: tble

[issue31915] (list).insert() not working

2017-10-31 Thread Michael Selik
New submission from Michael Selik : What behavior did you expect from your code? What behavior did you get instead? It looks like you're not calling the list copy method correctly. Try writing "tables2.copy()" instead of "tables2.copy". It also looks like you have other bugs in your code. Thi

[issue31915] (list).insert() not working

2017-10-31 Thread Chance Parsons
Change by Chance Parsons : -- files: Times Tables.py nosy: Chance Parsons priority: normal severity: normal status: open title: (list).insert() not working type: behavior versions: Python 3.6 Added file: https://bugs.python.org/file47250/Times Tables.py _