Skip to content

Commit 6f6484d

Browse files
committed
[GR-21590] Update imports
PullRequest: graalpython/1381
2 parents c4c1575 + d3fb002 commit 6f6484d

File tree

6 files changed

+7
-10
lines changed

6 files changed

+7
-10
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "cde0760728616ed04bef0f4a44ab2454efd457eb" }
1+
{ "overlay": "cab21eea110ff0c8555175bb985ff6dbc710a4fc" }

graalpython/com.oracle.graal.python.test/src/tests/unittest_tags/test_compile.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
*graalpython.lib-python.3.test.test_compile.TestSpecifics.test_peephole_opt_unreachable_code_array_access_in_bounds
2828
*graalpython.lib-python.3.test.test_compile.TestSpecifics.test_same_filename_used
2929
*graalpython.lib-python.3.test.test_compile.TestSpecifics.test_sequence_unpacking_error
30+
*graalpython.lib-python.3.test.test_compile.TestSpecifics.test_single_statement
3031
*graalpython.lib-python.3.test.test_compile.TestSpecifics.test_stack_overflow
3132
*graalpython.lib-python.3.test.test_compile.TestSpecifics.test_subscripts
3233
*graalpython.lib-python.3.test.test_compile.TestSpecifics.test_syntax_error
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*graalpython.lib-python.3.test.test_metaclass.TestMain.test_main

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/PythonBuiltinClassType.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,6 @@ public final Shape getInstanceShape(PythonLanguage lang) {
281281
return lang.getBuiltinTypeInstanceShape(this);
282282
}
283283

284-
public final Shape getInstanceShape() {
285-
CompilerDirectives.bailout("slow path operation");
286-
return PythonLanguage.getCurrent().getBuiltinTypeInstanceShape(this);
287-
}
288-
289284
@CompilationFinal(dimensions = 1) public static final PythonBuiltinClassType[] VALUES = Arrays.copyOf(values(), values().length - 1);
290285
@CompilationFinal(dimensions = 1) public static final PythonBuiltinClassType[] EXCEPTIONS;
291286

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def punittest(ars):
213213
# test leaks with shared engine Python code only
214214
run_leak_launcher(common_args + ["--shared-engine", "--code", "pass"]),
215215
# test leaks with shared engine when some C module code is involved
216-
# run_leak_launcher(common_args + ["--shared-engine", "--code", "import _testcapi, mmap, bz2; print(memoryview(b'').nbytes)"])
216+
run_leak_launcher(common_args + ["--shared-engine", "--code", "import _testcapi, mmap, bz2; print(memoryview(b'').nbytes)"])
217217
]):
218218
mx.abort(1)
219219

mx.graalpython/suite.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,23 @@
4444
},
4545
{
4646
"name": "tools",
47-
"version": "b9e9b3fbe03a922a778269d84a3545586b235d84",
47+
"version": "9f933e8eb617b6ed79fcb9d8114a8a771afff1d3",
4848
"subdir": True,
4949
"urls": [
5050
{"url": "https://github.com/oracle/graal", "kind": "git"},
5151
],
5252
},
5353
{
5454
"name": "sulong",
55-
"version": "b9e9b3fbe03a922a778269d84a3545586b235d84",
55+
"version": "9f933e8eb617b6ed79fcb9d8114a8a771afff1d3",
5656
"subdir": True,
5757
"urls": [
5858
{"url": "https://github.com/oracle/graal", "kind": "git"},
5959
]
6060
},
6161
{
6262
"name": "regex",
63-
"version": "b9e9b3fbe03a922a778269d84a3545586b235d84",
63+
"version": "9f933e8eb617b6ed79fcb9d8114a8a771afff1d3",
6464
"subdir": True,
6565
"urls": [
6666
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)