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
d21dabc8
Kaydet (Commit)
d21dabc8
authored
May 18, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
change some imports in tests so they will not be skipped in 3.0
üst
913c15c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
test_htmlparser.py
Lib/test/test_htmlparser.py
+5
-5
test_tcl.py
Lib/test/test_tcl.py
+1
-1
No files found.
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
d21dabc8
"""Tests for HTMLParser.py."""
import
HTMLP
arser
import
html.p
arser
import
pprint
import
unittest
from
test
import
test_support
class
EventCollector
(
HTMLP
arser
.
HTMLParser
):
class
EventCollector
(
html
.
p
arser
.
HTMLParser
):
def
__init__
(
self
):
self
.
events
=
[]
self
.
append
=
self
.
events
.
append
HTMLP
arser
.
HTMLParser
.
__init__
(
self
)
html
.
p
arser
.
HTMLParser
.
__init__
(
self
)
def
get_events
(
self
):
# Normalize the list of events so that buffer artefacts don't
...
...
@@ -88,10 +88,10 @@ class TestCaseBase(unittest.TestCase):
def
_parse_error
(
self
,
source
):
def
parse
(
source
=
source
):
parser
=
HTMLP
arser
.
HTMLParser
()
parser
=
html
.
p
arser
.
HTMLParser
()
parser
.
feed
(
source
)
parser
.
close
()
self
.
assertRaises
(
HTMLP
arser
.
HTMLParseError
,
parse
)
self
.
assertRaises
(
html
.
p
arser
.
HTMLParseError
,
parse
)
class
HTMLParserTestCase
(
TestCaseBase
):
...
...
Lib/test/test_tcl.py
Dosyayı görüntüle @
d21dabc8
...
...
@@ -3,7 +3,7 @@
import
unittest
import
os
from
test
import
test_support
from
T
kinter
import
Tcl
from
t
kinter
import
Tcl
from
_tkinter
import
TclError
class
TclTest
(
unittest
.
TestCase
):
...
...
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