pep-467: update version info, correct status
This commit is contained in:
parent
f62b99f456
commit
9648b1b0b9
15
pep-0467.txt
15
pep-0467.txt
|
@ -3,11 +3,11 @@ Title: Minor API improvements for binary sequences
|
|||
Version: $Revision$
|
||||
Last-Modified: $Date$
|
||||
Author: Nick Coghlan <ncoghlan@gmail.com>, Ethan Furman <ethan@stoneleaf.us>
|
||||
Status: Deferred
|
||||
Status: Draft
|
||||
Type: Standards Track
|
||||
Content-Type: text/x-rst
|
||||
Created: 30-Mar-2014
|
||||
Python-Version: 3.9
|
||||
Python-Version: 3.10
|
||||
Post-History: 2014-03-30 2014-08-15 2014-08-16 2016-06-07 2016-09-01 2021-04-13
|
||||
|
||||
|
||||
|
@ -33,14 +33,6 @@ And one built-in::
|
|||
|
||||
* ``bchr``
|
||||
|
||||
PEP Deferral
|
||||
============
|
||||
|
||||
This PEP has been deferred until Python 3.9 at the earliest, as the open
|
||||
questions aren't currently expected to be resolved in time for the Python 3.8
|
||||
feature addition deadline in May 2019 (if you're keen to see these changes
|
||||
implemented and are willing to drive that resolution process, contact the PEP
|
||||
authors).
|
||||
|
||||
Proposals
|
||||
=========
|
||||
|
@ -123,8 +115,7 @@ These methods will only accept integers in the range 0 to 255 (inclusive)::
|
|||
While this does create some duplication, there are valid reasons for it:
|
||||
|
||||
* the ``bchr`` builtin is to recreate the ``ord``/``chr``/``unichr`` trio from
|
||||
Python 2 under a different naming scheme (however, see the Open Questions
|
||||
section below)
|
||||
Python 2 under a different naming scheme
|
||||
* the class method is mainly for the ``bytearray.fromord`` case, with
|
||||
``bytes.fromord`` added for consistency
|
||||
|
||||
|
|
Loading…
Reference in New Issue