Merge pull request #316 from raigorx/patch-2

typo: strings-and-the-backslashes
This commit is contained in:
Satwik Kansal
2024-10-11 17:09:52 +05:30
committed by GitHub

2
README.md vendored
View File

@@ -1344,7 +1344,7 @@ True
```py
>>> r'wt\"f' == 'wt\\"f'
True
>>> print(repr(r'wt\"f')
>>> print(repr(r'wt\"f'))
'wt\\"f'
>>> print("\n")