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
9a4acdf4
Kaydet (Commit)
9a4acdf4
authored
Eki 14, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix issue10065 - future_builtins' docstring lacks some functions
üst
3125f503
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
future_builtins.c
Modules/future_builtins.c
+11
-3
No files found.
Modules/future_builtins.c
Dosyayı görüntüle @
9a4acdf4
...
...
@@ -14,12 +14,20 @@ but that conflict with builtins that already exist in Python 2.x.\n\
\n
\
Functions:
\n
\
\n
\
hex(arg) -- Returns the hexadecimal representation of an integer
\n
\
oct(arg) -- Returns the octal representation of an integer
\n
\
ascii(arg) -- Returns the canonical string representation of an object.
\n
\
filter(pred, iterable) -- Returns an iterator yielding those items of
\n
\
iterable for which pred(item) is true.
\n
\
hex(arg) -- Returns the hexadecimal representation of an integer.
\n
\
map(func, *iterables) -- Returns an iterator that computes the function
\n
\
using arguments from each of the iterables.
\n
\
oct(arg) -- Returns the octal representation of an integer.
\n
\
zip(iter1 [,iter2 [...]]) -- Returns a zip object whose .next() method
\n
\
returns a tuple where the i-th element comes from the i-th iterable
\n
\
argument.
\n
\
\n
\
The typical usage of this module is to replace existing builtins in a
\n
\
module's namespace:
\n
\n
\
from future_builtins import
hex, oct
\n
"
);
from future_builtins import
ascii, filter, map, hex, oct, zip
\n
"
);
static
PyObject
*
builtin_hex
(
PyObject
*
self
,
PyObject
*
v
)
...
...
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