This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author justjais
Recipients Aaron Hall, brandtbucher, chaburkland, curtisbucher, gvanrossum, josh.r, justjais, mark.dickinson, rhettinger, scoder, serhiy.storchaka, slam, steve.dower, xtreak
Date 2020-06-15.05:50:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592200231.05.0.859055695159.issue36144@roundup.psfhosted.org>
In-reply-to
Content
First off, thanks for adding the feature, it's much appreciated.

But it'd be great if you guys can enable list merge for the dict having list as its value, in current form I believe it's handling only "key: value" merge.

for e.g.:
>>> d1 = {'spam': [1, 2, 3]}
>>> d2 = {'spam': [2, 3, 4]}
>>> d1 | d2
>>> {'spam': [1, 2, 3, 4]}
History
Date User Action Args
2020-06-15 05:50:31justjaissetrecipients: + justjais, gvanrossum, rhettinger, mark.dickinson, scoder, serhiy.storchaka, steve.dower, josh.r, Aaron Hall, slam, xtreak, brandtbucher, curtisbucher, chaburkland
2020-06-15 05:50:31justjaissetmessageid: <1592200231.05.0.859055695159.issue36144@roundup.psfhosted.org>
2020-06-15 05:50:31justjaislinkissue36144 messages
2020-06-15 05:50:30justjaiscreate