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
03519283
Kaydet (Commit)
03519283
authored
Mar 18, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge #17448: Make test_sax skip if there are no xml parsers.
Patch by Rafael Santos.
üst
fbb18154
f3a1b6ef
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
test_sax.py
Lib/test/test_sax.py
+2
-2
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_sax.py
Dosyayı görüntüle @
03519283
...
...
@@ -3,11 +3,12 @@
from
xml.sax
import
make_parser
,
ContentHandler
,
\
SAXException
,
SAXReaderNotAvailable
,
SAXParseException
import
unittest
try
:
make_parser
()
except
SAXReaderNotAvailable
:
# don't try to test this module if we cannot create a parser
raise
ImportError
(
"no XML parsers available"
)
raise
unittest
.
SkipTest
(
"no XML parsers available"
)
from
xml.sax.saxutils
import
XMLGenerator
,
escape
,
unescape
,
quoteattr
,
\
XMLFilterBase
from
xml.sax.expatreader
import
create_parser
...
...
@@ -18,7 +19,6 @@ import os.path
import
shutil
from
test
import
support
from
test.support
import
findfile
,
run_unittest
import
unittest
TEST_XMLFILE
=
findfile
(
"test.xml"
,
subdir
=
"xmltestdata"
)
TEST_XMLFILE_OUT
=
findfile
(
"test.xml.out"
,
subdir
=
"xmltestdata"
)
...
...
Misc/ACKS
Dosyayı görüntüle @
03519283
...
...
@@ -1065,6 +1065,7 @@ Kevin Samborn
Adrian Sampson
James Sanders
Ilya Sandler
Rafael Santos
Mark Sapiro
Ty Sarna
Hugh Sasse
...
...
Misc/NEWS
Dosyayı görüntüle @
03519283
...
...
@@ -940,6 +940,9 @@ Extension Modules
Tests
-----
-
Issue
#
17448
:
test_sax
now
skips
if
there
are
no
xml
parsers
available
instead
of
raising
an
ImportError
.
-
Issue
#
11420
:
make
test
suite
pass
with
-
B
/
DONTWRITEBYTECODE
set
.
Initial
patch
by
Thomas
Wouters
.
...
...
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