Basically, I tried to do the following:
>>> p1 = p.edges.getByBoundingBox(-1,-1,-1,1,1,1)
>>> p2 = p.edges.getByBoundingBox(-0.26,-0.26,-1,0.26,0.26,1)
>>> pickededges = p1 - p2
TypeError: unsupported operand type(s) for -: 'Sequence' and 'Sequence'
>>> pickededges = p1 + p2
>>>
As can be seen, addition is fine, but subtraction is not. Is there some other way I need to go about this?