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
0df80926
Kaydet (Commit)
0df80926
authored
Nis 07, 2011
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Removed 'or long integer' from bin, oct, and hex docstrings.
üst
efbcb189
12338ab1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
bltinmodule.c
Python/bltinmodule.c
+3
-3
No files found.
Python/bltinmodule.c
Dosyayı görüntüle @
0df80926
...
...
@@ -303,7 +303,7 @@ builtin_bin(PyObject *self, PyObject *v)
PyDoc_STRVAR
(
bin_doc
,
"bin(number) -> string
\n
\
\n
\
Return the binary representation of an integer
or long integer
."
);
Return the binary representation of an integer."
);
static
PyObject
*
...
...
@@ -1186,7 +1186,7 @@ builtin_hex(PyObject *self, PyObject *v)
PyDoc_STRVAR
(
hex_doc
,
"hex(number) -> string
\n
\
\n
\
Return the hexadecimal representation of an integer
or long integer
."
);
Return the hexadecimal representation of an integer."
);
static
PyObject
*
...
...
@@ -1374,7 +1374,7 @@ builtin_oct(PyObject *self, PyObject *v)
PyDoc_STRVAR
(
oct_doc
,
"oct(number) -> string
\n
\
\n
\
Return the octal representation of an integer
or long integer
."
);
Return the octal representation of an integer."
);
static
PyObject
*
...
...
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