<?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: UpdateCursor 'skip optional parameters' not working... in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496099#M38948</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;1)&amp;nbsp; The fields set within the cursor will only apply when iterating through the cursor object.&amp;nbsp; To limit the fields you will need to set this within the MakeFeatureLayer_management function.&amp;nbsp; Ex:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;fc = "Hospitals"
layer = "temp_layer"

arcpy.MakeFeatureLayer_management(fc, layer, "", "", "STATE_NM; LINK_ID")
desc = arcpy.Describe(layer)
fieldInfo = desc.fieldInfo

print "Field Count =", fieldInfo.count&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2)&amp;nbsp; Yes, this should be possible.&amp;nbsp; Try the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;a = 1
ChangingField = "CmpltFlg_" + str(a)
cur1 = arcpy.UpdateCursor("InputLyr","","","UnqRecordI; UnqWellLoc;" + ChangingField)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 21:48:52 GMT</pubDate>
    <dc:creator>JakeSkinner</dc:creator>
    <dc:date>2021-12-11T21:48:52Z</dc:date>
    <item>
      <title>UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496096#M38945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using Python code in PyScripter with ArcGIS 10.0 to step through rows using an UpdateCursor, however I cannot get it to skip over optional parameters.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UpdateCursor takes: UpdateCursor (dataset, {where_clause}, {spatial_reference}, {fields}, {sort_fields}).&amp;nbsp; I am interested in setting the 'dataset' (required) and 'fields' (optional) only, and I have tried the following three methods as suggested on the ArcGIS 10.0 help site:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;cur1 = arcpy.UpdateCursor("InputLyr","","",["UnqRecordI","UnqWellLoc"])
cur1 = arcpy.UpdateCursor("InputLyr","#","#",["UnqRecordI","UnqWellLoc"])
cur1 = arcpy.UpdateCursor("InputLyr",fields=["UnqRecordI","UnqWellLoc"])&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All three result in errors: "Object: Error in parsing arguments for UpdateCursor" for the first two, and "UpdateCursor() got an unexpected keyword argument 'fields'" for the third.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I cannot for the life of me figure out what could be wrong with the parsing.&amp;nbsp; Your help/suggestions would be greatly appreciated!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 20:38:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496096#M38945</guid>
      <dc:creator>AbbyFlory</dc:creator>
      <dc:date>2012-08-06T20:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496097#M38946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Abby,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will need to remove the brackets around the fields parameter, only use one set of quotation marks, and separate each field with a semicolon.&amp;nbsp; Ex:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;cur1 = arcpy.UpdateCursor("InputLyr", "", "", "UnqRecordI; UnqWellLoc")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another example can be seen in the Help for the SearchCursor:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/SearchCursor/018v00000050000000/"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#/SearchCursor/018v00000050000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2012 09:53:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496097#M38946</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2012-08-07T09:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496098#M38947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Jake!&amp;nbsp; Two additional questions, if you don't mind...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Is there a way to check the number of fields the cursor is using?&amp;nbsp; When I use the following code after setting the cursor, it returns the entire feature class field count instead of being limited to only the fields I listed in the cursor:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;desc = arcpy.Describe("InputLyr")
FieldInfo = desc.fieldInfo
print "Field Count =",FieldInfo.count&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Is there a way to include a changing variable in the fields list for the cursor?&amp;nbsp; For example, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;cur1 = arcpy.UpdateCursor("InputLyr","","","UnqRecordI; UnqWellLoc; ChangingVariableHere")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For instance, would this be correct(?):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;a = 1
ChangingField = "CmpltFlg_" + str(a)
cur1 = arcpy.UpdateCursor("InputLyr","","","UnqRecordI; UnqWellLoc;",ChangingField,"")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:48:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496098#M38947</guid>
      <dc:creator>AbbyFlory</dc:creator>
      <dc:date>2021-12-11T21:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496099#M38948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;1)&amp;nbsp; The fields set within the cursor will only apply when iterating through the cursor object.&amp;nbsp; To limit the fields you will need to set this within the MakeFeatureLayer_management function.&amp;nbsp; Ex:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;fc = "Hospitals"
layer = "temp_layer"

arcpy.MakeFeatureLayer_management(fc, layer, "", "", "STATE_NM; LINK_ID")
desc = arcpy.Describe(layer)
fieldInfo = desc.fieldInfo

print "Field Count =", fieldInfo.count&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2)&amp;nbsp; Yes, this should be possible.&amp;nbsp; Try the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;a = 1
ChangingField = "CmpltFlg_" + str(a)
cur1 = arcpy.UpdateCursor("InputLyr","","","UnqRecordI; UnqWellLoc;" + ChangingField)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:48:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496099#M38948</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-11T21:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496100#M38949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Awesome!&amp;nbsp; Thanks so much!&amp;nbsp; I'm interested in limiting the fields in order to make my code run more efficiently.&amp;nbsp; Is this better to do in MakeFeatureLayer versus UpdateCursor?&amp;nbsp; Also, if I decided to set fields in the UpdateCursor and not in the MakeFeatureLayer, is there a way to check that it's only using/reading the fields I've specified?&amp;nbsp; For instance, the fieldInfo.count reads fields in a Layer, but is there a similar feature within a cursor so I can make sure that it's only reading my specified fields?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2012 19:13:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496100#M38949</guid>
      <dc:creator>AbbyFlory</dc:creator>
      <dc:date>2012-08-07T19:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496101#M38950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A cursor is used to iterate through a table or feature class.&amp;nbsp; If you want to describe a feature class, this should not be executed within cursor, because it will describe the feature class for each row within the cursor (which would be overkill).&amp;nbsp; If there are 10,000 rows, you would be describing the feature class 10,000 times. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to verify that the UpdateCursor is only using the fields you specified within the cursor, try printing a field that you did not specify.&amp;nbsp; For example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;rows = arcpy.UpdateCursor(fc, "", "", "FCC; LOC_ID")
for row in rows:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print row.NAME

del rows, row&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did not specify the field 'NAME' for my cursor, but this field does exist.&amp;nbsp; When I print the values for this field I receive 'None' rather the field value.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:48:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496101#M38950</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-11T21:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496102#M38951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks!&amp;nbsp; When I use MakeFeatureLayer and include field restrictions, however, it does not recognize any of my fields.&amp;nbsp; In the code below, all of the "print FieldInfo.getFieldName()" lines return the correct fields/names.&amp;nbsp; When I try to access any of these fields within the cursor though, it throws an error: "Row: Field FID does not exist" (or "Row: Field ___ does not exist" - for any of the other fields it should be reading).&amp;nbsp; Any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
# Imports...
import time
import Functions
import arcpy
import sys
import traceback
from arcpy import env
from arcpy.sa import *

Input = "C:/AF_WorkingFiles/AgHealth_Iowa/Databases/Shapes/NitrateWells_LandCover/Test_10Locs.shp"
arcpy.MakeFeatureLayer_management(Input,"InputLyr","","","FID; Shape; OBJECTID; UnqRecordI; UnqWellLoc; Flg90_500")

# List land-cover rasters...
L1 = ["LC85","LC90","LC92","LC00","LC02","LC06","LC09"]
for item in L1:

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Environments...
&amp;nbsp;&amp;nbsp;&amp;nbsp; env.workspace = "C:/AF_WorkingFiles/AgHealth_Iowa/Databases/TempData.mdb"
&amp;nbsp;&amp;nbsp;&amp;nbsp; env.overwriteOutput = "True"
&amp;nbsp;&amp;nbsp;&amp;nbsp; env.snapRaster = "'C:/AF_WorkingFiles/AgHealth_Iowa/Databases/AHS_SpatialData.mdb/" + item + "'"
&amp;nbsp;&amp;nbsp;&amp;nbsp; env.cellSize = "'C:/AF_WorkingFiles/AgHealth_Iowa/Databases/AHS_SpatialData.mdb/" + item + "'"
&amp;nbsp;&amp;nbsp;&amp;nbsp; env.extent = "'C:/AF_WorkingFiles/AgHealth_Iowa/Databases/AHS_SpatialData.mdb/" + item + "'"
&amp;nbsp;&amp;nbsp;&amp;nbsp; env.maintainSpatialIndex = False
&amp;nbsp;&amp;nbsp;&amp;nbsp; env.scratchWorkspace = "C:/AF_WorkingFiles/AgHealth_Iowa/Databases/Scratch"
&amp;nbsp;&amp;nbsp;&amp;nbsp; LC_Raster = item

&amp;nbsp;&amp;nbsp;&amp;nbsp; # List buffer sizes...
&amp;nbsp;&amp;nbsp;&amp;nbsp; L2 = ["500","1000","2000","10000"]
&amp;nbsp;&amp;nbsp;&amp;nbsp; for item in L2:

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # For each raster/buffer combo, do the following:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BuffSize = item
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dist = item + " Meters"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a = 0

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cur1 = arcpy.UpdateCursor("InputLyr")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rowCount = arcpy.GetCount_management("InputLyr")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Row Count =",rowCount

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe("InputLyr")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldInfo = desc.fieldInfo
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field Count =",FieldInfo.count
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field 1 =",FieldInfo.getFieldName(0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field 2 =",FieldInfo.getFieldName(1)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field 3 =",FieldInfo.getFieldName(2)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field 4 =",FieldInfo.getFieldName(3)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field 5 =",FieldInfo.getFieldName(4)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field 6 =",FieldInfo.getFieldName(5)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cur1:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a = a+1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print row.FID

del cur1, row&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:48:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496102#M38951</guid>
      <dc:creator>AbbyFlory</dc:creator>
      <dc:date>2021-12-11T21:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496103#M38952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was incorrect before, the 'field_info' parameter for the MakeFeatureLayer_management function will hide fields.&amp;nbsp; See the description of this parameter &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000006p000000"&gt;here&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; This is why you cannot find any fields when you iterate through the feature layer using a cursor.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, this doesn't explain why the 'desc.fieldInfo.count' method returns the number of fields that you specify to be hidden, and not the ones that are visible.&amp;nbsp; This may be a bug.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 13:52:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496103#M38952</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2012-08-08T13:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496104#M38953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Huh, yea that's really interesting.&amp;nbsp; The icon by your name means you work for ESRI, right?&amp;nbsp; Can you report this bug or should I?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Abby&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 17:58:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496104#M38953</guid>
      <dc:creator>AbbyFlory</dc:creator>
      <dc:date>2012-08-08T17:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor 'skip optional parameters' not working...</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496105#M38954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Abby,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It would be best for you to report the bug to Tech Support.&amp;nbsp; They will confirm whether it's a bug, and provide any workarounds.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 15:19:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-skip-optional-parameters-not-working/m-p/496105#M38954</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2012-08-15T15:19:13Z</dc:date>
    </item>
  </channel>
</rss>

