Skip to content
Closed
Changes from all commits
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
8 changes: 1 addition & 7 deletions crates/ark/src/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1882,13 +1882,7 @@ impl RMain {
Stream::Stderr
};

// If active execution request is silent don't broadcast
// any output
if let Some(ref req) = r_main.active_request {
if req.request.silent {
return;
}
}
// No early return for silent requests anymore to match Python kernel behaviour.

if stream == Stream::Stdout && is_auto_printing() {
// If we are at top-level, we're handling visible output auto-printed by
Expand Down
Loading