mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-04 02:39:20 +00:00
3 lines
91 B
Python
3 lines
91 B
Python
class Bytes(bytes):
|
|
def try_new(*b): # -> Result[Nat]
|
|
return Bytes(bytes(*b))
|