kevinjqliu commented on issue #751: URL: https://github.com/apache/iceberg-python/issues/751#issuecomment-2189660053
That makes sense to me. Specifically, items in the original list should have the same ids as items in the new deep-copied list. ``` assert id(first[0]) == id(copied[0]) assert id(first[1]) == id(copied[1]) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
