You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/MarshalModuleBuiltins.java
+12-13Lines changed: 12 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2017, 2021, Oracle and/or its affiliates.
2
+
* Copyright (c) 2017, 2022, Oracle and/or its affiliates.
3
3
* Copyright (c) 2013, Regents of the University of California
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/cext/PythonCextBuiltins.java
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/buffer/PythonBufferAccessLibrary.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2
+
* Copyright (c) 2021, 2022, 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
@@ -100,7 +100,11 @@ public static void assertIsBuffer(Object receiver) {
100
100
101
101
/**
102
102
* Release the buffer. Equivalent of CPython's {@code PyBuffer_Release}, but must not be called
103
-
* multiple times on the same buffer.
103
+
* multiple times on the same buffer. If the caller has access to a VirtualFrame
104
+
* {@link #release(Object, VirtualFrame, PNodeWithRaiseAndIndirectCall)} or
0 commit comments