Re: Subscribe

2018-09-16 Thread MRAB
On 2018-09-16 18:09, Darya Boot wrote: If you want to subscribe to this list, then follow the instructions here: https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list

Re: dll file missing error

2018-09-16 Thread MRAB
On 2018-09-15 22:22, benjamin bulley wrote: I encounter a dll error message while trying to run python. I uninstalled the program just to reinstall to find the same problem. Please help as I am quite new to this. You haven't given any details. Which version of Windows? Which DLL? Which version

dll file missing error

2018-09-16 Thread benjamin bulley
I encounter a dll error message while trying to run python. I uninstalled the program just to reinstall to find the same problem. Please help as I am quite new to this. -- https://mail.python.org/mailman/listinfo/python-list

Subscribe

2018-09-16 Thread Darya Boot
-- https://mail.python.org/mailman/listinfo/python-list

[no subject]

2018-09-16 Thread Ajay Patel
-- https://mail.python.org/mailman/listinfo/python-list

Re: Copy constructor and assignment operator

2018-09-16 Thread MRAB
On 2018-09-16 08:48, Ajay Patel wrote: Hello, Thanks for your reply. What happen if do copy using copy module? i can see address are different when using copy module. Which magic method will call when i an doing deepcopy? Snippet>> >>> p =Point(4,5) __setattr__ __setattr__ __setattr__ >>