ndrluis commented on issue #751:
URL: https://github.com/apache/iceberg-python/issues/751#issuecomment-2189647354

   @syun64 I believe that I have discovered how to solve the problem. I will 
open a PR, but I need some double-checking to ensure my verification is 
correct. This is the code that I'm using to verify it.
   
   ```python
   first = [FixedType(8), FixedType(16)]
   copied = deepcopy(first)
   
   print("list id", id(first))
   print("copied id", id(copied))
   
   print("list id must be different", id(first) != id(copied))
   
   print(id(first[0]) == id(copied[0]))
   print(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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to