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
e4fbb020
Kaydet (Commit)
e4fbb020
authored
Nis 24, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused support.run_unittest imports.
It is not needed since tests use unittest.main().
üst
8153ac8f
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
6 additions
and
15 deletions
+6
-15
test_charmapcodec.py
Lib/test/test_charmapcodec.py
+1
-1
test_codecencodings_cn.py
Lib/test/test_codecencodings_cn.py
+0
-1
test_codecencodings_hk.py
Lib/test/test_codecencodings_hk.py
+0
-1
test_codecencodings_iso2022.py
Lib/test/test_codecencodings_iso2022.py
+0
-1
test_codecencodings_jp.py
Lib/test/test_codecencodings_jp.py
+0
-1
test_codecencodings_kr.py
Lib/test/test_codecencodings_kr.py
+0
-1
test_codecencodings_tw.py
Lib/test/test_codecencodings_tw.py
+0
-1
test_codecmaps_jp.py
Lib/test/test_codecmaps_jp.py
+0
-1
test_epoll.py
Lib/test/test_epoll.py
+0
-1
test_hmac.py
Lib/test/test_hmac.py
+0
-1
test_list.py
Lib/test/test_list.py
+1
-1
test_pow.py
Lib/test/test_pow.py
+1
-1
test_range.py
Lib/test/test_range.py
+1
-1
test_userdict.py
Lib/test/test_userdict.py
+1
-1
test_userlist.py
Lib/test/test_userlist.py
+1
-1
No files found.
Lib/test/test_charmapcodec.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -9,7 +9,7 @@ Written by Marc-Andre Lemburg (mal@lemburg.com).
"""
#"
import
test.support
,
unittest
import
unittest
import
codecs
...
...
Lib/test/test_codecencodings_cn.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -3,7 +3,6 @@
# Codec encoding tests for PRC encodings.
#
from
test
import
support
from
test
import
multibytecodec_support
import
unittest
...
...
Lib/test/test_codecencodings_hk.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -3,7 +3,6 @@
# Codec encoding tests for HongKong encodings.
#
from
test
import
support
from
test
import
multibytecodec_support
import
unittest
...
...
Lib/test/test_codecencodings_iso2022.py
Dosyayı görüntüle @
e4fbb020
# Codec encoding tests for ISO 2022 encodings.
from
test
import
support
from
test
import
multibytecodec_support
import
unittest
...
...
Lib/test/test_codecencodings_jp.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -3,7 +3,6 @@
# Codec encoding tests for Japanese encodings.
#
from
test
import
support
from
test
import
multibytecodec_support
import
unittest
...
...
Lib/test/test_codecencodings_kr.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -3,7 +3,6 @@
# Codec encoding tests for ROK encodings.
#
from
test
import
support
from
test
import
multibytecodec_support
import
unittest
...
...
Lib/test/test_codecencodings_tw.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -3,7 +3,6 @@
# Codec encoding tests for ROC encodings.
#
from
test
import
support
from
test
import
multibytecodec_support
import
unittest
...
...
Lib/test/test_codecmaps_jp.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -3,7 +3,6 @@
# Codec mapping tests for Japanese encodings
#
from
test
import
support
from
test
import
multibytecodec_support
import
unittest
...
...
Lib/test/test_epoll.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -28,7 +28,6 @@ import socket
import
time
import
unittest
from
test
import
support
if
not
hasattr
(
select
,
"epoll"
):
raise
unittest
.
SkipTest
(
"test works only on Linux 2.6"
)
...
...
Lib/test/test_hmac.py
Dosyayı görüntüle @
e4fbb020
...
...
@@ -3,7 +3,6 @@ import hmac
import
hashlib
import
unittest
import
warnings
from
test
import
support
def
ignore_warning
(
func
):
...
...
Lib/test/test_list.py
Dosyayı görüntüle @
e4fbb020
import
sys
from
test
import
support
,
list_tests
from
test
import
list_tests
import
pickle
import
unittest
...
...
Lib/test/test_pow.py
Dosyayı görüntüle @
e4fbb020
import
test.support
,
unittest
import
unittest
class
PowTest
(
unittest
.
TestCase
):
...
...
Lib/test/test_range.py
Dosyayı görüntüle @
e4fbb020
# Python test set -- built-in functions
import
test.support
,
unittest
import
unittest
import
sys
import
pickle
import
itertools
...
...
Lib/test/test_userdict.py
Dosyayı görüntüle @
e4fbb020
# Check every path through every method of UserDict
from
test
import
support
,
mapping_tests
from
test
import
mapping_tests
import
unittest
import
collections
...
...
Lib/test/test_userlist.py
Dosyayı görüntüle @
e4fbb020
# Check every path through every method of UserList
from
collections
import
UserList
from
test
import
support
,
list_tests
from
test
import
list_tests
import
unittest
class
UserListTest
(
list_tests
.
CommonTest
):
...
...
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