10000 Added call_or_unsupported to vm.rs by BojanKogoj · Pull Request #197 · RustPython/RustPython · GitHub
[go: up one dir, main page]

Skip to content

Added call_or_unsupported to vm.rs #197

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

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removed empty space
  • Loading branch information
BojanKogoj committed Nov 16, 2018
commit 0da1f737776ae866f79c2b8da8587aedb944a79e
2 changes: 1 addition & 1 deletion vm/src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ impl VirtualMachine {
/// Given the above example, it will
/// 1. Try to call `__and__` with `a` and `b`
/// 2. If above fails try to call `__rand__` with `a` and `b`
/// 3. If above fails throw an exception:
/// 3. If above fails throw an exception:
/// `TypeError: Unsupported operand types for '&': 'float' and 'int'`
/// if `a` is of type float and `b` of type int
///
Expand Down
0