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
7e902b27
Kaydet (Commit)
7e902b27
authored
Haz 11, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
* Added missing documentation for object().
* Noted the Py2.3 in the optional arg for bool().
üst
3985df2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
libfuncs.tex
Doc/lib/libfuncs.tex
+15
-2
No files found.
Doc/lib/libfuncs.tex
Dosyayı görüntüle @
7e902b27
...
...
@@ -86,10 +86,13 @@ def my_import(name):
otherwise it returns
\code
{
True
}
.
\code
{
bool
}
is also a class,
which is a subclass of
\code
{
int
}
. Class
\code
{
bool
}
cannot be
subclassed further. Its only instances are
\code
{
False
}
and
\code
{
True
}
.
If no argument is given, this function returns
\code
{
False
}
.
\code
{
True
}
.
\indexii
{
Boolean
}{
type
}
\versionadded
{
2.2.1
}
If no argument is given, this function returns
\code
{
False
}
.
\versionchanged
{
2.3
}
\end{funcdesc}
\begin{funcdesc}
{
buffer
}{
object
\optional
{
, offset
\optional
{
, size
}}}
...
...
@@ -678,6 +681,16 @@ class C:
than one argument, return the smallest of the arguments.
\end{funcdesc}
\begin{funcdesc}
{
object
}{}
Return a new featureless object.
\function
{
object
}
is a base
for all new style classes. It has the methods that are common
to all instances of new style classes.
\versionadded
{
2.2
}
This function does not accept any arguments.
\versionchanged
{
2.3
}
Formerly, it accepted arguments but ignored them.
\end{funcdesc}
\begin{funcdesc}
{
oct
}{
x
}
Convert an integer number (of any size) to an octal string. The
result is a valid Python expression. Note: this always yields an
...
...
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