Accept PEP 465.

This commit is contained in:
Guido van Rossum 2014-04-07 15:41:42 -07:00
parent c7a4a5842f
commit b3bd7e7581
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ Title: A dedicated infix operator for matrix multiplication
Version: $Revision$
Last-Modified: $Date$
Author: Nathaniel J. Smith <njs@pobox.com>
Status: Draft
Status: Accepted
Type: Standards Track
Content-Type: text/x-rst
Created: 20-Feb-2014
@ -769,7 +769,7 @@ New functions ``operator.matmul`` and ``operator.__matmul__`` are
added to the standard library, with the usual semantics.
A corresponding function ``PyObject* PyObject_MatrixMultiply(PyObject
*o1, PyObject o2)`` is added to the C API.
*o1, PyObject *o2)`` is added to the C API.
A new AST node is added named ``MatMult``, along with a new token
``ATEQUAL`` and new bytecode opcodes ``BINARY_MATRIX_MULTIPLY`` and