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
d10d8ee2
Kaydet (Commit)
d10d8ee2
authored
Şub 06, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix various missing import/unbound name errors.
üst
1a0ffe16
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
10 deletions
+11
-10
test_richcmp.py
Lib/test/test_richcmp.py
+7
-7
test_tempfile.py
Lib/test/test_tempfile.py
+1
-1
test_threaded_import.py
Lib/test/test_threaded_import.py
+1
-0
test_zipimport.py
Lib/test/test_zipimport.py
+2
-2
No files found.
Lib/test/test_richcmp.py
Dosyayı görüntüle @
d10d8ee2
...
...
@@ -192,13 +192,13 @@ class MiscTest(unittest.TestCase):
def
test_misbehavin
(
self
):
class
Misb
:
def
__lt__
(
self
,
other
):
return
0
def
__gt__
(
self
,
other
):
return
0
def
__eq__
(
self
,
other
):
return
0
def
__le__
(
self
,
other
):
raise
TestFailed
,
"This shouldn't happen"
def
__ge__
(
self
,
other
):
raise
TestFailed
,
"This shouldn't happen"
def
__ne__
(
self
,
other
):
raise
TestFailed
,
"This shouldn't happen"
def
__cmp__
(
self
,
other
):
raise
RuntimeError
,
"expected"
def
__lt__
(
self
_
,
other
):
return
0
def
__gt__
(
self
_
,
other
):
return
0
def
__eq__
(
self
_
,
other
):
return
0
def
__le__
(
self
_
,
other
):
self
.
fail
(
"This shouldn't happen"
)
def
__ge__
(
self
_
,
other
):
self
.
fail
(
"This shouldn't happen"
)
def
__ne__
(
self
_
,
other
):
self
.
fail
(
"This shouldn't happen"
)
def
__cmp__
(
self
_
,
other
):
raise
RuntimeError
,
"expected"
a
=
Misb
()
b
=
Misb
()
self
.
assertEqual
(
a
<
b
,
0
)
...
...
Lib/test/test_tempfile.py
Dosyayı görüntüle @
d10d8ee2
...
...
@@ -127,7 +127,7 @@ class test__RandomNameSequence(TC):
if
i
==
20
:
break
except
:
failOnException
(
"iteration"
)
self
.
failOnException
(
"iteration"
)
test_classes
.
append
(
test__RandomNameSequence
)
...
...
Lib/test/test_threaded_import.py
Dosyayı görüntüle @
d10d8ee2
...
...
@@ -6,6 +6,7 @@
# randrange, and then Python hangs.
import
thread
import
unittest
from
test.test_support
import
verbose
,
TestFailed
critical_section
=
thread
.
allocate_lock
()
...
...
Lib/test/test_zipimport.py
Dosyayı görüntüle @
d10d8ee2
...
...
@@ -230,7 +230,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
mod_path
=
packdir2
+
TESTMOD
mod_name
=
module_path_to_dotted_name
(
mod_path
)
pkg
=
__import__
(
mod_name
)
__import__
(
mod_name
)
mod
=
sys
.
modules
[
mod_name
]
self
.
assertEquals
(
zi
.
get_source
(
TESTPACK
),
None
)
self
.
assertEquals
(
zi
.
get_source
(
mod_path
),
None
)
...
...
@@ -274,7 +274,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
mod_path
=
TESTPACK2
+
os
.
sep
+
TESTMOD
mod_name
=
module_path_to_dotted_name
(
mod_path
)
pkg
=
__import__
(
mod_name
)
__import__
(
mod_name
)
mod
=
sys
.
modules
[
mod_name
]
self
.
assertEquals
(
zi
.
get_source
(
TESTPACK2
),
None
)
self
.
assertEquals
(
zi
.
get_source
(
mod_path
),
None
)
...
...
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