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
89f48876
Kaydet (Commit)
89f48876
authored
Haz 11, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add future_builtins.ascii().
üst
35b90202
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
future_builtins.rst
Doc/library/future_builtins.rst
+8
-0
NEWS
Misc/NEWS
+2
-0
future_builtins.c
Modules/future_builtins.c
+14
-0
No files found.
Doc/library/future_builtins.rst
Dosyayı görüntüle @
89f48876
...
...
@@ -28,6 +28,14 @@ this usage and leave the new builtins alone.
Available builtins are:
.. function:: ascii(object)
Returns the same as :func:`repr`. In Python 3, :func:`repr` will return
printable Unicode characters unescaped, while :func:`ascii` will always
backslash-escape them. Using :func:`future_builtins.ascii` instead of
:func:`repr` in 2.6 code makes it clear that you need a pure ASCII return
value.
.. function:: filter(function, iterable)
Works like :func:`itertools.ifilter`.
...
...
Misc/NEWS
Dosyayı görüntüle @
89f48876
...
...
@@ -12,6 +12,8 @@ What's New in Python 2.6 beta 1?
Core and Builtins
-----------------
- Add future_builtins.ascii().
- Several set methods now accept multiple arguments: update(), union(),
intersection(), intersection_update(), difference(), and difference_update().
...
...
Modules/future_builtins.c
Dosyayı görüntüle @
89f48876
...
...
@@ -45,11 +45,25 @@ PyDoc_STRVAR(oct_doc,
Return the octal representation of an integer or long integer."
);
static
PyObject
*
builtin_ascii
(
PyObject
*
self
,
PyObject
*
v
)
{
return
PyObject_Repr
(
v
);
}
PyDoc_STRVAR
(
ascii_doc
,
"ascii(object) -> string
\n
\
\n
\
Return the same as repr(). In Python 3.x, the repr() result will
\n
\
contain printable characters unescaped, while the ascii() result
\n
\
will have such characters backslash-escaped."
);
/* List of functions exported by this module */
static
PyMethodDef
module_functions
[]
=
{
{
"hex"
,
builtin_hex
,
METH_O
,
hex_doc
},
{
"oct"
,
builtin_oct
,
METH_O
,
oct_doc
},
{
"ascii"
,
builtin_ascii
,
METH_O
,
ascii_doc
},
{
NULL
,
NULL
}
/* Sentinel */
};
...
...
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