@@ -864,36 +864,51 @@ class Information(PrefixOperator):
864864 #> a = 2;
865865 #> Information[a]
866866 | a = 2
867- #> f[x_] := x ^ 2
868- #> g[f] ^:= 2
867+ .
868+ = Null
869+
870+ #> f[x_] := x ^ 2;
871+ #> g[f] ^:= 2;
869872 #> f::usage = "f[x] returns the square of x";
870873 #> Information[f]
871874 | f[x] returns the square of x
875+ .
876+ . f[x_] = x ^ 2
877+ .
878+ . g[f] ^= 2
879+ .
880+ = Null
881+
872882
873883 #> ? Table
874- | 'Table[expr, {i, n}]'
875- | evaluates expr with i ranging from 1 to n, returning
876- | a list of the results.
877- | 'Table[expr, {i, start, stop, step}]'
878- | evaluates expr with i ranging from start to stop,
879- | incrementing by step.
880- | 'Table[expr, {i, {e1, e2, ..., ei}}]'
881- | evaluates expr with i taking on the values e1, e2,
882- | ..., ei.
884+ |
885+ . 'Table[expr, {i, n}]'
886+ . evaluates expr with i ranging from 1 to n, returning
887+ . a list of the results.
888+ . 'Table[expr, {i, start, stop, step}]'
889+ . evaluates expr with i ranging from start to stop,
890+ . incrementing by step.
891+ . 'Table[expr, {i, {e1, e2, ..., ei}}]'
892+ . evaluates expr with i taking on the values e1, e2,
893+ . ..., ei.
894+ .
895+ = Null
883896
884897 #> Information[Table]
885- | 'Table[expr, {i, n}]'
886- | evaluates expr with i ranging from 1 to n, returning
887- | a list of the results.
888- | 'Table[expr, {i, start, stop, step}]'
889- | evaluates expr with i ranging from start to stop,
890- | incrementing by step.
891- | 'Table[expr, {i, {e1, e2, ..., ei}}]'
892- | evaluates expr with i taking on the values e1, e2,
893- | ..., ei.
894- |
895- | Attributes[Table] = {HoldAll, Protected}
896- |
898+ |
899+ . 'Table[expr, {i, n}]'
900+ . evaluates expr with i ranging from 1 to n, returning
901+ . a list of the results.
902+ . 'Table[expr, {i, start, stop, step}]'
903+ . evaluates expr with i ranging from start to stop,
904+ . incrementing by step.
905+ . 'Table[expr, {i, {e1, e2, ..., ei}}]'
906+ . evaluates expr with i taking on the values e1, e2,
907+ . ..., ei.
908+ .
909+ . Attributes[Table] = {HoldAll, Protected}
910+ .
911+ = Null
897912 """
898913
899914 operator = "??"
@@ -904,7 +919,7 @@ class Information(PrefixOperator):
904919
905920 def format_definition (self , symbol , evaluation , options , grid = True ):
906921 'StandardForm,TraditionalForm,OutputForm: Information[symbol_, OptionsPattern[Information]]'
907- ret = Symbol (" Null" )
922+ ret = Symbol (' Null' )
908923 lines = []
909924 if isinstance (symbol , String ):
910925 evaluation .print_out (symbol )
0 commit comments