Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
47b4c0fb
Kaydet (Commit)
47b4c0fb
authored
Mar 15, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
replace ASCII by macro call
üst
9b623b3d
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
36 additions
and
36 deletions
+36
-36
ref1.tex
Doc/ref/ref1.tex
+1
-1
ref2.tex
Doc/ref/ref2.tex
+11
-11
ref3.tex
Doc/ref/ref3.tex
+4
-4
ref1.tex
Doc/ref1.tex
+1
-1
ref2.tex
Doc/ref2.tex
+11
-11
ref3.tex
Doc/ref3.tex
+4
-4
tut.tex
Doc/tut.tex
+2
-2
tut.tex
Doc/tut/tut.tex
+2
-2
No files found.
Doc/ref/ref1.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -65,7 +65,7 @@ first beginning with a vertical bar.
In lexical definitions (as the example above), two more conventions
are used: Two literal characters separated by three dots mean a choice
of any single character in the given (inclusive) range of
ASCII
of any single character in the given (inclusive) range of
\ASCII
{}
characters. A phrase between angular brackets (
\verb
@
<...>
@
) gives an
informal description of the symbol defined; e.g. this could be used
to describe the notion of `control character' if needed.
...
...
Doc/ref/ref2.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -233,16 +233,16 @@ to those used by Standard C. The recognized escape sequences are:
\verb
/
\\
/
&
Backslash (
\verb
/
\
/
)
\\
\verb
/
\'
/
&
Single quote (
\verb
/
'
/
)
\\
\verb
/
\"
/
&
Double quote (
\verb
/
"
/
)
\\
\verb
/
\a
/
&
ASCII
Bell (BEL)
\\
\verb
/
\b
/
&
ASCII
Backspace (BS)
\\
%\verb/\E/ &
ASCII
Escape (ESC) \\
\verb
/
\f
/
&
ASCII
Formfeed (FF)
\\
\verb
/
\n
/
&
ASCII
Linefeed (LF)
\\
\verb
/
\r
/
&
ASCII
Carriage Return (CR)
\\
\verb
/
\t
/
&
ASCII
Horizontal Tab (TAB)
\\
\verb
/
\v
/
&
ASCII
Vertical Tab (VT)
\\
\verb
/
\
/
{
\em
ooo
}
&
ASCII
character with octal value
{
\em
ooo
}
\\
\verb
/
\x
/
{
\em
xx...
}
&
ASCII
character with hex value
{
\em
xx...
}
\\
\verb
/
\a
/
&
\ASCII
{}
Bell (BEL)
\\
\verb
/
\b
/
&
\ASCII
{}
Backspace (BS)
\\
%\verb/\E/ &
\ASCII{}
Escape (ESC) \\
\verb
/
\f
/
&
\ASCII
{}
Formfeed (FF)
\\
\verb
/
\n
/
&
\ASCII
{}
Linefeed (LF)
\\
\verb
/
\r
/
&
\ASCII
{}
Carriage Return (CR)
\\
\verb
/
\t
/
&
\ASCII
{}
Horizontal Tab (TAB)
\\
\verb
/
\v
/
&
\ASCII
{}
Vertical Tab (VT)
\\
\verb
/
\
/
{
\em
ooo
}
&
\ASCII
{}
character with octal value
{
\em
ooo
}
\\
\verb
/
\x
/
{
\em
xx...
}
&
\ASCII
{}
character with hex value
{
\em
xx...
}
\\
\hline
\end{tabular}
\end{center}
...
...
@@ -358,7 +358,7 @@ meaning:
= ;
\end{verbatim}
The following printing
ASCII
characters are not used in Python. Their
The following printing
\ASCII
{}
characters are not used in Python. Their
occurrence outside string literals and comments is an unconditional
error:
\index
{
ASCII
}
...
...
Doc/ref/ref3.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -211,7 +211,7 @@ character type; a character is represented by a string of one element.
Characters represent (at least) 8-bit bytes. The built-in
functions
\verb
@
chr()
@
and
\verb
@
ord()
@
convert between characters
and nonnegative integers representing the byte values.
Bytes with the values 0-127 represent the corresponding
ASCII
values.
Bytes with the values 0-127 represent the corresponding
\ASCII
{}
values.
The string data type is also used to represent arrays of bytes, e.g.
to hold data read from a file.
\obindex
{
string
}
...
...
@@ -221,10 +221,10 @@ to hold data read from a file.
\bifuncindex
{
chr
}
\bifuncindex
{
ord
}
(On systems whose native character set is not
ASCII
, strings may use
(On systems whose native character set is not
\ASCII
{}
, strings may use
EBCDIC in their internal representation, provided the functions
\verb
@
chr()
@
and
\verb
@
ord()
@
implement a mapping between
ASCII
and
EBCDIC, and string comparison preserves the
ASCII
order.
\verb
@
chr()
@
and
\verb
@
ord()
@
implement a mapping between
\ASCII
{}
and
EBCDIC, and string comparison preserves the
\ASCII
{}
order.
Or perhaps someone can propose a better rule?)
\index
{
ASCII
}
\index
{
EBCDIC
}
...
...
Doc/ref1.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -65,7 +65,7 @@ first beginning with a vertical bar.
In lexical definitions (as the example above), two more conventions
are used: Two literal characters separated by three dots mean a choice
of any single character in the given (inclusive) range of
ASCII
of any single character in the given (inclusive) range of
\ASCII
{}
characters. A phrase between angular brackets (
\verb
@
<...>
@
) gives an
informal description of the symbol defined; e.g. this could be used
to describe the notion of `control character' if needed.
...
...
Doc/ref2.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -233,16 +233,16 @@ to those used by Standard C. The recognized escape sequences are:
\verb
/
\\
/
&
Backslash (
\verb
/
\
/
)
\\
\verb
/
\'
/
&
Single quote (
\verb
/
'
/
)
\\
\verb
/
\"
/
&
Double quote (
\verb
/
"
/
)
\\
\verb
/
\a
/
&
ASCII
Bell (BEL)
\\
\verb
/
\b
/
&
ASCII
Backspace (BS)
\\
%\verb/\E/ &
ASCII
Escape (ESC) \\
\verb
/
\f
/
&
ASCII
Formfeed (FF)
\\
\verb
/
\n
/
&
ASCII
Linefeed (LF)
\\
\verb
/
\r
/
&
ASCII
Carriage Return (CR)
\\
\verb
/
\t
/
&
ASCII
Horizontal Tab (TAB)
\\
\verb
/
\v
/
&
ASCII
Vertical Tab (VT)
\\
\verb
/
\
/
{
\em
ooo
}
&
ASCII
character with octal value
{
\em
ooo
}
\\
\verb
/
\x
/
{
\em
xx...
}
&
ASCII
character with hex value
{
\em
xx...
}
\\
\verb
/
\a
/
&
\ASCII
{}
Bell (BEL)
\\
\verb
/
\b
/
&
\ASCII
{}
Backspace (BS)
\\
%\verb/\E/ &
\ASCII{}
Escape (ESC) \\
\verb
/
\f
/
&
\ASCII
{}
Formfeed (FF)
\\
\verb
/
\n
/
&
\ASCII
{}
Linefeed (LF)
\\
\verb
/
\r
/
&
\ASCII
{}
Carriage Return (CR)
\\
\verb
/
\t
/
&
\ASCII
{}
Horizontal Tab (TAB)
\\
\verb
/
\v
/
&
\ASCII
{}
Vertical Tab (VT)
\\
\verb
/
\
/
{
\em
ooo
}
&
\ASCII
{}
character with octal value
{
\em
ooo
}
\\
\verb
/
\x
/
{
\em
xx...
}
&
\ASCII
{}
character with hex value
{
\em
xx...
}
\\
\hline
\end{tabular}
\end{center}
...
...
@@ -358,7 +358,7 @@ meaning:
= ;
\end{verbatim}
The following printing
ASCII
characters are not used in Python. Their
The following printing
\ASCII
{}
characters are not used in Python. Their
occurrence outside string literals and comments is an unconditional
error:
\index
{
ASCII
}
...
...
Doc/ref3.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -211,7 +211,7 @@ character type; a character is represented by a string of one element.
Characters represent (at least) 8-bit bytes. The built-in
functions
\verb
@
chr()
@
and
\verb
@
ord()
@
convert between characters
and nonnegative integers representing the byte values.
Bytes with the values 0-127 represent the corresponding
ASCII
values.
Bytes with the values 0-127 represent the corresponding
\ASCII
{}
values.
The string data type is also used to represent arrays of bytes, e.g.
to hold data read from a file.
\obindex
{
string
}
...
...
@@ -221,10 +221,10 @@ to hold data read from a file.
\bifuncindex
{
chr
}
\bifuncindex
{
ord
}
(On systems whose native character set is not
ASCII
, strings may use
(On systems whose native character set is not
\ASCII
{}
, strings may use
EBCDIC in their internal representation, provided the functions
\verb
@
chr()
@
and
\verb
@
ord()
@
implement a mapping between
ASCII
and
EBCDIC, and string comparison preserves the
ASCII
order.
\verb
@
chr()
@
and
\verb
@
ord()
@
implement a mapping between
\ASCII
{}
and
EBCDIC, and string comparison preserves the
\ASCII
{}
order.
Or perhaps someone can propose a better rule?)
\index
{
ASCII
}
\index
{
EBCDIC
}
...
...
Doc/tut.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -1398,7 +1398,7 @@ the lexicographical comparison is carried out recursively. If all
items of two sequences compare equal, the sequences are considered
equal. If one sequence is an initial subsequence of the other, the
shorted sequence is the smaller one. Lexicographical ordering for
strings uses the
ASCII
ordering for individual characters. Some
strings uses the
\ASCII
{}
ordering for individual characters. Some
examples of comparisons between sequences with the same types:
\bcode
\begin{verbatim}
...
...
@@ -3301,7 +3301,7 @@ Note that \code{pickle} does not open or close any files --- it can be
used equally well for moving objects around on a network or store them
in a database. For ease of debugging, and the inevitable occasional
manual patch-up, the constructed byte streams consist of printable
ASCII
characters only (though it's not designed to be pretty).
\ASCII
{}
characters only (though it's not designed to be pretty).
The module
\code
{
shelve
}
provides a simple model for storing objects
on files. The operation
\code
{
shelve.open(filename)
}
returns a
...
...
Doc/tut/tut.tex
Dosyayı görüntüle @
47b4c0fb
...
...
@@ -1398,7 +1398,7 @@ the lexicographical comparison is carried out recursively. If all
items of two sequences compare equal, the sequences are considered
equal. If one sequence is an initial subsequence of the other, the
shorted sequence is the smaller one. Lexicographical ordering for
strings uses the
ASCII
ordering for individual characters. Some
strings uses the
\ASCII
{}
ordering for individual characters. Some
examples of comparisons between sequences with the same types:
\bcode
\begin{verbatim}
...
...
@@ -3301,7 +3301,7 @@ Note that \code{pickle} does not open or close any files --- it can be
used equally well for moving objects around on a network or store them
in a database. For ease of debugging, and the inevitable occasional
manual patch-up, the constructed byte streams consist of printable
ASCII
characters only (though it's not designed to be pretty).
\ASCII
{}
characters only (though it's not designed to be pretty).
The module
\code
{
shelve
}
provides a simple model for storing objects
on files. The operation
\code
{
shelve.open(filename)
}
returns a
...
...
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