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
2f827389
Kaydet (Commit)
2f827389
authored
Agu 13, 2009
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport of r77429. Not merged/blocked as svnmerge.py is not liking me right now.
üst
dffc1b89
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
3 deletions
+25
-3
test_pyexpat.py
Lib/test/test_pyexpat.py
+20
-1
ACKS
Misc/ACKS
+2
-1
NEWS
Misc/NEWS
+2
-0
xmltok_impl.c
Modules/expat/xmltok_impl.c
+1
-1
No files found.
Lib/test/test_pyexpat.py
Dosyayı görüntüle @
2f827389
...
...
@@ -510,6 +510,24 @@ class ChardataBufferTest(unittest.TestCase):
parser
.
Parse
(
xml2
,
1
)
self
.
assertEquals
(
self
.
n
,
4
)
class
MalformedInputText
(
unittest
.
TestCase
):
def
test1
(
self
):
xml
=
"
\0\r\n
"
parser
=
expat
.
ParserCreate
()
try
:
parser
.
Parse
(
xml
,
True
)
self
.
fail
()
except
expat
.
ExpatError
as
e
:
self
.
assertEquals
(
str
(
e
),
'no element found: line 2, column 1'
)
def
test2
(
self
):
xml
=
"<?xml version
\xc2\x85
='1.0'?>
\r\n
"
parser
=
expat
.
ParserCreate
()
try
:
parser
.
Parse
(
xml
,
True
)
self
.
fail
()
except
expat
.
ExpatError
as
e
:
self
.
assertEquals
(
str
(
e
),
'XML declaration not well-formed: line 1, column 14'
)
def
test_main
():
run_unittest
(
SetAttributeTest
,
...
...
@@ -520,7 +538,8 @@ def test_main():
HandlerExceptionTest
,
PositionTest
,
sf1296433Test
,
ChardataBufferTest
)
ChardataBufferTest
,
MalformedInputText
)
if
__name__
==
"__main__"
:
test_main
()
Misc/ACKS
Dosyayı görüntüle @
2f827389
...
...
@@ -184,6 +184,7 @@ Ismail Donmez
Dima Dorfman
Cesar Douady
Dean Draayer
Fred L. Drake, Jr.
John DuBois
Paul Dubois
Graham Dumpleton
...
...
@@ -372,7 +373,6 @@ Irmen de Jong
Lucas de Jonge
John Jorgensen
Jens B. Jorgensen
Fred L. Drake, Jr.
Andreas Jung
Tattoo Mabonzo K.
Bob Kahn
...
...
@@ -409,6 +409,7 @@ Holger Krekel
Michael Kremer
Fabian Kreutz
Hannu Krosing
Ivan Krstić
Andrew Kuchling
Vladimir Kushnir
Cameron Laird
...
...
Misc/NEWS
Dosyayı görüntüle @
2f827389
...
...
@@ -122,6 +122,8 @@ Library
Extension Modules
-----------------
- Fix a segfault that could be triggered by expat with specially formed input.
- Issue #6561: '\d' in a regex now matches only characters with
Unicode category 'Nd' (Number, Decimal Digit). Previously it also
matched characters with category 'No'.
...
...
Modules/expat/xmltok_impl.c
Dosyayı görüntüle @
2f827389
...
...
@@ -1741,7 +1741,7 @@ PREFIX(updatePosition)(const ENCODING *enc,
const
char
*
end
,
POSITION
*
pos
)
{
while
(
ptr
!=
end
)
{
while
(
ptr
<
end
)
{
switch
(
BYTE_TYPE
(
enc
,
ptr
))
{
#define LEAD_CASE(n) \
case BT_LEAD ## n: \
...
...
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