Skip to content

Commit 5237651

Browse files
committed
[GR-21590] Update imports.
PullRequest: graalpython/1846
2 parents 3d4d050 + 6ddd93b commit 5237651

File tree

9 files changed

+22
-4
lines changed

9 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ language runtime. The main focus is on user-observable behavior of the engine.
66
## Version 21.2.0
77

88
* Support the `dict` type properly in interop using the new hash interop messages.
9+
* Implement `_pickle` as a faster version than the pure Python version for GraalVM Enterprise Edition.
10+
* Support the newer multi-phase C extension module initialization.
11+
* Make many more tests pass: `io`, `crypt`, more functions in `socket`, `OrderedDict`, `time`,
12+
* Improve performance especially during warmup and in shared engine configurations by adding fast paths, intrinsifying functions, and adding optimized representations for common data structures
13+
* Update the supported HPy version to 0.0.2
14+
* Use the new Truffle safepoint mechanism for more efficient GIL releases, signal handlers, and weakref callbacks
15+
* Initial support for the `psutil` and `PyGame` packages
16+
* GraalPython not longer unconditionally creates `__pycache__` if the file name "sitecustomize.py" exists in the current working directory
917

1018
## Version 21.1.0
1119

ci.jsonnet

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

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/debug/PythonDebugTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ public void testReenterArgumentsAndValues() throws Throwable {
337337
}
338338

339339
@Test
340+
@SuppressWarnings("deprecation")
340341
public void testGettersSetters() throws Throwable {
341342
final Source source = Source.newBuilder("python", "" +
342343
"class GetterOnly:\n" +

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
*graalpython.lib-python.3.test.test_collections.TestNamedTuple.test_defaults
4545
*graalpython.lib-python.3.test.test_collections.TestNamedTuple.test_factory
4646
*graalpython.lib-python.3.test.test_collections.TestNamedTuple.test_factory_doc_attr
47+
*graalpython.lib-python.3.test.test_collections.TestNamedTuple.test_field_descriptor
4748
*graalpython.lib-python.3.test.test_collections.TestNamedTuple.test_field_doc
4849
*graalpython.lib-python.3.test.test_collections.TestNamedTuple.test_field_doc_reuse
4950
*graalpython.lib-python.3.test.test_collections.TestNamedTuple.test_instance

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@
126126
*graalpython.lib-python.3.test.test_descr.OperatorsTest.test_spam_lists
127127
*graalpython.lib-python.3.test.test_descr.OperatorsTest.test_wrap_lenfunc_bad_cast
128128
*graalpython.lib-python.3.test.test_descr.PTypesLongInitTest.test_pytype_long_ready
129+
*graalpython.lib-python.3.test.test_descr.PicklingTests.test_issue24097
129130
*graalpython.lib-python.3.test.test_descr.PicklingTests.test_pickle_slots
131+
*graalpython.lib-python.3.test.test_descr.PicklingTests.test_reduce
130132
*graalpython.lib-python.3.test.test_descr.PicklingTests.test_reduce_copying
131133
*graalpython.lib-python.3.test.test_descr.SharedKeyTests.test_subclasses

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@
197197
*test.pickletester.AbstractPickleTests.test_oob_buffers
198198
*test.pickletester.AbstractPickleTests.test_oob_buffers_writable_to_readonly
199199
*test.pickletester.AbstractPickleTests.test_picklebuffer_error
200+
*test.pickletester.AbstractPickleTests.test_unicode
201+
*test.pickletester.AbstractPickleTests.test_unicode_high_plane
200202
*test.pickletester.AbstractUnpickleTests.test_unpickle_module_race
201203
*test.pickletester.BigmemPickleTests.test_huge_bytes_32b
202204
*test.pickletester.BigmemPickleTests.test_huge_bytes_64b

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,5 @@
9898
*test.pickletester.AbstractPickleTests.test_oob_buffers
9999
*test.pickletester.AbstractPickleTests.test_oob_buffers_writable_to_readonly
100100
*test.pickletester.AbstractPickleTests.test_picklebuffer_error
101+
*test.pickletester.AbstractPickleTests.test_unicode
102+
*test.pickletester.AbstractPickleTests.test_unicode_high_plane

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@
195195
*graalpython.lib-python.3.test.test_zipfile.StoredTestsWithSourceFile.test_writing_errors
196196
*graalpython.lib-python.3.test.test_zipfile.StoredWriterTests.test_close_after_close
197197
*graalpython.lib-python.3.test.test_zipfile.StoredWriterTests.test_write_after_close
198+
*graalpython.lib-python.3.test.test_zipfile.TestExecutablePrependedZip.test_execute_zip2
199+
*graalpython.lib-python.3.test.test_zipfile.TestExecutablePrependedZip.test_execute_zip64
198200
*graalpython.lib-python.3.test.test_zipfile.TestExecutablePrependedZip.test_read_zip64_with_exe_prepended
199201
*graalpython.lib-python.3.test.test_zipfile.TestExecutablePrependedZip.test_read_zip_with_exe_prepended
200202
*graalpython.lib-python.3.test.test_zipfile.TestPath.test_dir_parent

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": "2fd04012e6fc1572ec513fcaa805deb772e953b8",
47+
"version": "a025343e983e972bc94f7fb3b82bafb21c5a19b3",
4848
"subdir": True,
4949
"urls": [
5050
{"url": "https://github.com/oracle/graal", "kind": "git"},
5151
],
5252
},
5353
{
5454
"name": "sulong",
55-
"version": "2fd04012e6fc1572ec513fcaa805deb772e953b8",
55+
"version": "a025343e983e972bc94f7fb3b82bafb21c5a19b3",
5656
"subdir": True,
5757
"urls": [
5858
{"url": "https://github.com/oracle/graal", "kind": "git"},
5959
]
6060
},
6161
{
6262
"name": "regex",
63-
"version": "2fd04012e6fc1572ec513fcaa805deb772e953b8",
63+
"version": "a025343e983e972bc94f7fb3b82bafb21c5a19b3",
6464
"subdir": True,
6565
"urls": [
6666
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)