diff options
| author | Georg Brandl <georg@python.org> | 2020-09-08 20:20:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-08 20:20:19 +0200 |
| commit | 9f5672672bd61f7149d2a165b49f0617a1a9fe8e (patch) | |
| tree | ad3d62c5c167c6a75edf67a88c20341c77566c7e /tests/test_sql.py | |
| parent | d9a9e9ee40eb9815ecc3d9ec9d6f5e57499009d2 (diff) | |
| download | pygments-git-9f5672672bd61f7149d2a165b49f0617a1a9fe8e.tar.gz | |
all: remove "u" string prefix (#1536)
* all: remove "u" string prefix
* util: remove unirange
Since Python 3.3, all builds are wide unicode compatible.
* unistring: remove support for narrow-unicode builds
which stopped being relevant with Python 3.3
Diffstat (limited to 'tests/test_sql.py')
| -rw-r--r-- | tests/test_sql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_sql.py b/tests/test_sql.py index ead06de7..bd71d1d0 100644 --- a/tests/test_sql.py +++ b/tests/test_sql.py @@ -62,7 +62,7 @@ def test_can_lex_integer(lexer): def test_can_lex_names(lexer): _assert_are_tokens_of_type(lexer, - u'thingy thingy123 _thingy _ _123 Ähnliches Müll #temp1 ##temp2', + 'thingy thingy123 _thingy _ _123 Ähnliches Müll #temp1 ##temp2', Name) |
