bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553)

diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index 9a3d399..df2ff06 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -426,8 +426,7 @@
         self.unredirected_hdrs.pop(header_name, None)
 
     def header_items(self):
-        hdrs = self.unredirected_hdrs.copy()
-        hdrs.update(self.headers)
+        hdrs = {**self.unredirected_hdrs, **self.headers}
         return list(hdrs.items())
 
 class OpenerDirector: