aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/__hello__.py
diff options
context:
space:
mode:
authorJeremy Kloth <jeremy.kloth@gmail.com>2022-03-22 06:53:51 -0600
committerGitHub <noreply@github.com>2022-03-22 13:53:51 +0100
commit88872a29f19092d2fde27365af230abd6d301941 (patch)
treec3b3f338395d4f3015cf1e9c37689a30019126b1 /Lib/__hello__.py
parent7d810b6a4eab6eba689acc5bb05f85515478d690 (diff)
downloadcpython-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__.py9
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!")