Loading mat2 +10 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,7 @@ import sys import mimetypes import argparse import logging import unicodedata try: from libmat2 import parser_factory, UNSUPPORTED_EXTENSIONS Loading Loading @@ -83,6 +84,15 @@ def __print_meta(filename: str, metadata: dict, depth: int=1): if isinstance(v, dict): __print_meta(k, v, depth+1) continue # Remove control characters # We might use 'Cc' instead of 'C', but better safe than sorry # https://www.unicode.org/reports/tr44/#GC_Values_Table try: v = ''.join(ch for ch in v if not unicodedata.category(ch).startswith('C')) except TypeError: pass # for things that aren't iterable try: # FIXME this is ugly. print(padding + " %s: %s" % (k, v)) except UnicodeEncodeError: Loading tests/test_climat2.py +1 −1 Original line number Diff line number Diff line Loading @@ -121,7 +121,7 @@ class TestGetMeta(unittest.TestCase): proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.pdf'], stdout=subprocess.PIPE) stdout, _ = proc.communicate() self.assertIn(b'producer: pdfTeX-1.40.14', stdout) self.assertIn(b'Producer: pdfTeX-1.40.14', stdout) def test_png(self): proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.png'], Loading Loading
mat2 +10 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,7 @@ import sys import mimetypes import argparse import logging import unicodedata try: from libmat2 import parser_factory, UNSUPPORTED_EXTENSIONS Loading Loading @@ -83,6 +84,15 @@ def __print_meta(filename: str, metadata: dict, depth: int=1): if isinstance(v, dict): __print_meta(k, v, depth+1) continue # Remove control characters # We might use 'Cc' instead of 'C', but better safe than sorry # https://www.unicode.org/reports/tr44/#GC_Values_Table try: v = ''.join(ch for ch in v if not unicodedata.category(ch).startswith('C')) except TypeError: pass # for things that aren't iterable try: # FIXME this is ugly. print(padding + " %s: %s" % (k, v)) except UnicodeEncodeError: Loading
tests/test_climat2.py +1 −1 Original line number Diff line number Diff line Loading @@ -121,7 +121,7 @@ class TestGetMeta(unittest.TestCase): proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.pdf'], stdout=subprocess.PIPE) stdout, _ = proc.communicate() self.assertIn(b'producer: pdfTeX-1.40.14', stdout) self.assertIn(b'Producer: pdfTeX-1.40.14', stdout) def test_png(self): proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.png'], Loading