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
9797b7ae
Kaydet (Commit)
9797b7ae
authored
Eyl 10, 2018
tarafından
Berker Peksag
Kaydeden (comit)
Petr Viktorin
Eyl 10, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-26502: Implement FrameSummary.__len__() (GH-8632)
üst
0e0bc4e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
test_traceback.py
Lib/test/test_traceback.py
+5
-0
traceback.py
Lib/traceback.py
+3
-0
2018-08-02-20-39-32.bpo-26502.eGXr_k.rst
...S.d/next/Library/2018-08-02-20-39-32.bpo-26502.eGXr_k.rst
+2
-0
No files found.
Lib/test/test_traceback.py
Dosyayı görüntüle @
9797b7ae
...
...
@@ -868,6 +868,7 @@ class MiscTracebackCases(unittest.TestCase):
(
__file__
,
lineno
+
2
,
'test_extract_stack'
,
'result = extract()'
),
(
__file__
,
lineno
+
1
,
'extract'
,
'return traceback.extract_stack()'
),
])
self
.
assertEqual
(
len
(
result
[
0
]),
4
)
class
TestFrame
(
unittest
.
TestCase
):
...
...
@@ -900,6 +901,10 @@ class TestFrame(unittest.TestCase):
f
=
traceback
.
FrameSummary
(
"f"
,
1
,
"dummy"
,
line
=
"line"
)
self
.
assertEqual
(
"line"
,
f
.
line
)
def
test_len
(
self
):
f
=
traceback
.
FrameSummary
(
"f"
,
1
,
"dummy"
,
line
=
"line"
)
self
.
assertEqual
(
len
(
f
),
4
)
class
TestStack
(
unittest
.
TestCase
):
...
...
Lib/traceback.py
Dosyayı görüntüle @
9797b7ae
...
...
@@ -279,6 +279,9 @@ class FrameSummary:
return
"<FrameSummary file {filename}, line {lineno} in {name}>"
.
format
(
filename
=
self
.
filename
,
lineno
=
self
.
lineno
,
name
=
self
.
name
)
def
__len__
(
self
):
return
4
@property
def
line
(
self
):
if
self
.
_line
is
None
:
...
...
Misc/NEWS.d/next/Library/2018-08-02-20-39-32.bpo-26502.eGXr_k.rst
0 → 100644
Dosyayı görüntüle @
9797b7ae
Implement ``traceback.FrameSummary.__len__()`` method to preserve
compatibility with the old tuple API.
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