mirror of
https://github.com/python/cpython.git
synced 2025-08-25 03:04:55 +00:00
Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5
This commit is contained in:
commit
2eb819f7a8
86 changed files with 136 additions and 136 deletions
|
@ -258,7 +258,7 @@ class IncrementalDecoder(object):
|
|||
"""
|
||||
def __init__(self, errors='strict'):
|
||||
"""
|
||||
Create a IncrementalDecoder instance.
|
||||
Create an IncrementalDecoder instance.
|
||||
|
||||
The IncrementalDecoder may use different error handling schemes by
|
||||
providing the errors keyword argument. See the module docstring
|
||||
|
@ -1011,7 +1011,7 @@ def iterencode(iterator, encoding, errors='strict', **kwargs):
|
|||
"""
|
||||
Encoding iterator.
|
||||
|
||||
Encodes the input strings from the iterator using a IncrementalEncoder.
|
||||
Encodes the input strings from the iterator using an IncrementalEncoder.
|
||||
|
||||
errors and kwargs are passed through to the IncrementalEncoder
|
||||
constructor.
|
||||
|
@ -1029,7 +1029,7 @@ def iterdecode(iterator, encoding, errors='strict', **kwargs):
|
|||
"""
|
||||
Decoding iterator.
|
||||
|
||||
Decodes the input strings from the iterator using a IncrementalDecoder.
|
||||
Decodes the input strings from the iterator using an IncrementalDecoder.
|
||||
|
||||
errors and kwargs are passed through to the IncrementalDecoder
|
||||
constructor.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue