Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Port over code from #2364
Co-authored-by: Jeong YunWon <jeong@youknowone.org>
Co-authored-by: Rodrigo Oliveira <rodrigo.redcode@gmail.com>
Co-authored-by: Darley Barreto <darleybarreto@gmail.com>
Co-authored-by: Noah <33094578+coolreader18@users.noreply.github.com>
  • Loading branch information
5 people committed Jan 23, 2025
commit 70693d22cda9bd768b3e0461698ccf869d5cafe2
406 changes: 215 additions & 191 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cranelift-jit = "0.88.0"
cranelift-module = "0.88.0"

[dependencies.libffi]
version = "3.1.0"
version = "3.2.0"
features = ["system"]

[dev-dependencies]
Expand Down
7 changes: 7 additions & 0 deletions match_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Test match statement
x = 1
match x:
case 1:
print("one")
case 2:
print("two")
11 changes: 8 additions & 3 deletions vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,14 @@ unicode_names2 = { workspace = true }
# https://github.com/RustPython/RustPython/pull/832#discussion_r275428939
unicode-casing = "0.1.0"
# update version all at the same time
unic-ucd-bidi = "0.9.0"
unic-ucd-category = "0.9.0"
unic-ucd-ident = "0.9.0"
unic-ucd-bidi = "0.9.0"
unic-ucd-category = "0.9.0"
unic-ucd-ident = "0.9.0"

# ctypes
libloading = "0.8.6"
libffi = "3.2.0"
widestring = "1.1.0"

[target.'cfg(unix)'.dependencies]
rustix = { workspace = true }
Expand Down
Loading