From bb386b9b8991d935dc1e6031bd66df534a1c29ed Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Sun, 14 Apr 2019 11:51:38 +0200 Subject: [PATCH] PEP 590: Add "Vectorcall" and "fastcall" keywords (#984) - Add "Vectorcall" to the PEP title to make it easier to reference - Mention "fastcall" in the abstract, for people familiar with the term --- pep-0590.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pep-0590.rst b/pep-0590.rst index 294799bd7..95fb27656 100644 --- a/pep-0590.rst +++ b/pep-0590.rst @@ -1,5 +1,5 @@ PEP: 590 -Title: A new calling convention for CPython +Title: Vectorcall: A new calling convention for CPython Author: Mark Shannon Status: Draft Type: Standards Track @@ -12,7 +12,7 @@ Abstract ======== This PEP introduces a new calling convention [1]_ for use by CPython and other software and tools in the CPython ecosystem. -The new calling convention is a formalisation and extension of a calling convention already used internally by CPython. +The new calling convention is a formalisation and extension of "fastcall", a calling convention already used internally by CPython. Rationale =========