ubuiltins: Use raw strings for inline math.

This resolves the following warnings:
./src/ubuiltins/__init__.py:143:31: W605 invalid escape sequence '\l'
./src/ubuiltins/__init__.py:143:38: W605 invalid escape sequence '\l'
./src/ubuiltins/__init__.py:174:31: W605 invalid escape sequence '\l'
./src/ubuiltins/__init__.py:174:38: W605 invalid escape sequence '\l'
This commit is contained in:
Laurens Valk
2021-08-05 12:32:21 +02:00
parent 486ac60ea0
commit b02895e5fc
+2 -2
View File
@@ -138,7 +138,7 @@ class bytes:
...
def __init__(self, *args):
"""
r"""
Creates a new ``bytes`` object, which is a sequence of integers
in the range :math:`0 \leq x \leq 255`. This object is *immutable*,
which means that you *cannot* change its contents after you create it.
@@ -169,7 +169,7 @@ class bytearray:
...
def __init__(self, *args):
"""
r"""
Creates a new ``bytearray`` object, which is a sequence of integers
in the range :math:`0 \leq x \leq 255`. This object is *mutable*, which
means that you *can* change its contents after you create it.