Merge pull request #7894 from tausbn/python-normalise-prefixes

Python: Normalise string prefixes
This commit is contained in:
yoff
2022-02-10 17:57:11 +01:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
| 66 | \nSingle quotes string | ''' |
| 69 | \nDouble-quotes\nstring | """ |
| 73 | \nBytes\n | r''' |
| 77 | \nRaw\nUnicode\n | U""" |
| 77 | \nRaw\nUnicode\n | u""" |
| 101 | | " |
| 101 | Hello | " |
| 101 | world | " |
| 101 | world | " |

View File

@@ -6,7 +6,7 @@
| 66 | \nSingle quotes string | ''' |
| 69 | \nDouble-quotes\nstring | """ |
| 73 | \nBytes\n | r''' |
| 77 | \nRaw\nUnicode\n | U""" |
| 77 | \nRaw\nUnicode\n | u""" |
| 101 | | " |
| 101 | Hello | " |
| 101 | world | " |
| 101 | world | " |