From 4ba66ba1ae6b1745c0f625a27e536a0139f1a755 Mon Sep 17 00:00:00 2001 From: Luthaf Date: Fri, 17 Oct 2014 17:34:07 +0200 Subject: [PATCH] UTF-8 everywhere, python2 legacy mode --- patacrep/latex/ast.py | 1 + patacrep/latex/lexer.py | 1 + 2 files changed, 2 insertions(+) diff --git a/patacrep/latex/ast.py b/patacrep/latex/ast.py index 798d4c33..f8112525 100644 --- a/patacrep/latex/ast.py +++ b/patacrep/latex/ast.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """Abstract Syntax Tree for LaTeX code.""" # pylint: disable=too-few-public-methods diff --git a/patacrep/latex/lexer.py b/patacrep/latex/lexer.py index 8954e14c..c90303da 100644 --- a/patacrep/latex/lexer.py +++ b/patacrep/latex/lexer.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """Very simple LaTeX lexer.""" import logging