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 21ed1e2 commit e7f180bCopy full SHA for e7f180b
Lib/test/support/__init__.py
@@ -3303,3 +3303,10 @@ def linked_to_musl():
3303
return _linked_to_musl
3304
_linked_to_musl = tuple(map(int, version.split('.')))
3305
3306
+
3307
3308
+def control_characters_c0() -> list[str]:
3309
+ """Returns a list of C0 control characters as strings.
3310
+ C0 control characters defined as the byte range 0x00-0x1F, and 0x7F.
3311
+ """
3312
+ return [chr(c) for c in range(0x00, 0x20)] + ["\x7F"]
0 commit comments