Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 573805a

Browse files
committed
_ can now be a normal character.
1 parent 5badc75 commit 573805a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Doc/tut.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% Format this file with latex.
22

3-
\documentstyle[times,myformat]{report}
3+
\documentstyle[myformat]{report}
44

55
\title{\bf
66
Python Tutorial
@@ -176,7 +176,7 @@ \section{Invoking the Interpreter}
176176

177177
Note that there is a difference between ``{\tt python file}'' and
178178
``{\tt python $<$file}''. In the latter case, input requests from the
179-
program, such as calls to {\tt input()} and {\tt raw\_input()}, are
179+
program, such as calls to {\tt input()} and {\tt raw_input()}, are
180180
satisfied from {\em file}. Since this file has already been read
181181
until the end by the parser before the program starts executing, the
182182
program will encounter EOF immediately. In the former case (which is
@@ -1494,7 +1494,7 @@ \section{More on Modules}
14941494
\end{verbatim}\ecode
14951495
%
14961496
This imports all names except those beginning with an underscore
1497-
({\tt \_}).
1497+
({\tt _}).
14981498

14991499
\section{Standard Modules}
15001500

Doc/tut/tut.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% Format this file with latex.
22

3-
\documentstyle[times,myformat]{report}
3+
\documentstyle[myformat]{report}
44

55
\title{\bf
66
Python Tutorial
@@ -176,7 +176,7 @@ \section{Invoking the Interpreter}
176176

177177
Note that there is a difference between ``{\tt python file}'' and
178178
``{\tt python $<$file}''. In the latter case, input requests from the
179-
program, such as calls to {\tt input()} and {\tt raw\_input()}, are
179+
program, such as calls to {\tt input()} and {\tt raw_input()}, are
180180
satisfied from {\em file}. Since this file has already been read
181181
until the end by the parser before the program starts executing, the
182182
program will encounter EOF immediately. In the former case (which is
@@ -1494,7 +1494,7 @@ \section{More on Modules}
14941494
\end{verbatim}\ecode
14951495
%
14961496
This imports all names except those beginning with an underscore
1497-
({\tt \_}).
1497+
({\tt _}).
14981498

14991499
\section{Standard Modules}
15001500

0 commit comments

Comments
 (0)