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
2def11a9
Kaydet (Commit)
2def11a9
authored
Mar 24, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use *absolute* imports now that they are required. (Should this go into 2.5?)
üst
c3e54b84
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
__init__.py
Lib/xmlcore/sax/__init__.py
+5
-5
saxutils.py
Lib/xmlcore/sax/saxutils.py
+2
-2
xmlreader.py
Lib/xmlcore/sax/xmlreader.py
+2
-2
No files found.
Lib/xmlcore/sax/__init__.py
Dosyayı görüntüle @
2def11a9
...
...
@@ -19,11 +19,11 @@ xmlreader -- Base classes and constants which define the SAX 2 API for
expatreader -- Driver that allows use of the Expat parser with SAX.
"""
from
xmlreader
import
InputSource
from
handler
import
ContentHandler
,
ErrorHandler
from
_exceptions
import
SAXException
,
SAXNotRecognizedException
,
\
SAXParseException
,
SAXNotSupportedException
,
\
SAXReaderNotAvailable
from
.
xmlreader
import
InputSource
from
.
handler
import
ContentHandler
,
ErrorHandler
from
._exceptions
import
(
SAXException
,
SAXNotRecognizedException
,
SAXParseException
,
SAXNotSupportedException
,
SAXReaderNotAvailable
)
def
parse
(
source
,
handler
,
errorHandler
=
ErrorHandler
()):
...
...
Lib/xmlcore/sax/saxutils.py
Dosyayı görüntüle @
2def11a9
...
...
@@ -4,8 +4,8 @@ convenience of application and driver writers.
"""
import
os
,
urlparse
,
urllib
,
types
import
handler
import
xmlreader
from
.
import
handler
from
.
import
xmlreader
try
:
_StringTypes
=
[
types
.
StringType
,
types
.
UnicodeType
]
...
...
Lib/xmlcore/sax/xmlreader.py
Dosyayı görüntüle @
2def11a9
"""An XML Reader is the SAX 2 name for an XML parser. XML Parsers
should be based on this code. """
import
handler
from
.
import
handler
from
_exceptions
import
SAXNotSupportedException
,
SAXNotRecognizedException
from
.
_exceptions
import
SAXNotSupportedException
,
SAXNotRecognizedException
# ===== XMLREADER =====
...
...
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