[issue24350] dict({'a':'aa'}, a='bb') raises segmentation fault on Mac

2015-06-01 Thread Ned Deily
Changes by Ned Deily : -- resolution: out of date -> duplicate stage: -> resolved superseder: -> python.org Interactive interpreter linked with libedit can segfault on future OS X ___ Python tracker

[issue24350] dict({'a':'aa'}, a='bb') raises segmentation fault on Mac

2015-06-01 Thread Graham Klyne
Graham Klyne added the comment: I just tried the same on a Python 2.7.5 installation and it worked as expected (no crash). So I now assume this is fixed. Sorry for the noise. -- resolution: -> out of date status: open -> closed ___ Python tracker

[issue24350] dict({'a':'aa'}, a='bb') raises segmentation fault on Mac

2015-06-01 Thread Graham Klyne
Graham Klyne added the comment: Oops, (RETURN) submitted before comments done... I think the example interactive python script is self-explanatory. I know my version of Python is a bit out of date, but I couldn't see anything in the issue list that indicated this problem had been seen and fixe

[issue24350] dict({'a':'aa'}, a='bb') raises segmentation fault on Mac

2015-06-01 Thread Graham Klyne
New submission from Graham Klyne: conina:~ graham$ python Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> dict({'a':'aa'},b='bb') {'a': 'aa', 'b': 'bb'} >>> d