Consider the following script, the polygon is a simple one with a hole inside:
<SPAN class="keyword token">import</SPAN> arcpy
poly1 <SPAN class="operator token">=</SPAN> arcpy<SPAN class="punctuation token">.</SPAN>FromWKT<SPAN class="punctuation token">(</SPAN><SPAN class="string token">"POLYGON ((35 10, 45 45, 15 40, 10 20, 35 10), (20 30, 35 35, 30 20, 20 30))"</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">print</SPAN><SPAN class="punctuation token">(</SPAN>poly1<SPAN class="punctuation token">.</SPAN>isMultipart<SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">print</SPAN><SPAN class="punctuation token">(</SPAN>poly1<SPAN class="punctuation token">.</SPAN>partCount<SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
The result I get is
>>>
True
1
So is a polygon "multipart" if it has holes? ArcGIS Data Reviewer does not agree.
Thanks
ArcGIS Desktop 10.5.1