pt = arcpy.Point(x,y)
ptGeometry = arcpy.PointGeometry(pt)
cur = arcpy.SearchCursor(myFeaturelayer)
for arow in cur:
geom = arow.shape
if ptGeometry .touches(geom):
arcpy.AddMessage("intersects")
break