New submission from Roger Upole <[EMAIL PROTECTED]>:

If the first item can't be inserted the interpreter will crash 
eventually.

while 1:
        try:
                d = { 'a':a,
                  'b':'b',
                  'c':'c',
                  'd':'d',
                  'e':'e',
                  'f':'f',
                  'g':'g',
                  'h':'h',
                  'i':'i',
                  'j':'j',
                  'k':'k',
                  'l':'l',
                  'm':'m',
                  'n':'n',
                  'o':'o'
                  }
        except:
                pass

As best I can tell, this only happens for the first item.
In a debug build, this assert fails on the second time thru
the loop (dictobject.c, line 247):
                assert (mp->ma_table == mp->ma_smalltable);

Apparently something is leaving one of the entries in the list
of preallocated dict objects in an inconsistent state.

----------
messages: 70990
nosy: rupole
severity: normal
status: open
title: dict creation failure causes crash
versions: Python 3.0

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3537>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to