Escape backslashes in Python comments.

The latest version of flake8 diagnoses these as invalid escape
sequences, so properly escape them.
This commit is contained in:
Dan Gohman
2018-10-24 10:00:42 -07:00
parent 6a234893eb
commit a2fcb32245
7 changed files with 10 additions and 10 deletions

View File

@@ -345,7 +345,7 @@ class Instruction(object):
`(inst, typevars)` pair.
This version in `Instruction` itself allows non-polymorphic
instructions to duck-type as `BoundInstruction`\s.
instructions to duck-type as `BoundInstruction`\\s.
"""
assert not self.is_polymorphic, self
return (self, ())

View File

@@ -98,7 +98,7 @@ def check_concrete_typing_rtl(var_types, rtl):
Check that a concrete type assignment var_types (Dict[Var, TypeVar]) is
valid for an Rtl rtl. Specifically check that:
1) For each Var v \in rtl, v is defined in var_types
1) For each Var v \\in rtl, v is defined in var_types
2) For all v, var_types[v] is a singleton type

View File

@@ -419,7 +419,7 @@ class TypeEnv(object):
E.g. if we have a root of the tree that looks like:
typeof_a typeof_b
\ /
\\ /
typeof_x
|
half_width(1)
@@ -430,7 +430,7 @@ class TypeEnv(object):
resulting graph is:
typeof_a typeof_b
\ /
\\ /
typeof_x
"""
source_tvs = set([v.get_typevar() for v in self.vars])

View File

@@ -120,7 +120,7 @@ def legal_bool(bits):
# type: (int) -> bool
"""
True iff bits is a legal bit width for a bool type.
bits == 1 || bits \in { 8, 16, .. MAX_BITS }
bits == 1 || bits \\in { 8, 16, .. MAX_BITS }
"""
return bits == 1 or \
(bits >= 8 and bits <= MAX_BITS and is_power_of_two(bits))

View File

@@ -113,7 +113,7 @@ class Rtl(object):
# type: (Rtl) -> None
"""
Given that there is only 1 possible concrete typing T for self, assign
a singleton TV with type t=T[v] for each Var v \in self. Its an error
a singleton TV with type t=T[v] for each Var v \\in self. Its an error
to call this on an Rtl with more than 1 possible typing. This modifies
the Rtl in-place.
"""