Hello,

I would like to propose that instead of using this (applies to Py3.5 and upwards)
dict_a = {**dict_a, **dict_b}

we could use
dict_a = dict_a + dict_b

or even better
dict_a += dict_b


Best regards,

João Matos


Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to