diff options
author | Mark Shannon <mark@hotpy.org> | 2022-02-21 18:26:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 18:26:47 (GMT) |
commit | 59585d6b2ea50d7bc3a9b336da5bde61367f527c (patch) | |
tree | 582cbdf9fd0c4e3b3e19e3474154b1a252a97654 /Programs | |
parent | 0a222db2bca63070f429c0e613707da1bdfaf0e0 (diff) | |
download | cpython-59585d6b2ea50d7bc3a9b336da5bde61367f527c.zip cpython-59585d6b2ea50d7bc3a9b336da5bde61367f527c.tar.gz cpython-59585d6b2ea50d7bc3a9b336da5bde61367f527c.tar.bz2 |
bpo-46329: Streamline calling sequence a bit. (GH-31465)
* Move handling of bound-methods to PRECALL.
* Remove call_shape.postcall_shrink
* Remove call_shape.callable
* Remove call_shape.callable. Change CALL oparg to match PRECALL oparg.
* Move KW_NAMES before PRECALL.
* Update opcode docs in dis.rst
Diffstat (limited to 'Programs')
-rw-r--r-- | Programs/test_frozenmain.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Programs/test_frozenmain.h b/Programs/test_frozenmain.h index a7f6b60..11593a9 100644 --- a/Programs/test_frozenmain.h +++ b/Programs/test_frozenmain.h @@ -3,11 +3,11 @@ unsigned char M_test_frozenmain[] = { 227,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0, 0,0,0,0,0,115,104,0,0,0,151,0,100,0,100,1, 108,0,90,0,100,0,100,1,108,1,90,1,2,0,101,2, - 100,2,166,1,171,0,1,0,2,0,101,2,100,3,101,0, - 106,3,166,2,171,0,1,0,2,0,101,1,106,4,166,0, + 100,2,166,1,171,1,1,0,2,0,101,2,100,3,101,0, + 106,3,166,2,171,2,1,0,2,0,101,1,106,4,166,0, 171,0,100,4,25,0,90,5,100,5,68,0,93,16,90,6, 2,0,101,2,100,6,101,6,155,0,100,7,101,5,101,6, - 25,0,155,0,157,4,166,1,171,0,1,0,113,33,100,1, + 25,0,155,0,157,4,166,1,171,1,1,0,113,33,100,1, 83,0,41,8,233,0,0,0,0,78,122,18,70,114,111,122, 101,110,32,72,101,108,108,111,32,87,111,114,108,100,122,8, 115,121,115,46,97,114,103,118,218,6,99,111,110,102,105,103, |