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
3fbe20c0
Kaydet (Commit)
3fbe20c0
authored
Mar 21, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add docs for __func__ and __self__ on methods.
üst
06291185
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
inspect.rst
Doc/library/inspect.rst
+4
-4
datamodel.rst
Doc/reference/datamodel.rst
+4
-0
No files found.
Doc/library/inspect.rst
Dosyayı görüntüle @
3fbe20c0
...
...
@@ -54,12 +54,12 @@ attributes:
| | im_class | class object that asked | \(1) |
| | | for this method | |
+-----------+-----------------+---------------------------+-------+
| | im_func
| function object | |
| |
| containing implementation | |
| | im_func
or
| function object | |
| |
__func__
| containing implementation | |
| | | of method | |
+-----------+-----------------+---------------------------+-------+
| | im_self
| instance to which this | |
| |
| method is bound, or | |
| | im_self
or
| instance to which this | |
| |
__self__
| method is bound, or | |
| | | ``None`` | |
+-----------+-----------------+---------------------------+-------+
| function | __doc__ | documentation string | |
...
...
Doc/reference/datamodel.rst
Dosyayı görüntüle @
3fbe20c0
...
...
@@ -555,6 +555,10 @@ Callable types
.. versionchanged:: 2.2
:attr:`im_self` used to refer to the class that defined the method.
.. versionchanged:: 2.6
For 3.0 forward-compatibility, :attr:`im_func` is also available as
:attr:`__func__`, and :attr:`im_self` as :attr:`__self__`.
.. index::
single: __doc__ (method attribute)
single: __name__ (method attribute)
...
...
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