<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Bug report on arcpy.Describe in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126247#M9842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concerning the last of your points: Yes, lst can be anything, and yes most people will take it for a list...&lt;/P&gt;&lt;P&gt;Concerning your suggestion of splitting without a separator specified is actually really helpful!&lt;/P&gt;&lt;P&gt;Another way of handling the issue could be to go with Python and take the empty string for what it is: False.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;lst = u''
if not lst: #or what ever variable you want to use&lt;/PRE&gt;&lt;P&gt;will return True.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thinking again about the suggested GetCount - its only a crutch. If nothing is selected the function will return the total amount of rows in a dataset. Hence I think fidset is the more elegant way and in the context of what I need it's the more relevant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Long story short - To exclude buffers that do not intersect with any other feature, and therefore do not return selected features in a feature class my way is:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;if arcpy.Describe('polygon_class').fidset:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # code to be executed in case there are features selected
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # code to be executed in case there are NO features selected&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 07:10:38 GMT</pubDate>
    <dc:creator>TomGeo</dc:creator>
    <dc:date>2021-12-11T07:10:38Z</dc:date>
    <item>
      <title>Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126239#M9834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since ESRI put the customer number and phone number as protection from customers in I cannot find any other way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using ArcGIS in version 10.3 and retrieving the count for selected features in a feature class utilizing&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="_jivemacro_uid_14338615164332602 jive_macro_code jive_text_macro" data-renderedposition="71_8_912_16" jivemacro_uid="_14338615164332602"&gt;&lt;P&gt;arcpy.Describe('my_feature_class').fidset.split(';')&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;, the minimum number delivered back is 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To illustrate the problem a bit...&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="108257" alt="2.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/108257_2.png" style="height: auto;" /&gt;Figure 1: Two polygon feature classes, where the circle is a buffer created around a point. The question at hand is, if there is any polygon from the other feature class intersecting with the buffer. As visible in the image, there is no intersecting feature.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="108258" alt="3.png" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/108258_3.png" style="width: 620px; height: 126px;" /&gt;Figure 2: The attempt to find intersecting features, using the SelectLayerByLocation function. No feature is selected, but when requesting the number of objects through the Describe function, the length of the list is one and not zero! The length of the list is not correct since the Describe function delivers an empty string back in case there is no intersecting feature.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="108259" alt="1.png" class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/108259_1.png" style="height: auto;" /&gt;Figure 3: Another buffer, this time intersecting with the other polygon layer. Clearly, the two polygon layer have intersecting features.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="108260" alt="4.png" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/108260_4.png" style="width: 620px; height: 119px;" /&gt;Figure 4: Again, the SelectLayerByLocation function used to select intersecting features, and the Describe function utilized to retrieve the number of intersecting features. While the length of the list is the same, the list item itself is holding this time the correct FID of the intersecting feature.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="108261" alt="5.png" class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/108261_5.png" style="width: 620px; height: 375px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not really nice, when you want to exclude buffers that do not have any intersecting features in another feature class, and/or want to work with buffers that have only a single object intersecting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally: The system to submit bug reports is flawed. Why does not have any user the possibility to submit bug reports, no matter if you have a customer number at hand or not? My technical support is not available, due to working hours, and I will not invest the time to find out the customer number and the phone number connected to the account to contact ESRI via a 'Support Request Form'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just my fifty cents,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 15:34:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126239#M9834</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2015-06-09T15:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126240#M9835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Agree ESRI support can be frustrating especially if you want to fire off a potential bug in the software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But for your problem here is a simple work around, don't try to get the length of the list when you want to identify if your layer had a selection. That's obviously a weird bug as a list with an empty string is an odd thing to return. I would simply do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;if len(arcpy.Describe("Field Sites").fidset) &amp;gt; 0:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "You have a selection"
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "No features selected"&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Duncan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126240#M9835</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2021-12-11T07:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126241#M9836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you want &lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/get-count.htm"&gt;Get Count&lt;/A&gt;.&amp;nbsp; Get Count is designed to work on views, layers, and similar such.&amp;nbsp; Describe is more focused on data sources.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason you are seeing 1 in your first example is because the Python string split method is returning your empty string back to you in a list.&amp;nbsp; A list with a single empty string in it has a length of 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are not handling the no selected features situation correctly.&amp;nbsp; Before you run split, check to see if fidset returns an empty string, which indicates no selected features.&amp;nbsp; If you are only interested in counts and not FIDs of selected features, I think Get Count works well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 17:21:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126241#M9836</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-06-09T17:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126242#M9837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Duncan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the way you point out was my first attempt to get things done. Problem when doing it this way is that you still get all the buffers that do not have a match. The empty string will tell you you have a match of '1', while in fact there is no match. Moving up, saying ' &amp;gt; 1' will make you miss all the buffers that have exactly one polygon intersecting the buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the end my workaround is:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;lst = arcpy.Describe('my_layer').fidset
if len(lst) &amp;gt; 0:&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That will give you the number of characters in the list back, but it will also give you a clear zero in case there is a [u''].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a bit more than 10.000 points to run for eight different datasets and five different buffer sizes. Meaning I have to be able to trust the returned value. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126242#M9837</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2021-12-11T07:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126243#M9838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will &lt;EM&gt;arcpy.GetCount_management("MP_1996_P")&lt;/EM&gt; solve the issue ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Susan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 21:45:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126243#M9838</guid>
      <dc:creator>SusanJones</dc:creator>
      <dc:date>2015-06-09T21:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126244#M9839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I slightly disagree... I do not have the data at hand at the moment, but give it a shot with some of your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of no intersecting feature arcpy.Describe('your_dataset').fidset will return [u'']. Hence, the empty string isn't a product of the split-function.&lt;/P&gt;&lt;P&gt;With respect to the use of fidset, the &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//018v00000063000000"&gt;page&lt;/A&gt; is clearly defining the property as 'A semicolon-delimited string of selected feature IDs (record numbers).' That is exactly what I want and need. You are of course correct that GetCount will return only the number of selected features if there is any selected. However, that doesn't change that the returned value for the fidset property is wrong.&lt;/P&gt;&lt;P&gt;Therefore, it is not me who is handling the result the wrong way. The result is wrong in the first place. Check the property without the split. If there is no feature selected then the list is supposed to be empty, technical speaking '[]' and not '[u'']'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 21:53:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126244#M9839</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2015-06-09T21:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126245#M9840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Susan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It most likely will. The point is, that the returned value of the fidset property isn't correct and GetCount was simply not what I was thinking of. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 21:55:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126245#M9840</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2015-06-09T21:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126246#M9841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you are running into is a Python issue/idiosyncrasy, not really an ArcPy issue.&amp;nbsp; An empty string doesn't say you have a match of '1', an empty string is saying there are no matched because the fidset is empty.&amp;nbsp; The reason your length check is returning 1 is due to how the Python string splitting method works, specifically related to separators.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;A href="https://docs.python.org/2/library/stdtypes.html#string-methods" rel="nofollow noopener noreferrer" target="_blank"&gt;5.6.1. String Methods&lt;/A&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;str.&lt;STRONG&gt;split&lt;/STRONG&gt;([sep[, maxsplit]])&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;If sep is given, consecutive delimiters are not grouped together and are deemed to delimit empty strings (for example, '1,,2'.split(',') returns ['1', '', '2']). The sep argument may consist of multiple characters (for example, '1&amp;lt;&amp;gt;2&amp;lt;&amp;gt;3'.split('&amp;lt;&amp;gt;') returns ['1', '2', '3']). Splitting an empty string with a specified separator returns [''].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If sep is not specified or is None, a different splitting algorithm is applied: runs of consecutive whitespace are regarded as a single separator, and the result will contain no empty strings at the start or end if the string has leading or trailing whitespace. Consequently, splitting an empty string or a string consisting of just whitespace with a None separator returns [].&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Looking at a few examples:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; fidset_empty = ''
&amp;gt;&amp;gt;&amp;gt; fidset_empty.split(';')
['']
&amp;gt;&amp;gt;&amp;gt; fidset_one = '1'
&amp;gt;&amp;gt;&amp;gt; fidset_one.split(';')
['1']
&amp;gt;&amp;gt;&amp;gt; fidset_two = '1; 2'
&amp;gt;&amp;gt;&amp;gt; fidset_two.split(';')
['1', ' 2']&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The length of lines 03 and 06 are both 1 because a separator was explicitly passed to the split method so an empty string returned a list with an empty string.&amp;nbsp; If you can live with the extra semicolon being attached to all but the last FID, then passing no separator to split will yield an empty list with a length of zero.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; fidset_empty.split()
[]
&amp;gt;&amp;gt;&amp;gt; len(fidset_empty.split())
0&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your workaround code, you are using a variable 'lst'.&amp;nbsp; Although 'lst' could be anything, most people reading your code would assume it is a list, but it is actually a string because fidset returns a string and not a list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126246#M9841</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T07:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126247#M9842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concerning the last of your points: Yes, lst can be anything, and yes most people will take it for a list...&lt;/P&gt;&lt;P&gt;Concerning your suggestion of splitting without a separator specified is actually really helpful!&lt;/P&gt;&lt;P&gt;Another way of handling the issue could be to go with Python and take the empty string for what it is: False.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;lst = u''
if not lst: #or what ever variable you want to use&lt;/PRE&gt;&lt;P&gt;will return True.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thinking again about the suggested GetCount - its only a crutch. If nothing is selected the function will return the total amount of rows in a dataset. Hence I think fidset is the more elegant way and in the context of what I need it's the more relevant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Long story short - To exclude buffers that do not intersect with any other feature, and therefore do not return selected features in a feature class my way is:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;if arcpy.Describe('polygon_class').fidset:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # code to be executed in case there are features selected
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # code to be executed in case there are NO features selected&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126247#M9842</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2021-12-11T07:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126248#M9843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would not use Describe in this way to find the number of features on an intersect selection any more.&lt;/P&gt;&lt;P&gt;This is a desperate workaround using old technology that is very clumsy and slow compared to using geometry objects. I know we all used to use FIDSETs in scripts because there was no other way, but now there are much better ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Never use buffer&lt;/STRONG&gt;. It is a redundant step that was only put in training courses to illustrate a spatial extent. In real life things are not well modelled by a buffer, floods follow contours, not a buffered centrelines, pollution creates a plume, not a circular area around a pollution point source. You can always use a selection radius around a point without having to waste computing power creating a separate featureclass. Even if you do need a polygon to say cut up another polygon into parts you can create a polygon geometry from a point, instead of a polygon featureclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use geometry objects&lt;/STRONG&gt;. These are relatively new at 10.x and save a huge amount of processing to temporary disk based featureclasses. It is easy to turn featureclasses into lists of geometry objects that can be used instead of a featureclass with spatial operators. Geometry objects also have spatial operators so you can compare pairs directly. The&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//0017000000tp000000"&gt; help&lt;/A&gt; has some excellent diagrams for the spatial operators. The operators are extensive and cover every case of possible overlaps. Instead of looking for a count after a timewasting SelectByLocation() you can just ask&lt;SPAN style="font-family: courier new,courier;"&gt; if geom1.crosses(geom2):&lt;/SPAN&gt;&amp;nbsp; It is fast because it is all in memory and is much easier to program. No need to run Describe() at all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 22:42:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126248#M9843</guid>
      <dc:creator>KimOllivier</dc:creator>
      <dc:date>2015-06-11T22:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126249#M9844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice response and in a nutshell. &lt;/P&gt;&lt;P&gt;Respect &lt;A href="https://community.esri.com/migrated-users/3269"&gt;Kim Ollivier&lt;/A&gt; - He's got year of Geoprocessing on all of us. Really knows his stuff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suasn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 22:52:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126249#M9844</guid>
      <dc:creator>SusanJones</dc:creator>
      <dc:date>2015-06-11T22:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report on arcpy.Describe</title>
      <link>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126250#M9845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The FIDSet property doesn't return a Python list, it returns a Python string that represents a list of FIDs.&amp;nbsp; Since the property is string-based, there is nothing else besides an empty string (&lt;SPAN style="font-family: courier new,courier;"&gt;u'')&lt;/SPAN&gt;that can be returned when no records are selected.&amp;nbsp; It is the behavior of the Python string splitting function that is returning a list with an empty string instead of an empty list, but that is a Python issue and not an ArcPy issue.&amp;nbsp; If &lt;SPAN style="font-family: courier new,courier;"&gt;arcpy.Describe('your_dataset').fidset&lt;/SPAN&gt; is returning a list, trying to split it will fail either by an AttributeError or TypeError depending on your syntax.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 20:07:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/bug-report-on-arcpy-describe/m-p/126250#M9845</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-06-18T20:07:34Z</dc:date>
    </item>
  </channel>
</rss>

