@@ -2341,9 +2341,9 @@ public abstract static class CodeTypeNode extends PythonBuiltinNode {
2341
2341
Object call (PythonClass cls , int argcount , int kwonlyargcount ,
2342
2342
int nlocals , int stacksize , int flags ,
2343
2343
String codestring , PTuple constants , PTuple names ,
2344
- PTuple varnames , PTuple freevars , PTuple cellvars ,
2345
- Object filename , Object name , int firstlineno ,
2346
- String lnotab ) {
2344
+ PTuple varnames , Object filename , Object name ,
2345
+ int firstlineno , String lnotab ,
2346
+ PTuple freevars , PTuple cellvars ) {
2347
2347
return factory ().createCode (cls , argcount , kwonlyargcount ,
2348
2348
nlocals , stacksize , flags ,
2349
2349
toBytes (codestring ), constants .getArray (), names .getArray (),
@@ -2356,9 +2356,9 @@ Object call(PythonClass cls, int argcount, int kwonlyargcount,
2356
2356
Object call (PythonClass cls , int argcount , int kwonlyargcount ,
2357
2357
int nlocals , int stacksize , int flags ,
2358
2358
PBytes codestring , PTuple constants , PTuple names ,
2359
- PTuple varnames , PTuple freevars , PTuple cellvars ,
2360
- Object filename , Object name , int firstlineno ,
2361
- PBytes lnotab ,
2359
+ PTuple varnames , Object filename , Object name ,
2360
+ int firstlineno , PBytes lnotab ,
2361
+ PTuple freevars , PTuple cellvars ,
2362
2362
@ Cached ("create()" ) SequenceStorageNodes .ToByteArrayNode toByteArrayNode ) {
2363
2363
byte [] codeBytes = toByteArrayNode .execute (codestring .getSequenceStorage ());
2364
2364
byte [] lnotabBytes = toByteArrayNode .execute (lnotab .getSequenceStorage ());
@@ -2376,9 +2376,9 @@ Object call(PythonClass cls, int argcount, int kwonlyargcount,
2376
2376
Object call (Object cls , Object argcount , Object kwonlyargcount ,
2377
2377
Object nlocals , Object stacksize , Object flags ,
2378
2378
Object codestring , Object constants , Object names ,
2379
- Object varnames , Object freevars , Object cellvars ,
2380
- Object filename , Object name , Object firstlineno ,
2381
- Object lnotab ) {
2379
+ Object varnames , Object filename , Object name ,
2380
+ Object firstlineno , Object lnotab ,
2381
+ Object freevars , Object cellvars ) {
2382
2382
throw raise (SystemError , "bad argument to internal function" );
2383
2383
}
2384
2384
0 commit comments