@@ -507,7 +507,7 @@ Object op5(Object a, Object b, @SuppressWarnings("unused") int op,
507507 }
508508 }
509509
510- @ Builtin (name = "PyType_Dict" , fixedNumOfArguments = 1 )
510+ @ Builtin (name = "PyType_Dict" , fixedNumOfPositionalArgs = 1 )
511511 @ GenerateNodeFactory
512512 abstract static class PyType_DictNode extends PythonBuiltinNode {
513513 @ Specialization
@@ -518,7 +518,7 @@ PHashingCollection getDict(PythonNativeClass object) {
518518 }
519519 }
520520
521- @ Builtin (name = "PyTruffle_SetAttr" , fixedNumOfArguments = 3 )
521+ @ Builtin (name = "PyTruffle_SetAttr" , fixedNumOfPositionalArgs = 3 )
522522 @ GenerateNodeFactory
523523 abstract static class PyObject_Setattr extends PythonBuiltinNode {
524524 @ Specialization
@@ -1378,7 +1378,7 @@ private static void addToSet(PythonClass base, PythonClass value) {
13781378 }
13791379 }
13801380
1381- @ Builtin (name = "PyTruffle_GetSetDescriptor" , fixedNumOfArguments = 0 , keywordArguments = {"fget" , "fset" , "name" , "owner" })
1381+ @ Builtin (name = "PyTruffle_GetSetDescriptor" , keywordArguments = {"fget" , "fset" , "name" , "owner" })
13821382 @ GenerateNodeFactory
13831383 public abstract static class GetSetDescriptorNode extends PythonBuiltinNode {
13841384 @ Specialization
@@ -1397,7 +1397,7 @@ Object call(@SuppressWarnings("unused") PNone get, PythonCallable set, String na
13971397 }
13981398 }
13991399
1400- @ Builtin (name = "PyTruffle_SeqIter_New" , fixedNumOfArguments = 1 )
1400+ @ Builtin (name = "PyTruffle_SeqIter_New" , fixedNumOfPositionalArgs = 1 )
14011401 @ GenerateNodeFactory
14021402 public abstract static class SeqIterNewNode extends PythonBuiltinNode {
14031403 @ Specialization
@@ -1406,7 +1406,7 @@ PSequenceIterator call(Object seq) {
14061406 }
14071407 }
14081408
1409- @ Builtin (name = "PyTruffle_BuiltinMethod" , fixedNumOfArguments = 2 )
1409+ @ Builtin (name = "PyTruffle_BuiltinMethod" , fixedNumOfPositionalArgs = 2 )
14101410 @ GenerateNodeFactory
14111411 public abstract static class BuiltinMethodNode extends PythonBuiltinNode {
14121412 @ Specialization
@@ -1534,7 +1534,7 @@ public Object execute(VirtualFrame frame) {
15341534 }
15351535 }
15361536
1537- @ Builtin (name = "METH_KEYWORDS" , fixedNumOfArguments = 1 )
1537+ @ Builtin (name = "METH_KEYWORDS" , fixedNumOfPositionalArgs = 1 )
15381538 @ GenerateNodeFactory
15391539 public abstract static class MethKeywordsNode extends PythonUnaryBuiltinNode {
15401540 @ TruffleBoundary
@@ -1545,7 +1545,7 @@ Object call(PBuiltinFunction function) {
15451545 }
15461546 }
15471547
1548- @ Builtin (name = "METH_VARARGS" , fixedNumOfArguments = 1 )
1548+ @ Builtin (name = "METH_VARARGS" , fixedNumOfPositionalArgs = 1 )
15491549 @ GenerateNodeFactory
15501550 public abstract static class MethVarargsNode extends PythonUnaryBuiltinNode {
15511551 @ TruffleBoundary
@@ -1556,7 +1556,7 @@ Object call(PBuiltinFunction function) {
15561556 }
15571557 }
15581558
1559- @ Builtin (name = "METH_NOARGS" , fixedNumOfArguments = 1 )
1559+ @ Builtin (name = "METH_NOARGS" , fixedNumOfPositionalArgs = 1 )
15601560 @ GenerateNodeFactory
15611561 public abstract static class MethNoargsNode extends PythonUnaryBuiltinNode {
15621562 @ TruffleBoundary
@@ -1567,7 +1567,7 @@ Object call(PBuiltinFunction function) {
15671567 }
15681568 }
15691569
1570- @ Builtin (name = "METH_O" , fixedNumOfArguments = 1 )
1570+ @ Builtin (name = "METH_O" , fixedNumOfPositionalArgs = 1 )
15711571 @ GenerateNodeFactory
15721572 public abstract static class MethONode extends PythonUnaryBuiltinNode {
15731573 @ TruffleBoundary
@@ -1578,7 +1578,7 @@ Object call(PBuiltinFunction function) {
15781578 }
15791579 }
15801580
1581- @ Builtin (name = "METH_FASTCALL" , fixedNumOfArguments = 1 )
1581+ @ Builtin (name = "METH_FASTCALL" , fixedNumOfPositionalArgs = 1 )
15821582 @ GenerateNodeFactory
15831583 public abstract static class MethFastcallNode extends PythonUnaryBuiltinNode {
15841584 @ TruffleBoundary
0 commit comments