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
e188d52a
Kaydet (Commit)
e188d52a
authored
Nis 02, 2000
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Untabified file to fix problems reported by tabnanny
üst
d9b0f265
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
test_pyexpat.py
Lib/test/test_pyexpat.py
+17
-17
No files found.
Lib/test/test_pyexpat.py
Dosyayı görüntüle @
e188d52a
...
@@ -7,13 +7,13 @@ import sys, string
...
@@ -7,13 +7,13 @@ import sys, string
import
os
import
os
import
pyexpat
import
pyexpat
class
Outputter
:
class
Outputter
:
def
StartElementHandler
(
self
,
name
,
attrs
):
def
StartElementHandler
(
self
,
name
,
attrs
):
print
'Start element:
\n\t
'
,
name
,
attrs
print
'Start element:
\n\t
'
,
name
,
attrs
def
EndElementHandler
(
self
,
name
):
def
EndElementHandler
(
self
,
name
):
print
'End element:
\n\t
'
,
name
print
'End element:
\n\t
'
,
name
def
CharacterDataHandler
(
self
,
data
):
def
CharacterDataHandler
(
self
,
data
):
data
=
string
.
strip
(
data
)
data
=
string
.
strip
(
data
)
...
@@ -22,26 +22,26 @@ class Outputter:
...
@@ -22,26 +22,26 @@ class Outputter:
print
'
\t
'
,
repr
(
data
)
print
'
\t
'
,
repr
(
data
)
def
ProcessingInstructionHandler
(
self
,
target
,
data
):
def
ProcessingInstructionHandler
(
self
,
target
,
data
):
print
'PI:
\n\t
'
,
target
,
data
print
'PI:
\n\t
'
,
target
,
data
def
StartNamespaceDeclHandler
(
self
,
prefix
,
uri
):
def
StartNamespaceDeclHandler
(
self
,
prefix
,
uri
):
print
'NS decl:
\n\t
'
,
prefix
,
uri
print
'NS decl:
\n\t
'
,
prefix
,
uri
def
EndNamespaceDeclHandler
(
self
,
prefix
):
def
EndNamespaceDeclHandler
(
self
,
prefix
):
print
'End of NS decl:
\n\t
'
,
prefix
print
'End of NS decl:
\n\t
'
,
prefix
def
StartCdataSectionHandler
(
self
):
def
StartCdataSectionHandler
(
self
):
print
'Start of CDATA section'
print
'Start of CDATA section'
def
EndCdataSectionHandler
(
self
):
def
EndCdataSectionHandler
(
self
):
print
'End of CDATA section'
print
'End of CDATA section'
def
CommentHandler
(
self
,
text
):
def
CommentHandler
(
self
,
text
):
print
'Comment:
\n\t
'
,
repr
(
text
)
print
'Comment:
\n\t
'
,
repr
(
text
)
def
NotationDeclHandler
(
self
,
*
args
):
def
NotationDeclHandler
(
self
,
*
args
):
name
,
base
,
sysid
,
pubid
=
args
name
,
base
,
sysid
,
pubid
=
args
print
'Notation declared:'
,
args
print
'Notation declared:'
,
args
def
UnparsedEntityDeclHandler
(
self
,
*
args
):
def
UnparsedEntityDeclHandler
(
self
,
*
args
):
entityName
,
base
,
systemId
,
publicId
,
notationName
=
args
entityName
,
base
,
systemId
,
publicId
,
notationName
=
args
...
@@ -65,14 +65,14 @@ class Outputter:
...
@@ -65,14 +65,14 @@ class Outputter:
out
=
Outputter
()
out
=
Outputter
()
parser
=
pyexpat
.
ParserCreate
(
namespace_separator
=
'!'
)
parser
=
pyexpat
.
ParserCreate
(
namespace_separator
=
'!'
)
for
name
in
[
'StartElementHandler'
,
'EndElementHandler'
,
for
name
in
[
'StartElementHandler'
,
'EndElementHandler'
,
'CharacterDataHandler'
,
'ProcessingInstructionHandler'
,
'CharacterDataHandler'
,
'ProcessingInstructionHandler'
,
'UnparsedEntityDeclHandler'
,
'NotationDeclHandler'
,
'UnparsedEntityDeclHandler'
,
'NotationDeclHandler'
,
'StartNamespaceDeclHandler'
,
'EndNamespaceDeclHandler'
,
'StartNamespaceDeclHandler'
,
'EndNamespaceDeclHandler'
,
'CommentHandler'
,
'StartCdataSectionHandler'
,
'CommentHandler'
,
'StartCdataSectionHandler'
,
'EndCdataSectionHandler'
,
'EndCdataSectionHandler'
,
'DefaultHandler'
,
'DefaultHandlerExpand'
,
'DefaultHandler'
,
'DefaultHandlerExpand'
,
#'NotStandaloneHandler',
#'NotStandaloneHandler',
'ExternalEntityRefHandler'
'ExternalEntityRefHandler'
]:
]:
setattr
(
parser
,
name
,
getattr
(
out
,
name
)
)
setattr
(
parser
,
name
,
getattr
(
out
,
name
)
)
...
...
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