isl: drop comment about "python 2 vs 3" as it doesn't apply anymore
authorEric Engestrom <eric@engestrom.ch>
Sat, 8 Aug 2020 12:28:57 +0000 (14:28 +0200)
committerMarge Bot <eric+marge@anholt.net>
Sat, 14 Aug 2021 21:44:32 +0000 (21:44 +0000)
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3674>

src/intel/isl/gen_format_layout.py

index ea81edf..6c6f60a 100644 (file)
@@ -279,9 +279,8 @@ def main():
     args = parser.parse_args()
 
     # This generator opens and writes the file itself, and it does so in bytes
-    # mode. This solves both python 2 vs 3 problems and solves the locale
-    # problem: Unicode can be rendered even if the shell calling this script
-    # doesn't.
+    # mode. This solves the locale problem: Unicode can be rendered even
+    # if the shell calling this script doesn't.
     with open(args.out, 'wb') as f:
         formats = [Format(l) for l in reader(args.csv)]
         try: