This commit is contained in:
Sparsh-Verencar 2023-10-09 19:13:18 +02:00 committed by GitHub
commit 9e66180eae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
CONTRIBUTORS.md vendored
View File

@ -25,6 +25,7 @@ Following are the wonderful people (in no specific order) who have contributed t
| Diptangsu Goswami | [diptangsu](https://github.com/diptangsu) | [#193](https://github.com/satwikkansal/wtfpython/issues/193) |
| Charles | [charles-l](https://github.com/charles-l) | [#245](https://github.com/satwikkansal/wtfpython/issues/245)
| LiquidFun | [LiquidFun](https://github.com/LiquidFun) | [#267](https://github.com/satwikkansal/wtfpython/issues/267)
| Sparsh-Verencar | [Sparsh-Verencar](https://github.com/Sparsh-Verencar) | [#311](https://github.com/satwikkansal/wtfpython/issues/311)
---

2
README.md vendored
View File

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