|
1 | 1 | /* |
2 | | - * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 | 4 | * |
5 | 5 | * The Universal Permissive License (UPL), Version 1.0 |
@@ -52,7 +52,6 @@ PyCodeObject* PyCode_New(int argcount, int kwonlyargcount, |
52 | 52 | return UPCALL_CEXT_O(_jls_PyCode_New, argcount, kwonlyargcount, |
53 | 53 | nlocals, stacksize, flags, |
54 | 54 | native_to_java(code), native_to_java(consts), native_to_java(names), |
55 | | - native_to_java(varnames), native_to_java(freevars), native_to_java(cellvars), |
56 | | - native_to_java(filename), native_to_java(name), firstlineno, |
57 | | - native_to_java(lnotab)); |
| 55 | + native_to_java(varnames), native_to_java(filename), native_to_java(name), firstlineno, |
| 56 | + native_to_java(lnotab), native_to_java(freevars), native_to_java(cellvars)); |
58 | 57 | } |
0 commit comments