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/objects/exception/PBaseException.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -322,7 +322,7 @@ public LazyTraceback internalReifyException(PFrame.Reference curFrameInfo) {
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/traceback/MaterializeLazyTracebackNode.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
2
+
* Copyright (c) 2020, 2024, 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
@@ -71,7 +71,7 @@
71
71
* frames that the exception has passed through during the unwinding plus the frame where it was
72
72
* caught. It doesn't include the frames above it (to the top). Secondly, the traceback is never
73
73
* frozen. The traceback accumulates more frames when the exception gets reraised. To correct the
74
-
* mismatch between Truffle and Python eception handling, we need to wrap {@link PException}s in
74
+
* mismatch between Truffle and Python exception handling, we need to wrap {@link PException}s in
75
75
* {@link LazyTraceback} objects when caught and adhere to particular rules of exception handling
0 commit comments