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
f259efe3
Kaydet (Commit)
f259efe3
authored
Kas 25, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Get rid of math mode in some places.
üst
3e1e274d
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
18 additions
and
18 deletions
+18
-18
libmath.tex
Doc/lib/libmath.tex
+3
-3
libpprint.tex
Doc/lib/libpprint.tex
+1
-1
libsys.tex
Doc/lib/libsys.tex
+1
-1
libtime.tex
Doc/lib/libtime.tex
+2
-2
libmacspeech.tex
Doc/libmacspeech.tex
+1
-1
libmactcp.tex
Doc/libmactcp.tex
+1
-1
libmath.tex
Doc/libmath.tex
+3
-3
libpprint.tex
Doc/libpprint.tex
+1
-1
libsys.tex
Doc/libsys.tex
+1
-1
libtime.tex
Doc/libtime.tex
+2
-2
libmacspeech.tex
Doc/mac/libmacspeech.tex
+1
-1
libmactcp.tex
Doc/mac/libmactcp.tex
+1
-1
No files found.
Doc/lib/libmath.tex
Dosyayı görüntüle @
f259efe3
...
@@ -37,7 +37,7 @@ Return the hyperbolic cosine of \var{x}.
...
@@ -37,7 +37,7 @@ Return the hyperbolic cosine of \var{x}.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
exp
}{
x
}
\begin{funcdesc}
{
exp
}{
x
}
Return
the exponential value
$
\mbox
{
e
}^
x
$
.
Return
\code
{
e**
\var
{
x
}}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
fabs
}{
x
}
\begin{funcdesc}
{
fabs
}{
x
}
...
@@ -62,7 +62,7 @@ Return the Euclidean distance, \code{sqrt(x*x + y*y)}.
...
@@ -62,7 +62,7 @@ Return the Euclidean distance, \code{sqrt(x*x + y*y)}.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
ldexp
}{
x, i
}
\begin{funcdesc}
{
ldexp
}{
x, i
}
Return
$
x
{
\times
}
2
^
i
$
.
Return
\code
{
\var
{
x
}
* (2**
\var
{
i
}
)
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
modf
}{
x
}
\begin{funcdesc}
{
modf
}{
x
}
...
@@ -71,7 +71,7 @@ carry the sign of \var{x}.
...
@@ -71,7 +71,7 @@ carry the sign of \var{x}.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
pow
}{
x, y
}
\begin{funcdesc}
{
pow
}{
x, y
}
Return
$
x
^
y
$
.
Return
\code
{
\var
{
x
}
**
\var
{
y
}}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
sin
}{
x
}
\begin{funcdesc}
{
sin
}{
x
}
...
...
Doc/lib/libpprint.tex
Dosyayı görüntüle @
f259efe3
...
@@ -122,7 +122,7 @@ One more support function is also defined:
...
@@ -122,7 +122,7 @@ One more support function is also defined:
Return a string representation of
\var
{
object
}
, protected against
Return a string representation of
\var
{
object
}
, protected against
recursive data structures. If the representation of
\var
{
object
}
recursive data structures. If the representation of
\var
{
object
}
exposes a recursive entry, the recursive reference will be represented
exposes a recursive entry, the recursive reference will be represented
as
\
samp
{$
<
$
Recursion on
\var
{
typename
}
with id=
\var
{
number
}$
>
$
}
. The
as
\
code
{
<Recursion on
\var
{
typename
}
with id=
\var
{
number
}
>
}
. The
representation is not otherwise formatted.
representation is not otherwise formatted.
\begin{verbatim}
\begin{verbatim}
...
...
Doc/lib/libsys.tex
Dosyayı görüntüle @
f259efe3
...
@@ -176,7 +176,7 @@ determines how often the interpreter checks for periodic things such
...
@@ -176,7 +176,7 @@ determines how often the interpreter checks for periodic things such
as thread switches and signal handlers. The default is 10, meaning
as thread switches and signal handlers. The default is 10, meaning
the check is performed every 10 Python virtual instructions. Setting
the check is performed every 10 Python virtual instructions. Setting
it to a larger value may increase performance for programs using
it to a larger value may increase performance for programs using
threads. Setting it to a value
$
\leq
0
$
checks every virtual instruction,
threads. Setting it to a value
\code
{
<=
}
0
checks every virtual instruction,
maximizing responsiveness as well as overhead.
maximizing responsiveness as well as overhead.
\end{funcdesc}
\end{funcdesc}
...
...
Doc/lib/libtime.tex
Dosyayı görüntüle @
f259efe3
...
@@ -48,8 +48,8 @@ integers: year (e.g.\ 1993), month (1--12), day (1--31), hour
...
@@ -48,8 +48,8 @@ integers: year (e.g.\ 1993), month (1--12), day (1--31), hour
(0--23), minute (0--59), second (0--59), weekday (0--6, monday is 0),
(0--23), minute (0--59), second (0--59), weekday (0--6, monday is 0),
Julian day (1--366) and daylight savings flag (-1, 0 or 1).
Julian day (1--366) and daylight savings flag (-1, 0 or 1).
Note that unlike the C structure, the month value is a range of 1-12, not
Note that unlike the C structure, the month value is a range of 1-12, not
0-11. A year value
of
$
<
$
100 will typically be silently converted to
0-11. A year value
less than
100 will typically be silently converted to
1900
$
+
$
year value. A -1 argument as daylight savings flag, passed to
1900
plus the
year value. A -1 argument as daylight savings flag, passed to
\code
{
mktime()
}
will usually result in the correct daylight savings
\code
{
mktime()
}
will usually result in the correct daylight savings
state to be filled in.
state to be filled in.
...
...
Doc/libmacspeech.tex
Dosyayı görüntüle @
f259efe3
...
@@ -45,7 +45,7 @@ yet possible to access the parameters of a voice.
...
@@ -45,7 +45,7 @@ yet possible to access the parameters of a voice.
\renewcommand
{
\indexsubitem
}{
(voice object method)
}
\renewcommand
{
\indexsubitem
}{
(voice object method)
}
\begin{funcdesc}
{
GetGender
}{}
\begin{funcdesc}
{
GetGender
}{}
Return the gender of the voice:
\
0 for male, 1 for female and
$
-
1
$
for neuter.
Return the gender of the voice:
0 for male, 1 for female and -1
for neuter.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
NewChannel
}{}
\begin{funcdesc}
{
NewChannel
}{}
...
...
Doc/libmactcp.tex
Dosyayı görüntüle @
f259efe3
...
@@ -164,7 +164,7 @@ A read-only member giving the port number of this UDP stream.
...
@@ -164,7 +164,7 @@ A read-only member giving the port number of this UDP stream.
\renewcommand
{
\indexsubitem
}{
(UDP stream method)
}
\renewcommand
{
\indexsubitem
}{
(UDP stream method)
}
\begin{funcdesc}
{
Read
}{
timeout
}
\begin{funcdesc}
{
Read
}{
timeout
}
Read a datagram, waiting at most
\var
{
timeout
}
seconds (
$
-
1
$
is
Read a datagram, waiting at most
\var
{
timeout
}
seconds (
-1
is
infinite). Return the data.
infinite). Return the data.
\end{funcdesc}
\end{funcdesc}
...
...
Doc/libmath.tex
Dosyayı görüntüle @
f259efe3
...
@@ -37,7 +37,7 @@ Return the hyperbolic cosine of \var{x}.
...
@@ -37,7 +37,7 @@ Return the hyperbolic cosine of \var{x}.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
exp
}{
x
}
\begin{funcdesc}
{
exp
}{
x
}
Return
the exponential value
$
\mbox
{
e
}^
x
$
.
Return
\code
{
e**
\var
{
x
}}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
fabs
}{
x
}
\begin{funcdesc}
{
fabs
}{
x
}
...
@@ -62,7 +62,7 @@ Return the Euclidean distance, \code{sqrt(x*x + y*y)}.
...
@@ -62,7 +62,7 @@ Return the Euclidean distance, \code{sqrt(x*x + y*y)}.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
ldexp
}{
x, i
}
\begin{funcdesc}
{
ldexp
}{
x, i
}
Return
$
x
{
\times
}
2
^
i
$
.
Return
\code
{
\var
{
x
}
* (2**
\var
{
i
}
)
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
modf
}{
x
}
\begin{funcdesc}
{
modf
}{
x
}
...
@@ -71,7 +71,7 @@ carry the sign of \var{x}.
...
@@ -71,7 +71,7 @@ carry the sign of \var{x}.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
pow
}{
x, y
}
\begin{funcdesc}
{
pow
}{
x, y
}
Return
$
x
^
y
$
.
Return
\code
{
\var
{
x
}
**
\var
{
y
}}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
sin
}{
x
}
\begin{funcdesc}
{
sin
}{
x
}
...
...
Doc/libpprint.tex
Dosyayı görüntüle @
f259efe3
...
@@ -122,7 +122,7 @@ One more support function is also defined:
...
@@ -122,7 +122,7 @@ One more support function is also defined:
Return a string representation of
\var
{
object
}
, protected against
Return a string representation of
\var
{
object
}
, protected against
recursive data structures. If the representation of
\var
{
object
}
recursive data structures. If the representation of
\var
{
object
}
exposes a recursive entry, the recursive reference will be represented
exposes a recursive entry, the recursive reference will be represented
as
\
samp
{$
<
$
Recursion on
\var
{
typename
}
with id=
\var
{
number
}$
>
$
}
. The
as
\
code
{
<Recursion on
\var
{
typename
}
with id=
\var
{
number
}
>
}
. The
representation is not otherwise formatted.
representation is not otherwise formatted.
\begin{verbatim}
\begin{verbatim}
...
...
Doc/libsys.tex
Dosyayı görüntüle @
f259efe3
...
@@ -176,7 +176,7 @@ determines how often the interpreter checks for periodic things such
...
@@ -176,7 +176,7 @@ determines how often the interpreter checks for periodic things such
as thread switches and signal handlers. The default is 10, meaning
as thread switches and signal handlers. The default is 10, meaning
the check is performed every 10 Python virtual instructions. Setting
the check is performed every 10 Python virtual instructions. Setting
it to a larger value may increase performance for programs using
it to a larger value may increase performance for programs using
threads. Setting it to a value
$
\leq
0
$
checks every virtual instruction,
threads. Setting it to a value
\code
{
<=
}
0
checks every virtual instruction,
maximizing responsiveness as well as overhead.
maximizing responsiveness as well as overhead.
\end{funcdesc}
\end{funcdesc}
...
...
Doc/libtime.tex
Dosyayı görüntüle @
f259efe3
...
@@ -48,8 +48,8 @@ integers: year (e.g.\ 1993), month (1--12), day (1--31), hour
...
@@ -48,8 +48,8 @@ integers: year (e.g.\ 1993), month (1--12), day (1--31), hour
(0--23), minute (0--59), second (0--59), weekday (0--6, monday is 0),
(0--23), minute (0--59), second (0--59), weekday (0--6, monday is 0),
Julian day (1--366) and daylight savings flag (-1, 0 or 1).
Julian day (1--366) and daylight savings flag (-1, 0 or 1).
Note that unlike the C structure, the month value is a range of 1-12, not
Note that unlike the C structure, the month value is a range of 1-12, not
0-11. A year value
of
$
<
$
100 will typically be silently converted to
0-11. A year value
less than
100 will typically be silently converted to
1900
$
+
$
year value. A -1 argument as daylight savings flag, passed to
1900
plus the
year value. A -1 argument as daylight savings flag, passed to
\code
{
mktime()
}
will usually result in the correct daylight savings
\code
{
mktime()
}
will usually result in the correct daylight savings
state to be filled in.
state to be filled in.
...
...
Doc/mac/libmacspeech.tex
Dosyayı görüntüle @
f259efe3
...
@@ -45,7 +45,7 @@ yet possible to access the parameters of a voice.
...
@@ -45,7 +45,7 @@ yet possible to access the parameters of a voice.
\renewcommand
{
\indexsubitem
}{
(voice object method)
}
\renewcommand
{
\indexsubitem
}{
(voice object method)
}
\begin{funcdesc}
{
GetGender
}{}
\begin{funcdesc}
{
GetGender
}{}
Return the gender of the voice:
\
0 for male, 1 for female and
$
-
1
$
for neuter.
Return the gender of the voice:
0 for male, 1 for female and -1
for neuter.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
NewChannel
}{}
\begin{funcdesc}
{
NewChannel
}{}
...
...
Doc/mac/libmactcp.tex
Dosyayı görüntüle @
f259efe3
...
@@ -164,7 +164,7 @@ A read-only member giving the port number of this UDP stream.
...
@@ -164,7 +164,7 @@ A read-only member giving the port number of this UDP stream.
\renewcommand
{
\indexsubitem
}{
(UDP stream method)
}
\renewcommand
{
\indexsubitem
}{
(UDP stream method)
}
\begin{funcdesc}
{
Read
}{
timeout
}
\begin{funcdesc}
{
Read
}{
timeout
}
Read a datagram, waiting at most
\var
{
timeout
}
seconds (
$
-
1
$
is
Read a datagram, waiting at most
\var
{
timeout
}
seconds (
-1
is
infinite). Return the data.
infinite). Return the data.
\end{funcdesc}
\end{funcdesc}
...
...
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