import cadquery as cq
from cadquery import exporters
result = cq.Workplane().box(10, 10, 10)
original_shape = result.val().Solids()[0]
exporters.export(result, 'test.step')
result_round_trip = cq.importers.importStep('test.step')
shape_from_round_trip = result_round_trip.val().Solids()[0]
print(shape_from_round_trip.hashCode())
print(original_shape.hashCode())
print(original_shape.isEqual(shape_from_round_trip))
print(original_shape.isSame(shape_from_round_trip))
```