Re: [pygame] Why does Rect and Surface have copy method when copy exist in std-lib?

2017-06-03 Thread Daniel Foerster
Allow me to point out that there's such a thing as dict.copy(). It's pointless to import a module to call a method that you know is made publicly available already, and just as pointless to make people import. On Jun 3, 2017 16:23, "Victor Blomqvist" wrote: > It seems like such a

Re: [pygame] Why does Rect and Surface have copy method when copy exist in std-lib?

2017-06-03 Thread Victor Blomqvist
It seems like such a small performance difference shouldnt affect the decision if a custom copy method is good or not? /Victor On Thu, Jun 1, 2017 at 9:24 PM, Jason Marshall wrote: > In the C code, rect.copy and surface.copy are equivalent to > rect.__copy__ and