<SPAN class="comment token"># Name: DeleteIdentical_Example2.py</SPAN>
<SPAN class="comment token"># Description: Delete identical features in a dataset based on Shape (geometry) and a TEXT field.</SPAN>
<SPAN class="comment token"># Import system modules</SPAN>
<SPAN class="keyword token">import</SPAN> arcpy
arcpy<SPAN class="punctuation token">.</SPAN>env<SPAN class="punctuation token">.</SPAN>overwriteOutput <SPAN class="operator token">=</SPAN> <SPAN class="token boolean">True</SPAN>
<SPAN class="comment token"># Set workspace environment</SPAN>
arcpy<SPAN class="punctuation token">.</SPAN>env<SPAN class="punctuation token">.</SPAN>workspace <SPAN class="operator token">=</SPAN> <SPAN class="string token">"C:/data/sbfire.gdb"</SPAN>
<SPAN class="comment token"># Set input feature class</SPAN>
in_dataset <SPAN class="operator token">=</SPAN> <SPAN class="string token">"fireincidents"</SPAN>
<SPAN class="comment token"># Set the field upon which the identicals are found</SPAN>
fields <SPAN class="operator token">=</SPAN> <SPAN class="punctuation token">[</SPAN><SPAN class="string token">"Shape"</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">"INTENSITY"</SPAN><SPAN class="punctuation token">]</SPAN>
<SPAN class="comment token"># Set the XY tolerance within which to identical records to be deleted</SPAN>
xy_tol <SPAN class="operator token">=</SPAN> <SPAN class="string token">"0.02 Miles"</SPAN>
<SPAN class="comment token"># Set the Z tolerance to default</SPAN>
z_tol <SPAN class="operator token">=</SPAN> <SPAN class="string token">""</SPAN>
<SPAN class="comment token"># Execute Delete Identical </SPAN>
arcpy<SPAN class="punctuation token">.</SPAN>DeleteIdentical_management<SPAN class="punctuation token">(</SPAN>in_dataset<SPAN class="punctuation token">,</SPAN> fields<SPAN class="punctuation token">,</SPAN> xy_tol<SPAN class="punctuation token">,</SPAN> z_tol<SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>

I just want to clarify which order it selects the objects to delete?
Thanks in advance~~~~