From e07a484377ad044e663884457b0303a8b3d7ac9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Wed, 16 Oct 2019 21:38:27 +0000 Subject: Fix warnings on Python3.8. --- fastimport/parser.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastimport/parser.py b/fastimport/parser.py index 7fd0a08..87671ab 100644 --- a/fastimport/parser.py +++ b/fastimport/parser.py @@ -99,11 +99,11 @@ The grammar is: exact_data ::= 'data' sp declen lf binary_data; - # note: quoted strings are C-style quoting supporting \c for - # common escapes of 'c' (e..g \n, \t, \\, \") or \nnn where nnn + # note: quoted strings are C-style quoting supporting \\c for + # common escapes of 'c' (e..g \\n, \\t, \\\\, \\") or \\nnn where nnn # is the signed byte value in octal. Note that the only # characters which must actually be escaped to protect the - # stream formatting is: \, " and LF. Otherwise these values + # stream formatting is: \\, " and LF. Otherwise these values # are UTF8. # ref_str ::= ref; -- cgit v1.2.1