File tree Expand file tree Collapse file tree 8 files changed +16
-8
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python Expand file tree Collapse file tree 8 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2022 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2014, Regents of the University of California
4
4
*
5
5
* All rights reserved.
50
50
import com .oracle .truffle .api .library .ExportMessage ;
51
51
import com .oracle .truffle .api .object .Shape ;
52
52
53
+ @ SuppressWarnings ("truffle-abstract-export" )
53
54
@ ExportLibrary (InteropLibrary .class )
54
55
@ ExportLibrary (PythonBufferAccessLibrary .class )
55
56
public final class PByteArray extends PBytesLike {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2021 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2014, Regents of the University of California
4
4
*
5
5
* All rights reserved.
40
40
import com .oracle .truffle .api .library .ExportMessage ;
41
41
import com .oracle .truffle .api .object .Shape ;
42
42
43
+ @ SuppressWarnings ("truffle-abstract-export" )
43
44
@ ExportLibrary (InteropLibrary .class )
44
45
@ ExportLibrary (PythonBufferAcquireLibrary .class )
45
46
public final class PBytes extends PBytesLike {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2022 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2014, Regents of the University of California
4
4
*
5
5
* All rights reserved.
43
43
44
44
import static com .oracle .graal .python .util .PythonUtils .toTruffleStringUncached ;
45
45
46
+ @ SuppressWarnings ("truffle-abstract-export" )
46
47
@ ExportLibrary (InteropLibrary .class )
47
48
public class PFloat extends PythonBuiltinObject {
48
49
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2022 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2013, Regents of the University of California
4
4
*
5
5
* All rights reserved.
51
51
import com .oracle .truffle .api .object .Shape ;
52
52
import com .oracle .truffle .api .profiles .ConditionProfile ;
53
53
54
+ @ SuppressWarnings ("truffle-abstract-export" )
54
55
@ ExportLibrary (InteropLibrary .class )
55
56
public final class PInt extends PythonBuiltinObject {
56
57
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2022 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2013, Regents of the University of California
4
4
*
5
5
* All rights reserved.
49
49
import com .oracle .truffle .api .object .Shape ;
50
50
import com .oracle .truffle .api .source .SourceSection ;
51
51
52
+ @ SuppressWarnings ("truffle-abstract-export" )
52
53
@ ExportLibrary (InteropLibrary .class )
53
54
public final class PList extends PSequence {
54
55
private final ListOrigin origin ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2022 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2013, Regents of the University of California
4
4
*
5
5
* All rights reserved.
47
47
import com .oracle .truffle .api .object .Shape ;
48
48
import com .oracle .truffle .api .strings .TruffleString ;
49
49
50
+ @ SuppressWarnings ("truffle-abstract-export" )
50
51
@ ExportLibrary (InteropLibrary .class )
51
52
public final class PString extends PSequence {
52
53
public static final HiddenKey INTERNED = new HiddenKey ("_interned" );
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2021 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2013, Regents of the University of California
4
4
*
5
5
* All rights reserved.
38
38
import com .oracle .truffle .api .library .ExportMessage ;
39
39
import com .oracle .truffle .api .object .Shape ;
40
40
41
+ @ SuppressWarnings ("truffle-abstract-export" )
41
42
@ ExportLibrary (InteropLibrary .class )
42
43
public final class PTuple extends PSequence {
43
44
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2022 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2017, 2023 , Oracle and/or its affiliates.
3
3
* Copyright (c) 2013, Regents of the University of California
4
4
*
5
5
* All rights reserved.
42
42
import com .oracle .truffle .api .library .ExportMessage ;
43
43
import com .oracle .truffle .api .object .Shape ;
44
44
45
+ @ SuppressWarnings ("truffle-abstract-export" )
45
46
@ ExportLibrary (InteropLibrary .class )
46
47
public abstract class PSequence extends PythonBuiltinObject {
47
48
You can’t perform that action at this time.
0 commit comments