mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-13 16:15:15 +00:00
14 lines
746 B
Python
14 lines
746 B
Python
.PrettyPrinter!: ClassType
|
|
.PrettyPrinter!.
|
|
__call__: (indent := Nat, width := Nat, depth := Nat, stream := FileLike!) -> .PrettyPrinter!
|
|
pformat: (self: Ref(.PrettyPrinter!), object: Obj) -> Str
|
|
pprint!: (self: Ref(.PrettyPrinter!), object: Obj) => NoneType
|
|
isreadable: (self: Ref(.PrettyPrinter!), object: Obj) -> Bool
|
|
isrecursive: (self: Ref(.PrettyPrinter!), object: Obj) -> Bool
|
|
|
|
.pformat: (object: Obj, indent := Nat, width := Nat, depth := Nat) -> Str
|
|
.pp!: (object: Obj, *args: Obj, sorts_dict := Bool) => NoneType
|
|
.pprint!: (object: Obj, stream := FileLike!, indent := Nat, width := Nat, depth := Nat) => NoneType
|
|
.isreadable: (object: Obj) -> Bool
|
|
.isrecursive: (object: Obj) -> Bool
|
|
.saferepr: (object: Obj) -> Str
|