<div dir="ltr"><div><div>Salve a tutti,<br></div>mi sono imbattuto in un baco di un mio programma (python 3.5) ma non riesco  capire cosa ho sbagliato.<br></div>l'asserzione dice cosa mi aspetto.<br><div><div><div><br><div class="gmail_quote"><div dir="ltr"><pre style="background-color:rgb(255,255,255);color:rgb(0,0,0);font-family:"Courier New""><span style="color:rgb(34,128,22);font-style:italic"># -*- coding: utf-8 -*-<br></span><span style="color:rgb(34,128,22);font-style:italic"><br></span><span style="color:rgb(12,21,196);font-weight:bold">class </span><span style="font-weight:bold;font-style:italic">CIntervallo</span>:<br>   <span style="color:rgb(12,21,196);font-weight:bold">def </span><span style="color:rgb(164,57,163);font-weight:bold">getRange</span>(<span style="color:rgb(148,85,141)">self</span>):<br>      oRangeP = CRange()<br>      <span style="color:rgb(12,21,196);font-weight:bold">return </span>oRangeP<br><span style="color:rgb(12,21,196);font-weight:bold">class </span><span style="font-weight:bold;font-style:italic">CRange</span>():<br>   <span style="color:rgb(12,21,196);font-weight:bold">def </span><span style="color:rgb(178,0,178)">__init__</span>(<span style="color:rgb(148,85,141)">self</span>,lTests=[]):<br>      <span style="color:rgb(148,85,141)">self</span>.Tests = lTests<br><br>oPippo = CIntervallo()<br>oRange = oPippo.getRange()<br>oRange.Tests += [<span style="color:rgb(0,128,128);font-weight:bold">"Cavolo"</span>]<br><span style="color:rgb(34,128,22);font-style:italic">#<br></span>oTopolino = CIntervallo()<br>oRange1 = oTopolino.getRange()<br><span style="color:rgb(12,21,196);font-weight:bold">assert </span><span style="color:rgb(0,0,128)">len</span>(oRange1.Tests)==<span style="color:rgb(0,0,255)">0</span>,<span style="color:rgb(0,128,128);font-weight:bold">"Mi aspetto che l'attributo 'Tests' contiene una lista vuota invece contiene '%s'." </span>% (oRange1.Tests)</pre></div>
</div>PS: ovviamente questo e' un estratto del programma che ho costruito per far emergere il baco.<br><br></div><div>Aiutatemi per favore, proprio non capisco cosa sbaglio.<br></div></div></div></div>