| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
Caution Review failedThe pull request is closed. WalkthroughThe changes update string formatting throughout several modules, replacing positional formatting in Rust's format!, write!, and panic! macros with the newer named argument syntax. Additionally, a type cast in TryFrom<WideChar> for CodePoint was slightly modified, and a dependency override was added to a Cargo.toml file. No logic or control flow is altered; only the style of string interpolation and dependency sourcing is modernized or clarified. Changes
Suggested reviewers
Poem
📜 Recent review details Configuration used: CodeRabbit UI Reviewing files that changed from the base of the PR and between 5a2da9f and 6c561ac. 📒 Files selected for processing (13)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. ❤️ Share 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (.coderabbit.yaml)
Documentation and Community
|
Sorry, something went wrong.
There was a problem hiding this comment.
Actionable comments posted: 2
📜 Review detailsConfiguration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Reviewing files that changed from the base of the PR and between 0d492a6 and 13e33b6.
📒 Files selected for processing (7)Learnt from: CR PR: RustPython/RustPython#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-06-26T12:52:11.109Z Learning: Always use 'cargo fmt' to format Rust code and follow the default rustfmt code style when contributing to RustPython.
Learnt from: CR PR: RustPython/RustPython#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-06-26T12:52:11.109Z Learning: Minimize modifications to CPython standard library files in the Lib/ directory; bug fixes should be made through Rust code modifications whenever possible.
Learnt from: CR PR: RustPython/RustPython#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-06-26T12:52:11.109Z Learning: Minimize modifications to CPython standard library files in the Lib/ directory; bug fixes should be made through Rust code modifications whenever possible.
Learnt from: CR PR: RustPython/RustPython#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-06-26T12:52:11.109Z Learning: Follow Rust best practices for error handling and memory management in all RustPython Rust code.
Learnt from: CR PR: RustPython/RustPython#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-06-26T12:52:11.109Z Learning: Always use 'cargo fmt' to format Rust code and follow the default rustfmt code style when contributing to RustPython.
Learnt from: CR PR: RustPython/RustPython#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-06-26T12:52:11.109Z Learning: Follow Rust best practices for error handling and memory management in all RustPython Rust code.
Learnt from: CR PR: RustPython/RustPython#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-06-26T12:52:11.109Z Learning: Always use 'cargo fmt' to format Rust code and follow the default rustfmt code style when contributing to RustPython.
vm/src/builtins/genericalias.rs (1)391-393: LGTM: Modernized string formatting syntax.
The inline formatting {idx} is more concise and readable than the previous multi-line approach. This follows modern Rust idioms and addresses clippy suggestions.
stdlib/src/array.rs (1)604-604: LGTM: Improved type casting with inference.
Using as _ allows the compiler to infer the target type from the function signature, making the code more concise while maintaining the same functionality. This addresses clippy's suggestion for unnecessary explicit type annotation.
vm/src/stdlib/typing.rs (3)174-178: LGTM: Modernized TypeVar representation formatting.
The inline variable formatting ({name}) is more readable and concise than the previous positional argument style. This follows modern Rust formatting conventions while maintaining identical functionality.
741-741: LGTM: Improved TypeVarTuple formatting.
Using inline variable formatting improves readability and follows modern Rust idioms.
788-788: LGTM: Consistent ParamSpec formatting improvements.
Both ParamSpecArgs and ParamSpecKwargs now use the modern inline variable formatting syntax, making the code more consistent and readable across the typing module.
Also applies to: 867-867
vm/src/vm/vm_object.rs (1)23-23: LGTM! String formatting modernized correctly.
The panic messages have been appropriately updated to use inline variable interpolation syntax instead of positional formatting. This improves readability and addresses clippy warnings while maintaining identical functionality.
Also applies to: 41-41, 52-52
vm/src/stdlib/sys.rs (1)375-379: LGTM! Exception error formatting modernized.
The error message formatting has been correctly updated to use named parameter syntax. The {type_name} placeholder and {msg} interpolation improve code clarity while maintaining the same error output behavior.
vm/src/stdlib/functools.rs (1)289-292: LGTM! Repr formatting modernized with named parameters.
The repr_str method's string formatting has been appropriately updated to use named parameter syntax throughout. This improves code readability in the complex repr construction logic while maintaining identical output formatting.
Also applies to: 312-312, 319-322
vm/src/frame.rs (2)352-355: OK – purely stylistic change
The switch to named-argument formatting is correct and keeps behaviour intact.
1650-1651: Looks good – safer & clearer mapping validation
Using the named-argument style keeps the message intact and improves readability.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary by CodeRabbit