Resolve UTF8 charset case-insensitively (#1195) · PyMySQL/PyMySQL@7dead51 · GitHub | Latest TMZ Celebrity News & Gossip | Watch TMZ Live
Skip to content

Commit 7dead51

Browse files
authored
Resolve UTF8 charset case-insensitively (#1195)
1 parent 8876b98 commit 7dead51

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

pymysql/charset.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@ def by_id(self, id):
4545
return self._by_id[id]
4646

4747
def by_name(self, name):
48+
name = name.lower()
4849
if name == "utf8":
4950
name = "utf8mb4"
50-
return self._by_name.get(name.lower())
51+
return self._by_name.get(name)
5152

5253

5354
_charsets = Charsets()

pymysql/tests/test_charset.py

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,23 @@ def test_utf8():
2121
)
2222

2323
# utf8 is alias of utf8mb4 since MySQL 8.0, and PyMySQL v1.1.
24-
utf8 = pymysql.charset.charset_by_name("utf8")
25-
assert utf8 == utf8mb4
24+
lowercase_utf8 = pymysql.charset.charset_by_name("utf8")
25+
assert lowercase_utf8 == utf8mb4
26+
27+
# Regardless of case, UTF8 (which is special cased) should resolve to the same thing
28+
uppercase_utf8 = pymysql.charset.charset_by_name("UTF8")
29+
mixedcase_utf8 = pymysql.charset.charset_by_name("UtF8")
30+
assert uppercase_utf8 == lowercase_utf8
31+
assert mixedcase_utf8 == lowercase_utf8
32+
33+
def test_case_sensitivity():
34+
lowercase_latin1 = pymysql.charset.charset_by_name("latin1")
35+
assert lowercase_latin1 is not None
36+
37+
# lowercase and uppercase should resolve to the same charset
38+
uppercase_latin1 = pymysql.charset.charset_by_name("LATIN1")
39+
assert uppercase_latin1 == lowercase_latin1
40+
41+
# lowercase and mixed case should resolve to the same charset
42+
mixedcase_latin1 = pymysql.charset.charset_by_name("LaTiN1")
43+
assert mixedcase_latin1 == lowercase_latin1

0 commit comments

Comments
 (0)

TMZ Celebrity News – Breaking Stories, Videos & Gossip

Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

🎥 Watch TMZ Live

TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.