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
695f07b2
Commit
695f07b2
authored
Nov 10, 2013
by
Andrew Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some PEP8-formatting problems in the generated code
parent
77796e4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
Tools/unicode/gencodec.py
Tools/unicode/gencodec.py
+9
-9
No files found.
Tools/unicode/gencodec.py
View file @
695f07b2
...
@@ -290,27 +290,27 @@ import codecs
...
@@ -290,27 +290,27 @@ import codecs
class Codec(codecs.Codec):
class Codec(codecs.Codec):
def encode(self,
input,
errors='strict'):
def encode(self,
input,
errors='strict'):
return codecs.charmap_encode(input,
errors,
encoding_%s)
return codecs.charmap_encode(input,
errors,
encoding_%s)
def decode(self,
input,
errors='strict'):
def decode(self,
input,
errors='strict'):
return codecs.charmap_decode(input,
errors,
decoding_%s)
return codecs.charmap_decode(input,
errors,
decoding_%s)
'''
%
(
encodingname
,
name
,
suffix
,
suffix
)]
'''
%
(
encodingname
,
name
,
suffix
,
suffix
)]
l
.
append
(
'''
\
l
.
append
(
'''
\
class IncrementalEncoder(codecs.IncrementalEncoder):
class IncrementalEncoder(codecs.IncrementalEncoder):
def encode(self, input, final=False):
def encode(self, input, final=False):
return codecs.charmap_encode(input,
self.errors,
encoding_%s)[0]
return codecs.charmap_encode(input,
self.errors,
encoding_%s)[0]
class IncrementalDecoder(codecs.IncrementalDecoder):
class IncrementalDecoder(codecs.IncrementalDecoder):
def decode(self, input, final=False):
def decode(self, input, final=False):
return codecs.charmap_decode(input,
self.errors,
decoding_%s)[0]'''
%
return codecs.charmap_decode(input,
self.errors,
decoding_%s)[0]'''
%
(
suffix
,
suffix
))
(
suffix
,
suffix
))
l
.
append
(
'''
l
.
append
(
'''
class StreamWriter(Codec,codecs.StreamWriter):
class StreamWriter(Codec,
codecs.StreamWriter):
pass
pass
class StreamReader(Codec,codecs.StreamReader):
class StreamReader(Codec,
codecs.StreamReader):
pass
pass
### encodings module API
### encodings module API
...
@@ -343,7 +343,7 @@ def getregentry():
...
@@ -343,7 +343,7 @@ def getregentry():
if
decoding_table_code
:
if
decoding_table_code
:
l
.
append
(
'''
l
.
append
(
'''
### Encoding table
### Encoding table
encoding_table
=
codecs.charmap_build(decoding_table)
encoding_table
=
codecs.charmap_build(decoding_table)
'''
)
'''
)
else
:
else
:
l
.
append
(
'''
l
.
append
(
'''
...
...
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