-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Update Sre Engine Implementing to CPython 3.12 #5125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@qingshi163 can |
sure |
vm/Cargo.toml
Outdated
# to work on sre-engine locally or git version | ||
# sre-engine = { git = "https://github.com/RustPython/sre-engine", rev = "refs/pull/14/head" } | ||
sre-engine = { git = "https://github.com/RustPython/sre-engine", rev = "refs/pull/17/head" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am sorry to forget about this. update to recent release of sre-engine or import the source code here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move the repr to rustpython-sre-engine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am going to import sre_engine in #5202
@qingshi163 other clippy errors looks mostly false positive or trivial. But could you check if |
The loop of valued break is needed for performance issue, we just need to ignore the warning |
template_compile template_expand subx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove unused code blocks or add a TODO note to share why they are left as commented.
8000
Please revert the deletion once it is required |
RustPython/sre-engine#17