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
c09cf336
Kaydet (Commit)
c09cf336
authored
Tem 05, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rip out tests for xrange() features no longer supported.
üst
643d3916
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
14 deletions
+0
-14
test_b2.py
Lib/test/test_b2.py
+0
-14
No files found.
Lib/test/test_b2.py
Dosyayı görüntüle @
c09cf336
...
...
@@ -254,20 +254,6 @@ if tuple(xrange(10)) != tuple(range(10)): raise TestFailed, 'xrange(10)'
if
tuple
(
xrange
(
5
,
10
))
!=
tuple
(
range
(
5
,
10
)):
raise
TestFailed
,
'xrange(5,10)'
if
tuple
(
xrange
(
0
,
10
,
2
))
!=
tuple
(
range
(
0
,
10
,
2
)):
raise
TestFailed
,
'xrange(0,10,2)'
# regression tests for SourceForge bug #121695
def
_range_test
(
r
):
verify
(
r
.
start
!=
r
.
stop
,
'Test not valid for passed-in xrange object.'
)
if
r
.
stop
in
r
:
raise
TestFailed
,
'r.stop in '
+
`r`
if
r
.
stop
-
r
.
step
not
in
r
:
raise
TestFailed
,
'r.stop-r.step not in '
+
`r`
if
r
.
start
not
in
r
:
raise
TestFailed
,
'r.start not in '
+
`r`
if
r
.
stop
+
r
.
step
in
r
:
raise
TestFailed
,
'r.stop+r.step in '
+
`r`
_range_test
(
xrange
(
10
))
_range_test
(
xrange
(
9
,
-
1
,
-
1
))
_range_test
(
xrange
(
0
,
10
,
2
))
print
'zip'
a
=
(
1
,
2
,
3
)
...
...
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