<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to 1: error detection for open list brace on multiple lines</title><link href="https://sourceforge.net/p/pythonnetbeans6/bugs/1/" rel="alternate"/><link href="https://sourceforge.net/p/pythonnetbeans6/bugs/1/feed.atom" rel="self"/><id>https://sourceforge.net/p/pythonnetbeans6/bugs/1/</id><updated>2008-06-18T16:31:28Z</updated><subtitle>Recent changes to 1: error detection for open list brace on multiple lines</subtitle><entry><title>error detection for open list brace on multiple lines</title><link href="https://sourceforge.net/p/pythonnetbeans6/bugs/1/" rel="alternate"/><published>2008-06-18T16:31:28Z</published><updated>2008-06-18T16:31:28Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net92e75f774032a135789de0e7d1297f8be62fc412</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;When, i'm initializing a collection with the following structure, the editor found severals errors such as " ')' expected or unexpected token". But the script is syntaxycally correct and runs without problem.&lt;/p&gt;
&lt;p&gt;Here the script&lt;/p&gt;
&lt;p&gt;1 class Collection(object):&lt;br /&gt;
2    def __init__(self, items):&lt;br /&gt;
3        self.items = items&lt;br /&gt;
4 class Item(object):&lt;br /&gt;
5    def __init__(self,n):&lt;br /&gt;
6        self.n = n&lt;br /&gt;
7&lt;br /&gt;
8 c = Collection( [&lt;br /&gt;
9          Item(1)&lt;br /&gt;
10        , Item(2)&lt;br /&gt;
11        , Item(3)&lt;br /&gt;
12        ] )&lt;/p&gt;
&lt;p&gt;errors&lt;br /&gt;
line  8 : ')' expected&lt;br /&gt;
line  9 : ')' expected&lt;br /&gt;
line 10 : unexpected token ','&lt;br /&gt;
line 11 : unexpected token ','&lt;br /&gt;
line 12 : unexpected token ']'&lt;/p&gt;
&lt;p&gt;Versions : &lt;br /&gt;
- python editor plugin for netbeans 6 : v 1.1&lt;br /&gt;
- netbeans 6.1&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>