Skip to content

Commit

Permalink
Merge pull request ipython#3850 from minrk/store_history
Browse files Browse the repository at this point in the history
add missing store_history key to Notebook execute_requests
  • Loading branch information
minrk committed Jul 31, 2013
2 parents d17bf27 + 7b5c6f5 commit 5b764d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion IPython/html/static/notebook/js/codecell.js
Expand Up @@ -252,7 +252,7 @@ var IPython = (function (IPython) {
'set_next_input': $.proxy(this._handle_set_next_input, this),
'input_request': $.proxy(this._handle_input_request, this)
};
var msg_id = this.kernel.execute(this.get_text(), callbacks, {silent: false});
var msg_id = this.kernel.execute(this.get_text(), callbacks, {silent: false, store_history: true});
};

/**
Expand Down
3 changes: 2 additions & 1 deletion IPython/html/static/notebook/js/tooltip.js
Expand Up @@ -135,7 +135,8 @@ var IPython = (function (IPython) {
'clear_output': empty,
'cell': cell
}, {
'silent': false
'silent': false,
'store_history': true
});
this.remove_and_cancel_tooltip();
}
Expand Down
1 change: 1 addition & 0 deletions IPython/html/static/services/kernels/js/kernel.js
Expand Up @@ -300,6 +300,7 @@ var IPython = (function (IPython) {
var content = {
code : code,
silent : true,
store_history : false,
user_variables : [],
user_expressions : {},
allow_stdin : false
Expand Down

0 comments on commit 5b764d3

Please sign in to comment.