Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2f827389
Commit
2f827389
authored
Aug 13, 2009
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport of r77429. Not merged/blocked as svnmerge.py is not liking me right now.
parent
dffc1b89
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
3 deletions
+25
-3
Lib/test/test_pyexpat.py
Lib/test/test_pyexpat.py
+20
-1
Misc/ACKS
Misc/ACKS
+2
-1
Misc/NEWS
Misc/NEWS
+2
-0
Modules/expat/xmltok_impl.c
Modules/expat/xmltok_impl.c
+1
-1
No files found.
Lib/test/test_pyexpat.py
View file @
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
View file @
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
View file @
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
View file @
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