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
c45e041b
Kaydet (Commit)
c45e041b
authored
Mar 18, 2013
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #17463: Fix test discovery for test_pdb.py
üst
a77d7a52
f0efea08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
test_pdb.py
Lib/test/test_pdb.py
+5
-4
No files found.
Lib/test/test_pdb.py
Dosyayı görüntüle @
c45e041b
# A test suite for pdb; not very comprehensive at the moment.
import
doctest
import
imp
import
pdb
import
sys
...
...
@@ -701,11 +702,11 @@ class PdbTestCase(unittest.TestCase):
support
.
unlink
(
support
.
TESTFN
)
def
test_main
(
):
def
load_tests
(
*
args
):
from
test
import
test_pdb
su
pport
.
run_doctest
(
test_pdb
,
verbosity
=
True
)
support
.
run_unittest
(
PdbTestCase
)
su
ites
=
[
unittest
.
makeSuite
(
PdbTestCase
),
doctest
.
DocTestSuite
(
test_pdb
)]
return
unittest
.
TestSuite
(
suites
)
if
__name__
==
'__main__'
:
test_
main
()
unittest
.
main
()
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