In Python 2.6, how can I access a buffer? I'm using an external python class via arcpy to access a PostgreSQL database function.
# the_geom is part of a list.
print the_list
# Returns:... 'the_geom': <read-only buffer for 0x06E4FB60, size 1997, offset 0 at 0x34BCCB80>,...
for item in the_list:
the_geom=item['the_geom']
print(type(the_geom))
# Returns: <type 'buffer'>
Thanks.