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
6c0929b2
Commit
6c0929b2
authored
Jul 09, 2011
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix markup and remove character unsupported by latex in 3.3 whatsnew doc.
parent
f514e61f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Doc/whatsnew/3.3.rst
Doc/whatsnew/3.3.rst
+6
-6
No files found.
Doc/whatsnew/3.3.rst
View file @
6c0929b2
...
...
@@ -72,13 +72,13 @@ codecs
------
Multibyte CJK decoders now resynchronize faster. They only ignore the first
byte of an invalid byte sequence. For example, b'\xff\n'.decode('gb2312',
'replace')
gives '�\n' instead of '�'
.
byte of an invalid byte sequence. For example,
``
b'\xff\n'.decode('gb2312',
'replace')
`` now returns a ``\n`` after the replacement character
.
(
http://bugs.python.org/issue12016
)
(
:issue:`12016`
)
Don't reset incremental encoders of CJK codecs at each call to their encode()
method anymore. For example:
:
:
method anymore. For example::
$ ./python -q
>>> import codecs
...
...
@@ -86,10 +86,10 @@ method anymore. For example: ::
>>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
b'~{NpJ)l6HK!#~} Bye.'
This example gives
b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'
with older Python
This example gives
``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'``
with older Python
versions.
(
http://bugs.python.org/issue12100
)
(
:issue:`12100`
)
faulthandler
------------
...
...
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