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
456ab1d2
Kaydet (Commit)
456ab1d2
authored
May 06, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Swap public and system ID in start_doctype_decl. Fixes #780300.
üst
8b3e871a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
whatsnew24.tex
Doc/whatsnew/whatsnew24.tex
+4
-0
expatreader.py
Lib/xml/sax/expatreader.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/whatsnew/whatsnew24.tex
Dosyayı görüntüle @
456ab1d2
...
...
@@ -561,6 +561,10 @@ changes to your code:
\item
\function
{
dircache.listdir()
}
now passes exceptions to the caller
instead of returning empty lists.
\item
\function
{
LexicalHandler.startDTD
}
used to receive public and system ID
in the wrong order. This has been corrected; applications relying on the
wrong order need to be fixed.
\end{itemize}
...
...
Lib/xml/sax/expatreader.py
Dosyayı görüntüle @
456ab1d2
...
...
@@ -361,7 +361,7 @@ class ExpatParser(xmlreader.IncrementalParser, xmlreader.Locator):
def
end_namespace_decl
(
self
,
prefix
):
self
.
_cont_handler
.
endPrefixMapping
(
prefix
)
def
start_doctype_decl
(
self
,
name
,
pubid
,
sys
id
,
has_internal_subset
):
def
start_doctype_decl
(
self
,
name
,
sysid
,
pub
id
,
has_internal_subset
):
self
.
_lex_handler_prop
.
startDTD
(
name
,
pubid
,
sysid
)
def
unparsed_entity_decl
(
self
,
name
,
base
,
sysid
,
pubid
,
notation_name
):
...
...
Misc/NEWS
Dosyayı görüntüle @
456ab1d2
...
...
@@ -306,6 +306,9 @@ Extension modules
Library
-------
-
Bug
#
780300
:
Swap
public
and
system
ID
in
LexicalHandler
.
startDTD
.
Applications
relying
on
the
wrong
order
need
to
be
corrected
.
-
Bug
#
926075
:
Fixed
a
bug
that
returns
a
wrong
pattern
object
for
a
string
or
unicode
object
in
sre
.
compile
()
when
a
different
type
pattern
with
the
same
value
exists
.
...
...
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