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
1c5bc1c9
Kaydet (Commit)
1c5bc1c9
authored
Mar 28, 2006
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Part of bug 1459808: fiddle so that this passes
with or without -Qnew.
üst
7491d2a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
test_doctest.py
Lib/test/test_doctest.py
+12
-12
No files found.
Lib/test/test_doctest.py
Dosyayı görüntüle @
1c5bc1c9
...
...
@@ -604,7 +604,7 @@ DocTestFinder finds the line number of each example:
... >>> for x in range(10):
... ... print x,
... 0 1 2 3 4 5 6 7 8 9
... >>> x/2
... >>> x/
/
2
... 6
... '''
>>> test = doctest.DocTestFinder().find(f)[0]
...
...
@@ -679,7 +679,7 @@ statistics. Here's a simple DocTest case we can use:
... >>> x = 12
... >>> print x
... 12
... >>> x/2
... >>> x/
/
2
... 6
... '''
>>> test = doctest.DocTestFinder().find(f)[0]
...
...
@@ -700,7 +700,7 @@ the failure and proceeds to the next example:
... >>> x = 12
... >>> print x
... 14
... >>> x/2
... >>> x/
/
2
... 6
... '''
>>> test = doctest.DocTestFinder().find(f)[0]
...
...
@@ -723,7 +723,7 @@ the failure and proceeds to the next example:
Got:
12
Trying:
x/2
x/
/
2
Expecting:
6
ok
...
...
@@ -738,7 +738,7 @@ output:
... >>> x = 12
... >>> print x
... 12
... >>> x/2
... >>> x/
/
2
... 6
... '''
>>> test = doctest.DocTestFinder().find(f)[0]
...
...
@@ -754,7 +754,7 @@ output:
12
ok
Trying:
x/2
x/
/
2
Expecting:
6
ok
...
...
@@ -784,7 +784,7 @@ iff `-v` appears in sys.argv:
12
ok
Trying:
x/2
x/
/
2
Expecting:
6
ok
...
...
@@ -806,7 +806,7 @@ replaced with any other string:
>>> def f(x):
... '''
... >>> x = 12
... >>> print x/0
... >>> print x/
/
0
... Traceback (most recent call last):
... ZeroDivisionError: integer division or modulo by zero
... '''
...
...
@@ -822,7 +822,7 @@ unexpected exception:
>>> def f(x):
... '''
... >>> x = 12
... >>> print 'pre-exception output', x/0
... >>> print 'pre-exception output', x/
/
0
... pre-exception output
... Traceback (most recent call last):
... ZeroDivisionError: integer division or modulo by zero
...
...
@@ -833,7 +833,7 @@ unexpected exception:
**********************************************************************
File ..., line 4, in f
Failed example:
print 'pre-exception output', x/0
print 'pre-exception output', x/
/
0
Exception raised:
...
ZeroDivisionError: integer division or modulo by zero
...
...
@@ -920,7 +920,7 @@ unexpected exception:
>>> def f(x):
... r'''
... >>> 1/0
... >>> 1/
/
0
... 0
... '''
>>> test = doctest.DocTestFinder().find(f)[0]
...
...
@@ -929,7 +929,7 @@ unexpected exception:
**********************************************************************
File ..., line 3, in f
Failed example:
1/0
1/
/
0
Exception raised:
Traceback (most recent call last):
...
...
...
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