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
296c2fd0
Kaydet (Commit)
296c2fd0
authored
Kas 10, 2012
tarafından
Chris Jerdonek
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge from 3.2: adjust set and frozenset function docs (issue #16436).
üst
fe087567
df3abec2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
functions.rst
Doc/library/functions.rst
+13
-6
No files found.
Doc/library/functions.rst
Dosyayı görüntüle @
296c2fd0
...
@@ -547,11 +547,13 @@ are always available. They are listed here in alphabetical order.
...
@@ -547,11 +547,13 @@ are always available. They are listed here in alphabetical order.
.. function:: frozenset([iterable])
.. function:: frozenset([iterable])
:noindex:
:noindex:
Return a frozenset object, optionally with elements taken from *iterable*.
Return a new :class:`frozenset` object, optionally with elements taken from
The frozenset type is described in :ref:`types-set`.
*iterable*. ``frozenset`` is a built-in class. See :class:`frozenset` and
:ref:`types-set` for documentation about this class.
For other containers see the built in :class:`dict`, :class:`list`, and
For other containers see the built-in :class:`set`, :class:`list`,
:class:`tuple` classes, and the :mod:`collections` module.
:class:`tuple`, and :class:`dict` classes, as well as the :mod:`collections`
module.
.. function:: getattr(object, name[, default])
.. function:: getattr(object, name[, default])
...
@@ -1170,8 +1172,13 @@ are always available. They are listed here in alphabetical order.
...
@@ -1170,8 +1172,13 @@ are always available. They are listed here in alphabetical order.
.. function:: set([iterable])
.. function:: set([iterable])
:noindex:
:noindex:
Return a new set, optionally with elements taken from *iterable*.
Return a new :class:`set` object, optionally with elements taken from
The set type is described in :ref:`types-set`.
*iterable*. ``set`` is a built-in class. See :class:`set` and
:ref:`types-set` for documentation about this class.
For other containers see the built-in :class:`frozenset`, :class:`list`,
:class:`tuple`, and :class:`dict` classes, as well as the :mod:`collections`
module.
.. function:: setattr(object, name, value)
.. function:: setattr(object, name, value)
...
...
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