Changes between Initial Version and Version 1 of Ticket #23119, comment 5


Ignore:
Timestamp:
Jul 29, 2014, 1:43:28 PM (10 years ago)
Author:
Collin Anderson

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23119, comment 5

    initial v1  
    1 Good catch. Your new traceback actually shows a different error (`IndexError: list index out of range`) that happens if the iterable is empty, which is fine on 1.6. I've commented on the first ticket. https://code.djangoproject.com/ticket/23112#comment:16
     1Good catch. Your new traceback actually shows a different error (`IndexError: list index out of range`) that happens if the iterable is empty, which is fine on 1.6.
     2{{{
     3field = models.CharField(choices=(x for x in []), blank=True, max_length=1)
     4}}}
     5I've commented on the first ticket. https://code.djangoproject.com/ticket/23112#comment:16
Back to Top