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
89a5e032
Commit
89a5e032
authored
May 22, 2017
by
Xiang Zhang
Committed by
GitHub
May 22, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-30003: Fix handling escape characters in HZ codec (#1556)
parent
15033d14
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
13 deletions
+19
-13
Lib/test/test_codecencodings_cn.py
Lib/test/test_codecencodings_cn.py
+4
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/cjkcodecs/_codecs_cn.c
Modules/cjkcodecs/_codecs_cn.c
+12
-13
No files found.
Lib/test/test_codecencodings_cn.py
View file @
89a5e032
...
...
@@ -86,6 +86,10 @@ class Test_HZ(multibytecodec_support.TestBase, unittest.TestCase):
(
b'ab~{
\
x81
\
x81
\
x41
\
x44
~}cd'
,
'replace'
,
'ab
\
uFFFD
\
uFFFD
\
u804A
cd'
),
(
b'ab~{
\
x41
\
x44
~}cd'
,
'replace'
,
'ab
\
u804A
cd'
),
(
b"ab~{
\
x79
\
x79
\
x41
\
x44
~}cd"
,
"replace"
,
"ab
\
ufffd
\
ufffd
\
u804a
cd"
),
# issue 30003
(
'ab~cd'
,
'strict'
,
b'ab~~cd'
),
# escape ~
(
b'~{Dc~~:C~}'
,
'strict'
,
None
),
# ~~ only in ASCII mode
(
b'~{Dc~
\
n
:C~}'
,
'strict'
,
None
),
# ~\n only in ASCII mode
)
if
__name__
==
"__main__"
:
...
...
Misc/NEWS
View file @
89a5e032
...
...
@@ -334,6 +334,9 @@ Extension Modules
Library
-------
-
bpo
-
30003
:
Fix
handling
escape
characters
in
HZ
codec
.
Based
on
patch
by
Ma
Lin
.
-
bpo
-
30149
:
inspect
.
signature
()
now
supports
callables
with
variable
-
argument
parameters
wrapped
with
partialmethod
.
Patch
by
Dong
-
hee
Na
.
...
...
Modules/cjkcodecs/_codecs_cn.c
View file @
89a5e032
...
...
@@ -350,15 +350,17 @@ ENCODER(hz)
DBCHAR
code
;
if
(
c
<
0x80
)
{
if
(
state
->
i
==
0
)
{
WRITEBYTE1
((
unsigned
char
)
c
);
NEXT
(
1
,
1
);
}
else
{
WRITEBYTE3
(
'~'
,
'}'
,
(
unsigned
char
)
c
);
NEXT
(
1
,
3
);
if
(
state
->
i
)
{
WRITEBYTE2
(
'~'
,
'}'
);
NEXT_OUT
(
2
);
state
->
i
=
0
;
}
WRITEBYTE1
((
unsigned
char
)
c
);
NEXT
(
1
,
1
);
if
(
c
==
'~'
)
{
WRITEBYTE1
(
'~'
);
NEXT_OUT
(
1
);
}
continue
;
}
...
...
@@ -409,17 +411,14 @@ DECODER(hz)
unsigned
char
c2
=
INBYTE2
;
REQUIRE_INBUF
(
2
);
if
(
c2
==
'~'
)
{
if
(
c2
==
'~'
&&
state
->
i
==
0
)
OUTCHAR
(
'~'
);
NEXT_IN
(
2
);
continue
;
}
else
if
(
c2
==
'{'
&&
state
->
i
==
0
)
state
->
i
=
1
;
/* set GB */
else
if
(
c2
==
'\n'
&&
state
->
i
==
0
)
;
/* line-continuation */
else
if
(
c2
==
'}'
&&
state
->
i
==
1
)
state
->
i
=
0
;
/* set ASCII */
else
if
(
c2
==
'\n'
)
;
/* line-continuation */
else
return
1
;
NEXT_IN
(
2
);
...
...
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