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
3f2155ff
Kaydet (Commit)
3f2155ff
authored
Mar 17, 2017
tarafından
Marco Buttu
Kaydeden (comit)
Berker Peksag
Mar 17, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-16355: Clarify when inspect.getcomments() returns None (#428)
Initial patch by Vajrasky Kok.
üst
1bb0f376
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
inspect.rst
Doc/library/inspect.rst
+3
-1
test_inspect.py
Lib/test/test_inspect.py
+5
-0
No files found.
Doc/library/inspect.rst
Dosyayı görüntüle @
3f2155ff
...
...
@@ -442,7 +442,9 @@ Retrieving source code
Return in a single string any lines of comments immediately preceding the
object's source code (for a class, function, or method), or at the top of the
Python source file (if the object is a module).
Python source file (if the object is a module). If the object's source code
is unavailable, return ``None``. This could happen if the object has been
defined in C or the interactive shell.
.. function:: getfile(object)
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
3f2155ff
...
...
@@ -384,6 +384,11 @@ class TestRetrievingSourceCode(GetSourceBase):
def
test_getcomments
(
self
):
self
.
assertEqual
(
inspect
.
getcomments
(
mod
),
'# line 1
\n
'
)
self
.
assertEqual
(
inspect
.
getcomments
(
mod
.
StupidGit
),
'# line 20
\n
'
)
# If the object source file is not available, return None.
co
=
compile
(
'x=1'
,
'_non_existing_filename.py'
,
'exec'
)
self
.
assertIsNone
(
inspect
.
getcomments
(
co
))
# If the object has been defined in C, return None.
self
.
assertIsNone
(
inspect
.
getcomments
(
list
))
def
test_getmodule
(
self
):
# Check actual module
...
...
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