We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d39a7d commit 24319d9Copy full SHA for 24319d9
1 file changed
Src/IronPython/Runtime/Operations/CharOps.cs
@@ -33,7 +33,7 @@ public static object __new__(PythonType cls, char value) {
33
return value;
34
}
35
36
- public static string __repr__(char self) => char.ToString(self);
+ public static string __repr__(char self) => StringOps.__repr__(char.ToString(self));
37
38
public static int __hash__(char self) => char.ToString(self).GetHashCode();
39
0 commit comments