66
77
88class IOHookPreRead (Builtin ):
9- '''
9+ """
1010 <dl>
1111 <dt>$PreRead
1212 <dt> is a global variable whose value, if set, is applied to the \
1313 text or box form of every input expression before it is fed to the parser.
1414 <dt>(Not implemented yet)
1515 </dl>
16- '''
16+ """
17+
1718 name = "$PreRead"
19+ attributes = ("Unprotected" ,)
20+
1821
1922class IOHookPre (Builtin ):
20- '''
23+ """
2124 <dl>
2225 <dt>$Pre
2326 <dt>is a global variable whose value, if set,
@@ -42,39 +45,47 @@ class IOHookPre(Builtin):
4245 | [Processing input...]
4346 >> 2 + 2
4447 = 4
45- '''
48+ """
49+
4650 name = "$Pre"
51+ attributes = ("Unprotected" ,)
4752
4853
4954class IOHookPost (Builtin ):
50- '''
55+ """
5156 <dl>
5257 <dt>$Post
5358 <dt>is a global variable whose value, if set,
5459 is applied to every output expression.
5560 </dl>
56- '''
61+ """
62+
5763 name = "$Post"
64+ attributes = ("Unprotected" ,)
5865
5966
6067class IOHookPrePrint (Builtin ):
61- '''
68+ """
6269 <dl>
6370 <dt>$PrePrint
6471 <dt>is a global variable whose value, if set,
6572 is applied to every output expression before it is printed.
6673 </dl>
67- '''
74+ """
75+
6876 name = "$PrePrint"
77+ attributes = ("Unprotected" ,)
6978
7079
7180class IOHookSyntaxHandler (Builtin ):
72- '''
81+ """
7382 <dl>
7483 <dt>$SyntaxHandler
7584 <dt>is a global variable whose value, if set,
7685 is applied to any input string that is found to contain a syntax error.
7786 <dt>(Not implemented yet)
7887 </dl>
79- '''
88+ """
89+
8090 name = "$SyntaxHandler"
91+ attributes = ("Unprotected" ,)
0 commit comments