diff options
author | Jeremy Kloth <jeremy.kloth@gmail.com> | 2022-03-22 06:53:51 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 13:53:51 +0100 |
commit | 88872a29f19092d2fde27365af230abd6d301941 (patch) | |
tree | c3b3f338395d4f3015cf1e9c37689a30019126b1 /Lib/__hello__.py | |
parent | 7d810b6a4eab6eba689acc5bb05f85515478d690 (diff) | |
download | cpython-88872a29f19092d2fde27365af230abd6d301941.tar.gz cpython-88872a29f19092d2fde27365af230abd6d301941.zip |
bpo-47084: Clear Unicode cached representations on finalization (GH-32032)
Diffstat (limited to 'Lib/__hello__.py')
-rw-r--r-- | Lib/__hello__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/__hello__.py b/Lib/__hello__.py index d37bd2766ac..c09d6a4f523 100644 --- a/Lib/__hello__.py +++ b/Lib/__hello__.py @@ -1,5 +1,14 @@ initialized = True +class TestFrozenUtf8_1: + """\u00b6""" + +class TestFrozenUtf8_2: + """\u03c0""" + +class TestFrozenUtf8_4: + """\U0001f600""" + def main(): print("Hello world!") |