[issue6089] str.format raises SystemError

2009-05-23 Thread Eric Smith
Eric Smith added the comment: Fixed in: trunk: r72848 release26-maint: r72849 py3k: r72850 release30-main: r72851 -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue6089] str.format raises SystemError

2009-05-22 Thread Eric Smith
Eric Smith added the comment: Any character after a ']' other than '.' or '[' triggers this bug: >>> '{0[0]x}'.format([None]) Assertion failed: (0), function FieldNameIterator_next, file Objects/stringlib/string_format.h, line 379. I'll fix it this weekend. -- assignee: -> eric.smith

[issue6089] str.format raises SystemError

2009-05-22 Thread R. David Murray
Changes by R. David Murray : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue6089] str.format raises SystemError

2009-05-22 Thread R. David Murray
Changes by R. David Murray : -- priority: -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue6089] str.format raises SystemError

2009-05-22 Thread R. David Murray
R. David Murray added the comment: trunk and py3k debug build gives this: >>> '{0[0](10)}'.format([None]) python: Objects/stringlib/string_format.h:379: FieldNameIterator_next: Assertion `0' failed. zsh: abort ./python -- nosy: +r.david.murray

[issue6089] str.format raises SystemError

2009-05-22 Thread Mark Florisson
New submission from Mark Florisson : >>> '{0[0](10)}'.format([None]) Traceback (most recent call last): File "", line 1, in SystemError: error return without exception set -- components: Interpreter Core messages: 88198 nosy: eggy severity: normal status: open title: str.format raises