[issue17993] Missed comma causes unintentional implicit string literal concatenation

2013-05-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, committed in changesets 26531f21bc4c and 27cc0e0b7637. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker _

[issue17993] Missed comma causes unintentional implicit string literal concatenation

2013-05-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I haven't found any similar bugs, but I have found other bug in Tools/scripts/abitype.py. -- assignee: -> serhiy.storchaka ___ Python tracker __

[issue17993] Missed comma causes unintentional implicit string literal concatenation

2013-05-16 Thread Ezio Melotti
Ezio Melotti added the comment: Patch LGTM. Are you planning to look for similar bugs before fixing this? -- nosy: +ezio.melotti stage: patch review -> commit review ___ Python tracker

[issue17993] Missed comma causes unintentional implicit string literal concatenation

2013-05-16 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: I just found a bug in Tools/scripts/abitype.py: typeslots = [ 'tp_name', 'tp_basicsize', ... 'tp_subclasses', 'tp_weaklist', 'tp_del' 'tp_version_tag' ] There is a missed comma after 'tp_del'. Perhaps there are other similar bug