We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9509ea2 commit 3355139Copy full SHA for 3355139
bot/exts/smart_eval/_smart_eval_rules.py
@@ -20,8 +20,8 @@
20
r"(?i:^print\((?:\"|\')Hello World[.!]?(?:\"|\')\)$)": [ # Detect just printing hello world
21
"You don't want to know how many times I've seen hello world in my training dataset, try something new."
22
],
23
- r"(?P<content>__import__|__code__|ctypes)": [ # Detect use of esoteric stuff
24
- "Using `{}`?? Try asking someone in #esoteric-python"
+ r"(?P<content>__import__|__code__|ctypes|inspect)": [ # Detect use of esoteric stuff
+ "Using `{}`?? Try asking someone in <#470884583684964352>" # Eso-py channel ID so it actually links
25
26
r"(?m:(?:import |from )(?P<content>requests|httpx|aiohttp))": [ # Detect use of networking libraries
27
(
0 commit comments