We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4178ca3 commit 88b8054Copy full SHA for 88b8054
README.md
@@ -515,6 +515,19 @@ Availability:
515
```
516
517
518
+### merge dicts using union operator (pep 584)
519
+
520
+Availability:
521
+- `--py39-plus` is passed on the commandline.
522
523
+```diff
524
+ x = {"a": 1}
525
+ y = {"b": 2}
526
+-z = {**x, **y}
527
++z = x | y
528
+```
529
530
531
### pep 585 typing rewrites
532
533
Availability:
0 commit comments