python: Use the unicode_escape codec
authorMathieu Bridon <bochecha@daitauha.fr>
Thu, 7 Jun 2018 10:26:20 +0000 (12:26 +0200)
committerEric Engestrom <eric.engestrom@intel.com>
Wed, 1 Aug 2018 13:26:19 +0000 (14:26 +0100)
Python 2 had string_escape and unicode_escape codecs. Python 3 only has
the latter. These work the same as far as we're concerned, so let's use
the future-proof one.

However, the reste of the code expects unicode strings, so we need to
decode them again.

Signed-off-by: Mathieu Bridon <bochecha@daitauha.fr>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
src/amd/common/sid_tables.py
src/gallium/drivers/r600/egd_tables.py

index 421c2a13352a4b70ed9c619041b96a88bb17458d..7b5e626e3e1fbfa157ed38854a272f5611ca8bba 100644 (file)
@@ -65,7 +65,7 @@ class StringTable:
         """
         fragments = [
             '"%s\\0" /* %s */' % (
-                te[0].encode('string_escape'),
+                te[0].encode('unicode_escape').decode(),
                 ', '.join(str(idx) for idx in sorted(te[2]))
             )
             for te in self.table
index 7489649ec7279fca2152a1aaadf8934dfdb6d863..8a60a6229ad989b066bb1a826918302da3304016 100644 (file)
@@ -61,7 +61,7 @@ class StringTable:
         """
         fragments = [
             '"%s\\0" /* %s */' % (
-                te[0].encode('string_escape'),
+                te[0].encode('unicode_escape').decode(),
                 ', '.join(str(idx) for idx in te[2])
             )
             for te in self.table