Skip to content

Commit 8d46a3c

Browse files
committed
style fixes
1 parent 0baaf5c commit 8d46a3c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/statement/TryExceptNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public Object execute(VirtualFrame frame) {
6363
} catch (Throwable t) {
6464
if (!seenException) {
6565
CompilerDirectives.transferToInterpreterAndInvalidate();
66-
seenException = true;
66+
seenException = true;
6767
}
6868

6969
if (PythonOptions.getOption(getContext(), CatchAllExceptions)) {

scripts/py_unittests.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@
3535
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3636
# SOFTWARE.
3737

38+
#!/bin/bash
39+
3840
cd "$(dirname $0)"
3941
cd ..
4042
UNIT_TESTS_PATH="graalpython/lib-python/3/test/test_*.py"
4143
for TEST in ${UNIT_TESTS_PATH}
4244
do
43-
echo "-------------------------------------------------------------------------------"
45+
echo "----------------------------------------------------------------------"
4446
echo "running: ${TEST}"
4547
mx python3 ${TEST}
4648
done

0 commit comments

Comments
 (0)