[New-bugs-announce] [issue17993] Missed comma causes unintentional implicit string literal concatenation

Serhiy Storchaka report at bugs.python.org
Thu May 16 09:18:52 CEST 2013


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 bugs in Python sources.

----------
components: Demos and Tools
files: missed_comma.patch
keywords: patch
messages: 189343
nosy: serhiy.storchaka
priority: normal
severity: normal
stage: patch review
status: open
title: Missed comma causes unintentional implicit string literal concatenation
type: behavior
versions: Python 3.3, Python 3.4
Added file: http://bugs.python.org/file30280/missed_comma.patch

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue17993>
_______________________________________


More information about the New-bugs-announce mailing list