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
7ec790d1
Kaydet (Commit)
7ec790d1
authored
Ock 18, 2011
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add example for the abc module.
üst
ca904be7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
3.2.rst
Doc/whatsnew/3.2.rst
+13
-5
No files found.
Doc/whatsnew/3.2.rst
Dosyayı görüntüle @
7ec790d1
...
...
@@ -815,9 +815,9 @@ collections
(Contributed by Raymond Hettinger.)
* The :class:`collections.deque`
grew two new methods :meth:`~collections.deque.count`
and :meth:`collections.deque.reverse` that make them more substitutable for
:class:`list` when needed
:
* The :class:`collections.deque`
class grew two new methods
:meth:`~collections.deque.count` and :meth:`~collections.deque.reverse` that
make them more substitutable for :class:`list` objects
:
>>> d = deque('simsalabim')
>>> d.count('s')
...
...
@@ -914,9 +914,17 @@ abc
The :mod:`abc` module now supports :func:`~abc.abstractclassmethod` and
:func:`~abc.abstractstaticmethod`.
These tools make it possible to define an :term:`
Abstract Base C
lass` that
These tools make it possible to define an :term:`
abstract base c
lass` that
requires a particular :func:`classmethod` or :func:`staticmethod` to be
implemented.
implemented::
class Temperature(metaclass=ABCMeta):
@abc.abstractclassmethod
def from_farenheit(self, t):
...
@abc.abstractclassmethod
def from_celsium(self, t):
...
(Patch submitted by Daniel Urban; :issue:`5867`.)
...
...
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