bpo-43317: Use io.DEFAULT_BUFFER_SIZE instead of 1024 in gzip CLI (#24645)

This improves the performance slightly.
diff --git a/Lib/gzip.py b/Lib/gzip.py
index ee0cbed..1369157 100644
--- a/Lib/gzip.py
+++ b/Lib/gzip.py
@@ -595,7 +595,7 @@ def main():
                 f = builtins.open(arg, "rb")
                 g = open(arg + ".gz", "wb")
         while True:
-            chunk = f.read(1024)
+            chunk = f.read(io.DEFAULT_BUFFER_SIZE)
             if not chunk:
                 break
             g.write(chunk)