From 7f3a8e656a99fd81de2b6158c8e393ac51f30db2 Mon Sep 17 00:00:00 2001 From: otouxamaa__ Date: Wed, 20 May 2026 18:42:43 +0600 Subject: [PATCH 1/3] __hello__ hidden unicode I was checking out this repository myself until my habit of retrieving docs via help() made me stumble upon this. --- README.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/README.md b/README.md index 3507d98..d63881e 100644 --- a/README.md +++ b/README.md @@ -203,6 +203,56 @@ class code(object) SyntaxError: You found it! ``` +### 16. Hidden Unicode-valid emojis in __hello__[^secret-unicode-emojis-in-__hello__] +The `__hello__` module actually offers a bit more than just a simple output! +Some emojis cheekily hidden in some classes within `__hello__` +You can check them out by retrieving the docs yourself +```py +>>> import __hello__ +>>> help(__hello__) +Help on module __hello__: + +NAME + __hello__ + +CLASSES + builtins.object + TestFrozenUtf8_1 + TestFrozenUtf8_2 + TestFrozenUtf8_4 + + class TestFrozenUtf8_1(builtins.object) + | ¶ + | + | Data descriptors defined here: + | + | ... + + + class TestFrozenUtf8_2(builtins.object) + | π + | + | Data descriptors defined here: + | + | ... + + + class TestFrozenUtf8_4(builtins.object) + | 😀 + | + | Data descriptors defined here: + | + | ... + +``` +and you can type it out too! +```py +>>> found_emotes = ['¶', 'π', '😀'] +>>> found_emotes +['¶', 'π', '😀'] +``` + + [^hello-world]: Easiest hello world program in a language without calling any function [^the-classic]: Each and every line is the philosophy of Python's design and is a supreme holy guide [^missing-zen]: Maybe just to show that there always should be a new line at the end of a file! @@ -217,6 +267,7 @@ SyntaxError: You found it! [^pep-401]: The [PEP 401](https://www.python.org/dev/peps/pep-0401/) is an April Fools' Joke - The PEP's number is 401, i.e. 4/01 or April 1st (April Fools' Day). The PEP states that Guido van Rossum is stepping down. The new title given to him would be pronounced "BDEVIL" (Benevolent Dictator Emeritus Vacationing Indefinitely from the Language) and Guido's successor will be Barry Warsaw, or as he is affectionately known, Uncle Barry. Uncle Barry's official title is "FLUFL" (Friendly Language Uncle For Life). There are in-jokes about the Parrot virtual machine and the "non-existent" Python Secret Underground (possibly a throw-back to ["TINC" on USENET](https://en.wikipedia.org/wiki/There_Is_No_Cabal)). [^inpynite]: [Source](https://www.reddit.com/r/Python/comments/6wrd8t/nice_lil_easter_egg_i_suppose/). [^peg-parser]: See [this answer](https://stackoverflow.com/a/65487013/14362510) +[^secret-unicode-emojis-in-__hello__]: The GitHub source link given right [here](https://github.com/Eggy115/Python/blob/main/__hello__.py) ## Add more From e2258d1681bd3c6e6fef2374b0434d3201a979fd Mon Sep 17 00:00:00 2001 From: otouxamaa__ Date: Wed, 20 May 2026 18:54:44 +0600 Subject: [PATCH 2/3] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d63881e..a31f6e5 100644 --- a/README.md +++ b/README.md @@ -204,9 +204,13 @@ SyntaxError: You found it! ``` ### 16. Hidden Unicode-valid emojis in __hello__[^secret-unicode-emojis-in-__hello__] + The `__hello__` module actually offers a bit more than just a simple output! + Some emojis cheekily hidden in some classes within `__hello__` + You can check them out by retrieving the docs yourself + ```py >>> import __hello__ >>> help(__hello__) From e0dab66ffe16783bbfe475e0284f72f07a811cdd Mon Sep 17 00:00:00 2001 From: otouxamaa__ Date: Sat, 23 May 2026 15:07:17 +0600 Subject: [PATCH 3/3] Update README link description for clarity more clarity indeed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a31f6e5..628a31f 100644 --- a/README.md +++ b/README.md @@ -271,7 +271,7 @@ and you can type it out too! [^pep-401]: The [PEP 401](https://www.python.org/dev/peps/pep-0401/) is an April Fools' Joke - The PEP's number is 401, i.e. 4/01 or April 1st (April Fools' Day). The PEP states that Guido van Rossum is stepping down. The new title given to him would be pronounced "BDEVIL" (Benevolent Dictator Emeritus Vacationing Indefinitely from the Language) and Guido's successor will be Barry Warsaw, or as he is affectionately known, Uncle Barry. Uncle Barry's official title is "FLUFL" (Friendly Language Uncle For Life). There are in-jokes about the Parrot virtual machine and the "non-existent" Python Secret Underground (possibly a throw-back to ["TINC" on USENET](https://en.wikipedia.org/wiki/There_Is_No_Cabal)). [^inpynite]: [Source](https://www.reddit.com/r/Python/comments/6wrd8t/nice_lil_easter_egg_i_suppose/). [^peg-parser]: See [this answer](https://stackoverflow.com/a/65487013/14362510) -[^secret-unicode-emojis-in-__hello__]: The GitHub source link given right [here](https://github.com/Eggy115/Python/blob/main/__hello__.py) +[^secret-unicode-emojis-in-__hello__]: The GitHub source link to __hello__ emotes given right [here](https://github.com/Eggy115/Python/blob/main/__hello__.py) ## Add more