Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
573805af
Commit
573805af
authored
Mar 06, 1992
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
_ can now be a normal character.
parent
5badc75f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Doc/tut.tex
Doc/tut.tex
+3
-3
Doc/tut/tut.tex
Doc/tut/tut.tex
+3
-3
No files found.
Doc/tut.tex
View file @
573805af
% Format this file with latex.
\documentstyle
[
times,
myformat]
{
report
}
\documentstyle
[myformat]
{
report
}
\title
{
\bf
Python Tutorial
...
...
@@ -176,7 +176,7 @@ command} in its entirety with double quotes.
Note that there is a difference between ``
{
\tt
python file
}
'' and
``
{
\tt
python
$
<
$
file
}
''. In the latter case, input requests from the
program, such as calls to
{
\tt
input()
}
and
{
\tt
raw
\
_
input()
}
, are
program, such as calls to
{
\tt
input()
}
and
{
\tt
raw
_
input()
}
, are
satisfied from
{
\em
file
}
. Since this file has already been read
until the end by the parser before the program starts executing, the
program will encounter EOF immediately. In the former case (which is
...
...
@@ -1494,7 +1494,7 @@ There is even a variant to import all names that a module defines:
\end{verbatim}
\ecode
%
This imports all names except those beginning with an underscore
(
{
\tt
\
_
}
).
(
{
\tt
_}
).
\section
{
Standard Modules
}
...
...
Doc/tut/tut.tex
View file @
573805af
% Format this file with latex.
\documentstyle
[
times,
myformat]
{
report
}
\documentstyle
[myformat]
{
report
}
\title
{
\bf
Python Tutorial
...
...
@@ -176,7 +176,7 @@ command} in its entirety with double quotes.
Note that there is a difference between ``
{
\tt
python file
}
'' and
``
{
\tt
python
$
<
$
file
}
''. In the latter case, input requests from the
program, such as calls to
{
\tt
input()
}
and
{
\tt
raw
\
_
input()
}
, are
program, such as calls to
{
\tt
input()
}
and
{
\tt
raw
_
input()
}
, are
satisfied from
{
\em
file
}
. Since this file has already been read
until the end by the parser before the program starts executing, the
program will encounter EOF immediately. In the former case (which is
...
...
@@ -1494,7 +1494,7 @@ There is even a variant to import all names that a module defines:
\end{verbatim}
\ecode
%
This imports all names except those beginning with an underscore
(
{
\tt
\
_
}
).
(
{
\tt
_}
).
\section
{
Standard Modules
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment