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
f87d8570
Kaydet (Commit)
f87d8570
authored
Ock 23, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Restore alphabetic order. Also try to import rlcompleter and curses, but
don't fail if they're not available.
üst
1e33bdcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
test_sundry.py
Lib/test/test_sundry.py
+15
-7
No files found.
Lib/test/test_sundry.py
Dosyayı görüntüle @
f87d8570
"""Do a minimal test of all the modules that aren't otherwise tested."""
from
test_support
import
verbose
import
BaseHTTPServer
import
CGIHTTPServer
import
Queue
...
...
@@ -17,7 +19,11 @@ import codeop
import
colorsys
import
commands
import
compileall
#import curses
try
:
import
curses
# not available on Windows
except
ImportError
:
if
verbose
:
print
"skipping curses"
import
dbhash
import
dircache
import
dis
...
...
@@ -64,7 +70,11 @@ import py_compile
import
pyclbr
#import reconvert
import
repr
#import rlcompleter
try
:
import
rlcompleter
# not available on Windows
except
ImportError
:
if
verbose
:
print
"skipping rlcompleter"
import
robotparser
import
sched
import
sgmllib
...
...
@@ -85,13 +95,11 @@ import test
import
toaiff
#import tzparse
import
urllib2
# Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
# can screw up all sorts of things (esp. if it prints!).
#import user
import
uu
import
webbrowser
import
whichdb
import
xdrlib
import
xml
# Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
# can screw up all sorts of things (esp. if it prints!).
#
#import user
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