id
int32
0
252k
repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
30,500
bokeh/bokeh
bokeh/document/document.py
Document.unhold
def unhold(self): ''' Turn off any active document hold and apply any collected events. Returns: None ''' # no-op if we are already no holding if self._hold is None: return self._hold = None events = list(self._held_events) self._held_events...
python
def unhold(self): ''' Turn off any active document hold and apply any collected events. Returns: None ''' # no-op if we are already no holding if self._hold is None: return self._hold = None events = list(self._held_events) self._held_events...
[ "def", "unhold", "(", "self", ")", ":", "# no-op if we are already no holding", "if", "self", ".", "_hold", "is", "None", ":", "return", "self", ".", "_hold", "=", "None", "events", "=", "list", "(", "self", ".", "_held_events", ")", "self", ".", "_held_ev...
Turn off any active document hold and apply any collected events. Returns: None
[ "Turn", "off", "any", "active", "document", "hold", "and", "apply", "any", "collected", "events", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L637-L652
30,501
bokeh/bokeh
bokeh/document/document.py
Document.on_change
def on_change(self, *callbacks): ''' Provide callbacks to invoke if the document or any Model reachable from its roots changes. ''' for callback in callbacks: if callback in self._callbacks: continue _check_callback(callback, ('event',)) self._call...
python
def on_change(self, *callbacks): ''' Provide callbacks to invoke if the document or any Model reachable from its roots changes. ''' for callback in callbacks: if callback in self._callbacks: continue _check_callback(callback, ('event',)) self._call...
[ "def", "on_change", "(", "self", ",", "*", "callbacks", ")", ":", "for", "callback", "in", "callbacks", ":", "if", "callback", "in", "self", ".", "_callbacks", ":", "continue", "_check_callback", "(", "callback", ",", "(", "'event'", ",", ")", ")", "self...
Provide callbacks to invoke if the document or any Model reachable from its roots changes.
[ "Provide", "callbacks", "to", "invoke", "if", "the", "document", "or", "any", "Model", "reachable", "from", "its", "roots", "changes", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L654-L665
30,502
bokeh/bokeh
bokeh/document/document.py
Document.on_session_destroyed
def on_session_destroyed(self, *callbacks): ''' Provide callbacks to invoke when the session serving the Document is destroyed ''' for callback in callbacks: _check_callback(callback, ('session_context',)) self._session_destroyed_callbacks.add(callback)
python
def on_session_destroyed(self, *callbacks): ''' Provide callbacks to invoke when the session serving the Document is destroyed ''' for callback in callbacks: _check_callback(callback, ('session_context',)) self._session_destroyed_callbacks.add(callback)
[ "def", "on_session_destroyed", "(", "self", ",", "*", "callbacks", ")", ":", "for", "callback", "in", "callbacks", ":", "_check_callback", "(", "callback", ",", "(", "'session_context'", ",", ")", ")", "self", ".", "_session_destroyed_callbacks", ".", "add", "...
Provide callbacks to invoke when the session serving the Document is destroyed
[ "Provide", "callbacks", "to", "invoke", "when", "the", "session", "serving", "the", "Document", "is", "destroyed" ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L671-L678
30,503
bokeh/bokeh
bokeh/document/document.py
Document.remove_root
def remove_root(self, model, setter=None): ''' Remove a model as root model from this Document. Changes to this model may still trigger ``on_change`` callbacks on this document, if the model is still referred to by other root models. Args: model (Model) : ...
python
def remove_root(self, model, setter=None): ''' Remove a model as root model from this Document. Changes to this model may still trigger ``on_change`` callbacks on this document, if the model is still referred to by other root models. Args: model (Model) : ...
[ "def", "remove_root", "(", "self", ",", "model", ",", "setter", "=", "None", ")", ":", "if", "model", "not", "in", "self", ".", "_roots", ":", "return", "# TODO (bev) ValueError?", "self", ".", "_push_all_models_freeze", "(", ")", "try", ":", "self", ".", ...
Remove a model as root model from this Document. Changes to this model may still trigger ``on_change`` callbacks on this document, if the model is still referred to by other root models. Args: model (Model) : The model to add as a root of this document. ...
[ "Remove", "a", "model", "as", "root", "model", "from", "this", "Document", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L720-L750
30,504
bokeh/bokeh
bokeh/document/document.py
Document.replace_with_json
def replace_with_json(self, json): ''' Overwrite everything in this document with the JSON-encoded document. json (JSON-data) : A JSON-encoded document to overwrite this one. Returns: None ''' replacement = self.from_json(json) replaceme...
python
def replace_with_json(self, json): ''' Overwrite everything in this document with the JSON-encoded document. json (JSON-data) : A JSON-encoded document to overwrite this one. Returns: None ''' replacement = self.from_json(json) replaceme...
[ "def", "replace_with_json", "(", "self", ",", "json", ")", ":", "replacement", "=", "self", ".", "from_json", "(", "json", ")", "replacement", ".", "_destructively_move", "(", "self", ")" ]
Overwrite everything in this document with the JSON-encoded document. json (JSON-data) : A JSON-encoded document to overwrite this one. Returns: None
[ "Overwrite", "everything", "in", "this", "document", "with", "the", "JSON", "-", "encoded", "document", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L767-L779
30,505
bokeh/bokeh
bokeh/document/document.py
Document.select
def select(self, selector): ''' Query this document for objects that match the given selector. Args: selector (JSON-like query dictionary) : you can query by type or by name, e.g. ``{"type": HoverTool}``, ``{"name": "mycircle"}`` Returns: seq[Model] ...
python
def select(self, selector): ''' Query this document for objects that match the given selector. Args: selector (JSON-like query dictionary) : you can query by type or by name, e.g. ``{"type": HoverTool}``, ``{"name": "mycircle"}`` Returns: seq[Model] ...
[ "def", "select", "(", "self", ",", "selector", ")", ":", "if", "self", ".", "_is_single_string_selector", "(", "selector", ",", "'name'", ")", ":", "# special-case optimization for by-name query", "return", "self", ".", "_all_models_by_name", ".", "get_all", "(", ...
Query this document for objects that match the given selector. Args: selector (JSON-like query dictionary) : you can query by type or by name, e.g. ``{"type": HoverTool}``, ``{"name": "mycircle"}`` Returns: seq[Model]
[ "Query", "this", "document", "for", "objects", "that", "match", "the", "given", "selector", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L781-L796
30,506
bokeh/bokeh
bokeh/document/document.py
Document.select_one
def select_one(self, selector): ''' Query this document for objects that match the given selector. Raises an error if more than one object is found. Returns single matching object, or None if nothing is found Args: selector (JSON-like query dictionary) : you can query by ty...
python
def select_one(self, selector): ''' Query this document for objects that match the given selector. Raises an error if more than one object is found. Returns single matching object, or None if nothing is found Args: selector (JSON-like query dictionary) : you can query by ty...
[ "def", "select_one", "(", "self", ",", "selector", ")", ":", "result", "=", "list", "(", "self", ".", "select", "(", "selector", ")", ")", "if", "len", "(", "result", ")", ">", "1", ":", "raise", "ValueError", "(", "\"Found more than one model matching %s:...
Query this document for objects that match the given selector. Raises an error if more than one object is found. Returns single matching object, or None if nothing is found Args: selector (JSON-like query dictionary) : you can query by type or by name, e.g. ``{"type...
[ "Query", "this", "document", "for", "objects", "that", "match", "the", "given", "selector", ".", "Raises", "an", "error", "if", "more", "than", "one", "object", "is", "found", ".", "Returns", "single", "matching", "object", "or", "None", "if", "nothing", "...
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L798-L816
30,507
bokeh/bokeh
bokeh/document/document.py
Document.to_json_string
def to_json_string(self, indent=None): ''' Convert the document to a JSON string. Args: indent (int or None, optional) : number of spaces to indent, or None to suppress all newlines and indentation (default: None) Returns: str ''' root_i...
python
def to_json_string(self, indent=None): ''' Convert the document to a JSON string. Args: indent (int or None, optional) : number of spaces to indent, or None to suppress all newlines and indentation (default: None) Returns: str ''' root_i...
[ "def", "to_json_string", "(", "self", ",", "indent", "=", "None", ")", ":", "root_ids", "=", "[", "]", "for", "r", "in", "self", ".", "_roots", ":", "root_ids", ".", "append", "(", "r", ".", "id", ")", "root_references", "=", "self", ".", "_all_model...
Convert the document to a JSON string. Args: indent (int or None, optional) : number of spaces to indent, or None to suppress all newlines and indentation (default: None) Returns: str
[ "Convert", "the", "document", "to", "a", "JSON", "string", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L848-L874
30,508
bokeh/bokeh
bokeh/document/document.py
Document.validate
def validate(self): ''' Perform integrity checks on the modes in this document. Returns: None ''' for r in self.roots: refs = r.references() check_integrity(refs)
python
def validate(self): ''' Perform integrity checks on the modes in this document. Returns: None ''' for r in self.roots: refs = r.references() check_integrity(refs)
[ "def", "validate", "(", "self", ")", ":", "for", "r", "in", "self", ".", "roots", ":", "refs", "=", "r", ".", "references", "(", ")", "check_integrity", "(", "refs", ")" ]
Perform integrity checks on the modes in this document. Returns: None
[ "Perform", "integrity", "checks", "on", "the", "modes", "in", "this", "document", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L876-L885
30,509
bokeh/bokeh
bokeh/document/document.py
Document._add_session_callback
def _add_session_callback(self, callback_obj, callback, one_shot, originator): ''' Internal implementation for adding session callbacks. Args: callback_obj (SessionCallback) : A session callback object that wraps a callable and is passed to ``trigger_on_chang...
python
def _add_session_callback(self, callback_obj, callback, one_shot, originator): ''' Internal implementation for adding session callbacks. Args: callback_obj (SessionCallback) : A session callback object that wraps a callable and is passed to ``trigger_on_chang...
[ "def", "_add_session_callback", "(", "self", ",", "callback_obj", ",", "callback", ",", "one_shot", ",", "originator", ")", ":", "if", "one_shot", ":", "@", "wraps", "(", "callback", ")", "def", "remove_then_invoke", "(", "*", "args", ",", "*", "*", "kwarg...
Internal implementation for adding session callbacks. Args: callback_obj (SessionCallback) : A session callback object that wraps a callable and is passed to ``trigger_on_change``. callback (callable) : A callable to execute when session ...
[ "Internal", "implementation", "for", "adding", "session", "callbacks", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L889-L928
30,510
bokeh/bokeh
bokeh/document/document.py
Document._destructively_move
def _destructively_move(self, dest_doc): ''' Move all data in this doc to the dest_doc, leaving this doc empty. Args: dest_doc (Document) : The Bokeh document to populate with data from this one Returns: None ''' if dest_doc is self: ...
python
def _destructively_move(self, dest_doc): ''' Move all data in this doc to the dest_doc, leaving this doc empty. Args: dest_doc (Document) : The Bokeh document to populate with data from this one Returns: None ''' if dest_doc is self: ...
[ "def", "_destructively_move", "(", "self", ",", "dest_doc", ")", ":", "if", "dest_doc", "is", "self", ":", "raise", "RuntimeError", "(", "\"Attempted to overwrite a document with itself\"", ")", "dest_doc", ".", "clear", "(", ")", "# we have to remove ALL roots before a...
Move all data in this doc to the dest_doc, leaving this doc empty. Args: dest_doc (Document) : The Bokeh document to populate with data from this one Returns: None
[ "Move", "all", "data", "in", "this", "doc", "to", "the", "dest_doc", "leaving", "this", "doc", "empty", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L930-L966
30,511
bokeh/bokeh
bokeh/document/document.py
Document._notify_change
def _notify_change(self, model, attr, old, new, hint=None, setter=None, callback_invoker=None): ''' Called by Model when it changes ''' # if name changes, update by-name index if attr == 'name': if old is not None: self._all_models_by_name.remove_value(old, m...
python
def _notify_change(self, model, attr, old, new, hint=None, setter=None, callback_invoker=None): ''' Called by Model when it changes ''' # if name changes, update by-name index if attr == 'name': if old is not None: self._all_models_by_name.remove_value(old, m...
[ "def", "_notify_change", "(", "self", ",", "model", ",", "attr", ",", "old", ",", "new", ",", "hint", "=", "None", ",", "setter", "=", "None", ",", "callback_invoker", "=", "None", ")", ":", "# if name changes, update by-name index", "if", "attr", "==", "'...
Called by Model when it changes
[ "Called", "by", "Model", "when", "it", "changes" ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L988-L1005
30,512
bokeh/bokeh
bokeh/document/document.py
Document._remove_session_callback
def _remove_session_callback(self, callback_obj, originator): ''' Remove a callback added earlier with ``add_periodic_callback``, ``add_timeout_callback``, or ``add_next_tick_callback``. Returns: None Raises: KeyError, if the callback was never added ''...
python
def _remove_session_callback(self, callback_obj, originator): ''' Remove a callback added earlier with ``add_periodic_callback``, ``add_timeout_callback``, or ``add_next_tick_callback``. Returns: None Raises: KeyError, if the callback was never added ''...
[ "def", "_remove_session_callback", "(", "self", ",", "callback_obj", ",", "originator", ")", ":", "try", ":", "callback_objs", "=", "[", "callback_obj", "]", "self", ".", "_session_callbacks", ".", "remove", "(", "callback_obj", ")", "for", "cb", ",", "cb_objs...
Remove a callback added earlier with ``add_periodic_callback``, ``add_timeout_callback``, or ``add_next_tick_callback``. Returns: None Raises: KeyError, if the callback was never added
[ "Remove", "a", "callback", "added", "earlier", "with", "add_periodic_callback", "add_timeout_callback", "or", "add_next_tick_callback", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/document/document.py#L1046-L1071
30,513
bokeh/bokeh
bokeh/util/callback_manager.py
_check_callback
def _check_callback(callback, fargs, what="Callback functions"): '''Bokeh-internal function to check callback signature''' sig = signature(callback) formatted_args = format_signature(sig) error_msg = what + " must have signature func(%s), got func%s" all_names, default_values = get_param_info(sig) ...
python
def _check_callback(callback, fargs, what="Callback functions"): '''Bokeh-internal function to check callback signature''' sig = signature(callback) formatted_args = format_signature(sig) error_msg = what + " must have signature func(%s), got func%s" all_names, default_values = get_param_info(sig) ...
[ "def", "_check_callback", "(", "callback", ",", "fargs", ",", "what", "=", "\"Callback functions\"", ")", ":", "sig", "=", "signature", "(", "callback", ")", "formatted_args", "=", "format_signature", "(", "sig", ")", "error_msg", "=", "what", "+", "\" must ha...
Bokeh-internal function to check callback signature
[ "Bokeh", "-", "internal", "function", "to", "check", "callback", "signature" ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/util/callback_manager.py#L178-L188
30,514
bokeh/bokeh
bokeh/util/callback_manager.py
PropertyCallbackManager.remove_on_change
def remove_on_change(self, attr, *callbacks): ''' Remove a callback from this object ''' if len(callbacks) == 0: raise ValueError("remove_on_change takes an attribute name and one or more callbacks, got only one parameter") _callbacks = self._callbacks.setdefault(attr, []) fo...
python
def remove_on_change(self, attr, *callbacks): ''' Remove a callback from this object ''' if len(callbacks) == 0: raise ValueError("remove_on_change takes an attribute name and one or more callbacks, got only one parameter") _callbacks = self._callbacks.setdefault(attr, []) fo...
[ "def", "remove_on_change", "(", "self", ",", "attr", ",", "*", "callbacks", ")", ":", "if", "len", "(", "callbacks", ")", "==", "0", ":", "raise", "ValueError", "(", "\"remove_on_change takes an attribute name and one or more callbacks, got only one parameter\"", ")", ...
Remove a callback from this object
[ "Remove", "a", "callback", "from", "this", "object" ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/util/callback_manager.py#L135-L141
30,515
bokeh/bokeh
bokeh/util/callback_manager.py
PropertyCallbackManager.trigger
def trigger(self, attr, old, new, hint=None, setter=None): ''' Trigger callbacks for ``attr`` on this object. Args: attr (str) : old (object) : new (object) : Returns: None ''' def invoke(): callbacks = self._callback...
python
def trigger(self, attr, old, new, hint=None, setter=None): ''' Trigger callbacks for ``attr`` on this object. Args: attr (str) : old (object) : new (object) : Returns: None ''' def invoke(): callbacks = self._callback...
[ "def", "trigger", "(", "self", ",", "attr", ",", "old", ",", "new", ",", "hint", "=", "None", ",", "setter", "=", "None", ")", ":", "def", "invoke", "(", ")", ":", "callbacks", "=", "self", ".", "_callbacks", ".", "get", "(", "attr", ")", "if", ...
Trigger callbacks for ``attr`` on this object. Args: attr (str) : old (object) : new (object) : Returns: None
[ "Trigger", "callbacks", "for", "attr", "on", "this", "object", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/util/callback_manager.py#L143-L163
30,516
bokeh/bokeh
bokeh/util/sampledata.py
download
def download(progress=True): ''' Download larger data sets for various Bokeh examples. ''' data_dir = external_data_dir(create=True) print("Using data directory: %s" % data_dir) s3 = 'https://bokeh-sampledata.s3.amazonaws.com' files = [ (s3, 'CGM.csv'), (s3, 'US_Counties.zip'),...
python
def download(progress=True): ''' Download larger data sets for various Bokeh examples. ''' data_dir = external_data_dir(create=True) print("Using data directory: %s" % data_dir) s3 = 'https://bokeh-sampledata.s3.amazonaws.com' files = [ (s3, 'CGM.csv'), (s3, 'US_Counties.zip'),...
[ "def", "download", "(", "progress", "=", "True", ")", ":", "data_dir", "=", "external_data_dir", "(", "create", "=", "True", ")", "print", "(", "\"Using data directory: %s\"", "%", "data_dir", ")", "s3", "=", "'https://bokeh-sampledata.s3.amazonaws.com'", "files", ...
Download larger data sets for various Bokeh examples.
[ "Download", "larger", "data", "sets", "for", "various", "Bokeh", "examples", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/util/sampledata.py#L49-L81
30,517
bokeh/bokeh
bokeh/command/bootstrap.py
main
def main(argv): ''' Execute the Bokeh command. Args: argv (seq[str]) : a list of command line arguments to process Returns: None The first item in ``argv`` is typically "bokeh", and the second should be the name of one of the available subcommands: * :ref:`html <bokeh.command...
python
def main(argv): ''' Execute the Bokeh command. Args: argv (seq[str]) : a list of command line arguments to process Returns: None The first item in ``argv`` is typically "bokeh", and the second should be the name of one of the available subcommands: * :ref:`html <bokeh.command...
[ "def", "main", "(", "argv", ")", ":", "if", "len", "(", "argv", ")", "==", "1", ":", "die", "(", "\"ERROR: Must specify subcommand, one of: %s\"", "%", "nice_join", "(", "x", ".", "name", "for", "x", "in", "subcommands", ".", "all", ")", ")", "parser", ...
Execute the Bokeh command. Args: argv (seq[str]) : a list of command line arguments to process Returns: None The first item in ``argv`` is typically "bokeh", and the second should be the name of one of the available subcommands: * :ref:`html <bokeh.command.subcommands.html>` ...
[ "Execute", "the", "Bokeh", "command", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/command/bootstrap.py#L69-L115
30,518
bokeh/bokeh
bokeh/io/showing.py
show
def show(obj, browser=None, new="tab", notebook_handle=False, notebook_url="localhost:8888", **kw): ''' Immediately display a Bokeh object or application. :func:`show` may be called multiple times in a single Jupyter notebook cell to display multiple objects. The objects are displayed in order. ...
python
def show(obj, browser=None, new="tab", notebook_handle=False, notebook_url="localhost:8888", **kw): ''' Immediately display a Bokeh object or application. :func:`show` may be called multiple times in a single Jupyter notebook cell to display multiple objects. The objects are displayed in order. ...
[ "def", "show", "(", "obj", ",", "browser", "=", "None", ",", "new", "=", "\"tab\"", ",", "notebook_handle", "=", "False", ",", "notebook_url", "=", "\"localhost:8888\"", ",", "*", "*", "kw", ")", ":", "state", "=", "curstate", "(", ")", "is_application",...
Immediately display a Bokeh object or application. :func:`show` may be called multiple times in a single Jupyter notebook cell to display multiple objects. The objects are displayed in order. Args: obj (LayoutDOM or Application or callable) : A Bokeh object to display. ...
[ "Immediately", "display", "a", "Bokeh", "object", "or", "application", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/io/showing.py#L46-L145
30,519
bokeh/bokeh
bokeh/embed/elements.py
html_page_for_render_items
def html_page_for_render_items(bundle, docs_json, render_items, title, template=None, template_variables={}): ''' Render an HTML page from a template and Bokeh render items. Args: bundle (tuple): a tuple containing (bokehjs, bokehcss) docs_json (JSON-like): Serialized B...
python
def html_page_for_render_items(bundle, docs_json, render_items, title, template=None, template_variables={}): ''' Render an HTML page from a template and Bokeh render items. Args: bundle (tuple): a tuple containing (bokehjs, bokehcss) docs_json (JSON-like): Serialized B...
[ "def", "html_page_for_render_items", "(", "bundle", ",", "docs_json", ",", "render_items", ",", "title", ",", "template", "=", "None", ",", "template_variables", "=", "{", "}", ")", ":", "if", "title", "is", "None", ":", "title", "=", "DEFAULT_TITLE", "bokeh...
Render an HTML page from a template and Bokeh render items. Args: bundle (tuple): a tuple containing (bokehjs, bokehcss) docs_json (JSON-like): Serialized Bokeh Document render_items (RenderItems) Specific items to render from the document and where ...
[ "Render", "an", "HTML", "page", "from", "a", "template", "and", "Bokeh", "render", "items", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/embed/elements.py#L68-L130
30,520
bokeh/bokeh
examples/app/stocks/download_sample_data.py
extract_hosted_zip
def extract_hosted_zip(data_url, save_dir, exclude_term=None): """Downloads, then extracts a zip file.""" zip_name = os.path.join(save_dir, 'temp.zip') # get the zip file try: print('Downloading %r to %r' % (data_url, zip_name)) zip_name, hdrs = urllib.request.urlretrieve(url=data_url,...
python
def extract_hosted_zip(data_url, save_dir, exclude_term=None): """Downloads, then extracts a zip file.""" zip_name = os.path.join(save_dir, 'temp.zip') # get the zip file try: print('Downloading %r to %r' % (data_url, zip_name)) zip_name, hdrs = urllib.request.urlretrieve(url=data_url,...
[ "def", "extract_hosted_zip", "(", "data_url", ",", "save_dir", ",", "exclude_term", "=", "None", ")", ":", "zip_name", "=", "os", ".", "path", ".", "join", "(", "save_dir", ",", "'temp.zip'", ")", "# get the zip file", "try", ":", "print", "(", "'Downloading...
Downloads, then extracts a zip file.
[ "Downloads", "then", "extracts", "a", "zip", "file", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/examples/app/stocks/download_sample_data.py#L7-L24
30,521
bokeh/bokeh
examples/app/stocks/download_sample_data.py
extract_zip
def extract_zip(zip_name, exclude_term=None): """Extracts a zip file to its containing directory.""" zip_dir = os.path.dirname(os.path.abspath(zip_name)) try: with zipfile.ZipFile(zip_name) as z: # write each zipped file out if it isn't a directory files = [zip_file for zi...
python
def extract_zip(zip_name, exclude_term=None): """Extracts a zip file to its containing directory.""" zip_dir = os.path.dirname(os.path.abspath(zip_name)) try: with zipfile.ZipFile(zip_name) as z: # write each zipped file out if it isn't a directory files = [zip_file for zi...
[ "def", "extract_zip", "(", "zip_name", ",", "exclude_term", "=", "None", ")", ":", "zip_dir", "=", "os", ".", "path", ".", "dirname", "(", "os", ".", "path", ".", "abspath", "(", "zip_name", ")", ")", "try", ":", "with", "zipfile", ".", "ZipFile", "(...
Extracts a zip file to its containing directory.
[ "Extracts", "a", "zip", "file", "to", "its", "containing", "directory", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/examples/app/stocks/download_sample_data.py#L27-L61
30,522
bokeh/bokeh
bokeh/models/widgets/sliders.py
DateRangeSlider.value_as_datetime
def value_as_datetime(self): ''' Convenience property to retrieve the value tuple as a tuple of datetime objects. ''' if self.value is None: return None v1, v2 = self.value if isinstance(v1, numbers.Number): d1 = datetime.utcfromtimestamp(v1 / 100...
python
def value_as_datetime(self): ''' Convenience property to retrieve the value tuple as a tuple of datetime objects. ''' if self.value is None: return None v1, v2 = self.value if isinstance(v1, numbers.Number): d1 = datetime.utcfromtimestamp(v1 / 100...
[ "def", "value_as_datetime", "(", "self", ")", ":", "if", "self", ".", "value", "is", "None", ":", "return", "None", "v1", ",", "v2", "=", "self", ".", "value", "if", "isinstance", "(", "v1", ",", "numbers", ".", "Number", ")", ":", "d1", "=", "date...
Convenience property to retrieve the value tuple as a tuple of datetime objects.
[ "Convenience", "property", "to", "retrieve", "the", "value", "tuple", "as", "a", "tuple", "of", "datetime", "objects", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/models/widgets/sliders.py#L182-L198
30,523
bokeh/bokeh
bokeh/models/widgets/sliders.py
DateRangeSlider.value_as_date
def value_as_date(self): ''' Convenience property to retrieve the value tuple as a tuple of date objects. Added in version 1.1 ''' if self.value is None: return None v1, v2 = self.value if isinstance(v1, numbers.Number): dt = datetime.utcf...
python
def value_as_date(self): ''' Convenience property to retrieve the value tuple as a tuple of date objects. Added in version 1.1 ''' if self.value is None: return None v1, v2 = self.value if isinstance(v1, numbers.Number): dt = datetime.utcf...
[ "def", "value_as_date", "(", "self", ")", ":", "if", "self", ".", "value", "is", "None", ":", "return", "None", "v1", ",", "v2", "=", "self", ".", "value", "if", "isinstance", "(", "v1", ",", "numbers", ".", "Number", ")", ":", "dt", "=", "datetime...
Convenience property to retrieve the value tuple as a tuple of date objects. Added in version 1.1
[ "Convenience", "property", "to", "retrieve", "the", "value", "tuple", "as", "a", "tuple", "of", "date", "objects", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/models/widgets/sliders.py#L201-L220
30,524
bokeh/bokeh
bokeh/application/handlers/directory.py
DirectoryHandler.modify_document
def modify_document(self, doc): ''' Execute the configured ``main.py`` or ``main.ipynb`` to modify the document. This method will also search the app directory for any theme or template files, and automatically configure the document with them if they are found. ''' ...
python
def modify_document(self, doc): ''' Execute the configured ``main.py`` or ``main.ipynb`` to modify the document. This method will also search the app directory for any theme or template files, and automatically configure the document with them if they are found. ''' ...
[ "def", "modify_document", "(", "self", ",", "doc", ")", ":", "if", "self", ".", "_lifecycle_handler", ".", "failed", ":", "return", "# Note: we do NOT copy self._theme, which assumes the Theme", "# class is immutable (has no setters)", "if", "self", ".", "_theme", "is", ...
Execute the configured ``main.py`` or ``main.ipynb`` to modify the document. This method will also search the app directory for any theme or template files, and automatically configure the document with them if they are found.
[ "Execute", "the", "configured", "main", ".", "py", "or", "main", ".", "ipynb", "to", "modify", "the", "document", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/application/handlers/directory.py#L173-L193
30,525
bokeh/bokeh
bokeh/plotting/figure.py
Figure.scatter
def scatter(self, *args, **kwargs): ''' Creates a scatter plot of the given x and y items. Args: x (str or seq[float]) : values or field names of center x coordinates y (str or seq[float]) : values or field names of center y coordinates size (str or list[float]) : ...
python
def scatter(self, *args, **kwargs): ''' Creates a scatter plot of the given x and y items. Args: x (str or seq[float]) : values or field names of center x coordinates y (str or seq[float]) : values or field names of center y coordinates size (str or list[float]) : ...
[ "def", "scatter", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "marker_type", "=", "kwargs", ".", "pop", "(", "\"marker\"", ",", "\"circle\"", ")", "if", "isinstance", "(", "marker_type", ",", "string_types", ")", "and", "marker_type...
Creates a scatter plot of the given x and y items. Args: x (str or seq[float]) : values or field names of center x coordinates y (str or seq[float]) : values or field names of center y coordinates size (str or list[float]) : values or field names of sizes in screen units ...
[ "Creates", "a", "scatter", "plot", "of", "the", "given", "x", "and", "y", "items", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L757-L801
30,526
bokeh/bokeh
bokeh/plotting/figure.py
Figure.hexbin
def hexbin(self, x, y, size, orientation="pointytop", palette="Viridis256", line_color=None, fill_color=None, aspect_scale=1, **kwargs): ''' Perform a simple equal-weight hexagonal binning. A :class:`~bokeh.models._glyphs.HexTile` glyph will be added to display the binning. The :class:`~bokeh.m...
python
def hexbin(self, x, y, size, orientation="pointytop", palette="Viridis256", line_color=None, fill_color=None, aspect_scale=1, **kwargs): ''' Perform a simple equal-weight hexagonal binning. A :class:`~bokeh.models._glyphs.HexTile` glyph will be added to display the binning. The :class:`~bokeh.m...
[ "def", "hexbin", "(", "self", ",", "x", ",", "y", ",", "size", ",", "orientation", "=", "\"pointytop\"", ",", "palette", "=", "\"Viridis256\"", ",", "line_color", "=", "None", ",", "fill_color", "=", "None", ",", "aspect_scale", "=", "1", ",", "*", "*"...
Perform a simple equal-weight hexagonal binning. A :class:`~bokeh.models._glyphs.HexTile` glyph will be added to display the binning. The :class:`~bokeh.models.sources.ColumnDataSource` for the glyph will have columns ``q``, ``r``, and ``count``, where ``q`` and ``r`` are `axial coordin...
[ "Perform", "a", "simple", "equal", "-", "weight", "hexagonal", "binning", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L803-L912
30,527
bokeh/bokeh
bokeh/plotting/figure.py
Figure.harea_stack
def harea_stack(self, stackers, **kw): ''' Generate multiple ``HArea`` renderers for levels stacked left to right. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``x1`` and ``x2`` harea coordinates. Additional...
python
def harea_stack(self, stackers, **kw): ''' Generate multiple ``HArea`` renderers for levels stacked left to right. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``x1`` and ``x2`` harea coordinates. Additional...
[ "def", "harea_stack", "(", "self", ",", "stackers", ",", "*", "*", "kw", ")", ":", "result", "=", "[", "]", "for", "kw", "in", "_double_stack", "(", "stackers", ",", "\"x1\"", ",", "\"x2\"", ",", "*", "*", "kw", ")", ":", "result", ".", "append", ...
Generate multiple ``HArea`` renderers for levels stacked left to right. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``x1`` and ``x2`` harea coordinates. Additionally, the ``name`` of the renderer will be set to ...
[ "Generate", "multiple", "HArea", "renderers", "for", "levels", "stacked", "left", "to", "right", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L914-L954
30,528
bokeh/bokeh
bokeh/plotting/figure.py
Figure.hbar_stack
def hbar_stack(self, stackers, **kw): ''' Generate multiple ``HBar`` renderers for levels stacked left to right. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``left`` and ``right`` bar coordinates. Additionally, the...
python
def hbar_stack(self, stackers, **kw): ''' Generate multiple ``HBar`` renderers for levels stacked left to right. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``left`` and ``right`` bar coordinates. Additionally, the...
[ "def", "hbar_stack", "(", "self", ",", "stackers", ",", "*", "*", "kw", ")", ":", "result", "=", "[", "]", "for", "kw", "in", "_double_stack", "(", "stackers", ",", "\"left\"", ",", "\"right\"", ",", "*", "*", "kw", ")", ":", "result", ".", "append...
Generate multiple ``HBar`` renderers for levels stacked left to right. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``left`` and ``right`` bar coordinates. Additionally, the ``name`` of the renderer will be set to ...
[ "Generate", "multiple", "HBar", "renderers", "for", "levels", "stacked", "left", "to", "right", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L956-L995
30,529
bokeh/bokeh
bokeh/plotting/figure.py
Figure.line_stack
def line_stack(self, x, y, **kw): ''' Generate multiple ``Line`` renderers for lines stacked vertically or horizontally. Args: x (seq[str]) : y (seq[str]) : Additionally, the ``name`` of the renderer will be set to the value of each successive stacker (...
python
def line_stack(self, x, y, **kw): ''' Generate multiple ``Line`` renderers for lines stacked vertically or horizontally. Args: x (seq[str]) : y (seq[str]) : Additionally, the ``name`` of the renderer will be set to the value of each successive stacker (...
[ "def", "line_stack", "(", "self", ",", "x", ",", "y", ",", "*", "*", "kw", ")", ":", "if", "all", "(", "isinstance", "(", "val", ",", "(", "list", ",", "tuple", ")", ")", "for", "val", "in", "(", "x", ",", "y", ")", ")", ":", "raise", "Valu...
Generate multiple ``Line`` renderers for lines stacked vertically or horizontally. Args: x (seq[str]) : y (seq[str]) : Additionally, the ``name`` of the renderer will be set to the value of each successive stacker (this is useful with the special hover ...
[ "Generate", "multiple", "Line", "renderers", "for", "lines", "stacked", "vertically", "or", "horizontally", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L997-L1053
30,530
bokeh/bokeh
bokeh/plotting/figure.py
Figure.varea_stack
def varea_stack(self, stackers, **kw): ''' Generate multiple ``VArea`` renderers for levels stacked bottom to top. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``y1`` and ``y1`` varea coordinates. Additional...
python
def varea_stack(self, stackers, **kw): ''' Generate multiple ``VArea`` renderers for levels stacked bottom to top. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``y1`` and ``y1`` varea coordinates. Additional...
[ "def", "varea_stack", "(", "self", ",", "stackers", ",", "*", "*", "kw", ")", ":", "result", "=", "[", "]", "for", "kw", "in", "_double_stack", "(", "stackers", ",", "\"y1\"", ",", "\"y2\"", ",", "*", "*", "kw", ")", ":", "result", ".", "append", ...
Generate multiple ``VArea`` renderers for levels stacked bottom to top. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``y1`` and ``y1`` varea coordinates. Additionally, the ``name`` of the renderer will be set to ...
[ "Generate", "multiple", "VArea", "renderers", "for", "levels", "stacked", "bottom", "to", "top", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L1055-L1095
30,531
bokeh/bokeh
bokeh/plotting/figure.py
Figure.vbar_stack
def vbar_stack(self, stackers, **kw): ''' Generate multiple ``VBar`` renderers for levels stacked bottom to top. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``left`` and ``right`` bar coordinates. Additiona...
python
def vbar_stack(self, stackers, **kw): ''' Generate multiple ``VBar`` renderers for levels stacked bottom to top. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``left`` and ``right`` bar coordinates. Additiona...
[ "def", "vbar_stack", "(", "self", ",", "stackers", ",", "*", "*", "kw", ")", ":", "result", "=", "[", "]", "for", "kw", "in", "_double_stack", "(", "stackers", ",", "\"bottom\"", ",", "\"top\"", ",", "*", "*", "kw", ")", ":", "result", ".", "append...
Generate multiple ``VBar`` renderers for levels stacked bottom to top. Args: stackers (seq[str]) : a list of data source field names to stack successively for ``left`` and ``right`` bar coordinates. Additionally, the ``name`` of the renderer will be set to ...
[ "Generate", "multiple", "VBar", "renderers", "for", "levels", "stacked", "bottom", "to", "top", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L1097-L1137
30,532
bokeh/bokeh
bokeh/plotting/figure.py
Figure.graph
def graph(self, node_source, edge_source, layout_provider, **kwargs): ''' Creates a network graph using the given node, edge and layout provider. Args: node_source (:class:`~bokeh.models.sources.ColumnDataSource`) : a user-supplied data source for the graph nodes. An attempt...
python
def graph(self, node_source, edge_source, layout_provider, **kwargs): ''' Creates a network graph using the given node, edge and layout provider. Args: node_source (:class:`~bokeh.models.sources.ColumnDataSource`) : a user-supplied data source for the graph nodes. An attempt...
[ "def", "graph", "(", "self", ",", "node_source", ",", "edge_source", ",", "layout_provider", ",", "*", "*", "kwargs", ")", ":", "kw", "=", "_graph", "(", "node_source", ",", "edge_source", ",", "*", "*", "kwargs", ")", "graph_renderer", "=", "GraphRenderer...
Creates a network graph using the given node, edge and layout provider. Args: node_source (:class:`~bokeh.models.sources.ColumnDataSource`) : a user-supplied data source for the graph nodes. An attempt will be made to convert the object to :class:`~bokeh.models.sourc...
[ "Creates", "a", "network", "graph", "using", "the", "given", "node", "edge", "and", "layout", "provider", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/plotting/figure.py#L1139-L1162
30,533
bokeh/bokeh
bokeh/core/property/validation.py
without_property_validation
def without_property_validation(input_function): ''' Turn off property validation during update callbacks Example: .. code-block:: python @without_property_validation def update(attr, old, new): # do things without validation See Also: :class:`~boke...
python
def without_property_validation(input_function): ''' Turn off property validation during update callbacks Example: .. code-block:: python @without_property_validation def update(attr, old, new): # do things without validation See Also: :class:`~boke...
[ "def", "without_property_validation", "(", "input_function", ")", ":", "@", "wraps", "(", "input_function", ")", "def", "func", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "with", "validate", "(", "False", ")", ":", "return", "input_function", "("...
Turn off property validation during update callbacks Example: .. code-block:: python @without_property_validation def update(attr, old, new): # do things without validation See Also: :class:`~bokeh.core.properties.validate`: context mangager for more fi...
[ "Turn", "off", "property", "validation", "during", "update", "callbacks" ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/core/property/validation.py#L80-L98
30,534
bokeh/bokeh
bokeh/core/templates.py
get_env
def get_env(): ''' Get the correct Jinja2 Environment, also for frozen scripts. ''' if getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS'): # PyInstaller uses _MEIPASS and only works with jinja2.FileSystemLoader templates_path = join(sys._MEIPASS, 'bokeh', 'core', '_templates') el...
python
def get_env(): ''' Get the correct Jinja2 Environment, also for frozen scripts. ''' if getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS'): # PyInstaller uses _MEIPASS and only works with jinja2.FileSystemLoader templates_path = join(sys._MEIPASS, 'bokeh', 'core', '_templates') el...
[ "def", "get_env", "(", ")", ":", "if", "getattr", "(", "sys", ",", "'frozen'", ",", "False", ")", "and", "hasattr", "(", "sys", ",", "'_MEIPASS'", ")", ":", "# PyInstaller uses _MEIPASS and only works with jinja2.FileSystemLoader", "templates_path", "=", "join", "...
Get the correct Jinja2 Environment, also for frozen scripts.
[ "Get", "the", "correct", "Jinja2", "Environment", "also", "for", "frozen", "scripts", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/core/templates.py#L72-L82
30,535
bokeh/bokeh
bokeh/server/protocol_handler.py
ProtocolHandler.handle
def handle(self, message, connection): ''' Delegate a received message to the appropriate handler. Args: message (Message) : The message that was receive that needs to be handled connection (ServerConnection) : The connection that received this m...
python
def handle(self, message, connection): ''' Delegate a received message to the appropriate handler. Args: message (Message) : The message that was receive that needs to be handled connection (ServerConnection) : The connection that received this m...
[ "def", "handle", "(", "self", ",", "message", ",", "connection", ")", ":", "handler", "=", "self", ".", "_handlers", ".", "get", "(", "(", "message", ".", "msgtype", ",", "message", ".", "revision", ")", ")", "if", "handler", "is", "None", ":", "hand...
Delegate a received message to the appropriate handler. Args: message (Message) : The message that was receive that needs to be handled connection (ServerConnection) : The connection that received this message Raises: ProtocolError
[ "Delegate", "a", "received", "message", "to", "the", "appropriate", "handler", "." ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/server/protocol_handler.py#L76-L105
30,536
bokeh/bokeh
bokeh/server/session.py
_needs_document_lock
def _needs_document_lock(func): '''Decorator that adds the necessary locking and post-processing to manipulate the session's document. Expects to decorate a method on ServerSession and transforms it into a coroutine if it wasn't already. ''' @gen.coroutine def _needs_document_lock_w...
python
def _needs_document_lock(func): '''Decorator that adds the necessary locking and post-processing to manipulate the session's document. Expects to decorate a method on ServerSession and transforms it into a coroutine if it wasn't already. ''' @gen.coroutine def _needs_document_lock_w...
[ "def", "_needs_document_lock", "(", "func", ")", ":", "@", "gen", ".", "coroutine", "def", "_needs_document_lock_wrapper", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "# while we wait for and hold the lock, prevent the session", "# from being dis...
Decorator that adds the necessary locking and post-processing to manipulate the session's document. Expects to decorate a method on ServerSession and transforms it into a coroutine if it wasn't already.
[ "Decorator", "that", "adds", "the", "necessary", "locking", "and", "post", "-", "processing", "to", "manipulate", "the", "session", "s", "document", ".", "Expects", "to", "decorate", "a", "method", "on", "ServerSession", "and", "transforms", "it", "into", "a",...
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/server/session.py#L47-L82
30,537
bokeh/bokeh
bokeh/server/session.py
ServerSession.unsubscribe
def unsubscribe(self, connection): """This should only be called by ``ServerConnection.unsubscribe_session`` or our book-keeping will be broken""" self._subscribed_connections.discard(connection) self._last_unsubscribe_time = current_time()
python
def unsubscribe(self, connection): """This should only be called by ``ServerConnection.unsubscribe_session`` or our book-keeping will be broken""" self._subscribed_connections.discard(connection) self._last_unsubscribe_time = current_time()
[ "def", "unsubscribe", "(", "self", ",", "connection", ")", ":", "self", ".", "_subscribed_connections", ".", "discard", "(", "connection", ")", "self", ".", "_last_unsubscribe_time", "=", "current_time", "(", ")" ]
This should only be called by ``ServerConnection.unsubscribe_session`` or our book-keeping will be broken
[ "This", "should", "only", "be", "called", "by", "ServerConnection", ".", "unsubscribe_session", "or", "our", "book", "-", "keeping", "will", "be", "broken" ]
dc8cf49e4e4302fd38537ad089ece81fbcca4737
https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/bokeh/server/session.py#L175-L178
30,538
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.set_cwd
def set_cwd(self, dirname): """Set shell current working directory.""" # Replace single for double backslashes on Windows if os.name == 'nt': dirname = dirname.replace(u"\\", u"\\\\") if not self.external_kernel: code = u"get_ipython().kernel.set_cwd(u'''{}''')"....
python
def set_cwd(self, dirname): """Set shell current working directory.""" # Replace single for double backslashes on Windows if os.name == 'nt': dirname = dirname.replace(u"\\", u"\\\\") if not self.external_kernel: code = u"get_ipython().kernel.set_cwd(u'''{}''')"....
[ "def", "set_cwd", "(", "self", ",", "dirname", ")", ":", "# Replace single for double backslashes on Windows", "if", "os", ".", "name", "==", "'nt'", ":", "dirname", "=", "dirname", ".", "replace", "(", "u\"\\\\\"", ",", "u\"\\\\\\\\\"", ")", "if", "not", "sel...
Set shell current working directory.
[ "Set", "shell", "current", "working", "directory", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L110-L122
30,539
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.set_bracket_matcher_color_scheme
def set_bracket_matcher_color_scheme(self, color_scheme): """Set color scheme for matched parentheses.""" bsh = sh.BaseSH(parent=self, color_scheme=color_scheme) mpcolor = bsh.get_matched_p_color() self._bracket_matcher.format.setBackground(mpcolor)
python
def set_bracket_matcher_color_scheme(self, color_scheme): """Set color scheme for matched parentheses.""" bsh = sh.BaseSH(parent=self, color_scheme=color_scheme) mpcolor = bsh.get_matched_p_color() self._bracket_matcher.format.setBackground(mpcolor)
[ "def", "set_bracket_matcher_color_scheme", "(", "self", ",", "color_scheme", ")", ":", "bsh", "=", "sh", ".", "BaseSH", "(", "parent", "=", "self", ",", "color_scheme", "=", "color_scheme", ")", "mpcolor", "=", "bsh", ".", "get_matched_p_color", "(", ")", "s...
Set color scheme for matched parentheses.
[ "Set", "color", "scheme", "for", "matched", "parentheses", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L136-L140
30,540
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.set_color_scheme
def set_color_scheme(self, color_scheme, reset=True): """Set color scheme of the shell.""" self.set_bracket_matcher_color_scheme(color_scheme) self.style_sheet, dark_color = create_qss_style(color_scheme) self.syntax_style = color_scheme self._style_sheet_changed() self._...
python
def set_color_scheme(self, color_scheme, reset=True): """Set color scheme of the shell.""" self.set_bracket_matcher_color_scheme(color_scheme) self.style_sheet, dark_color = create_qss_style(color_scheme) self.syntax_style = color_scheme self._style_sheet_changed() self._...
[ "def", "set_color_scheme", "(", "self", ",", "color_scheme", ",", "reset", "=", "True", ")", ":", "self", ".", "set_bracket_matcher_color_scheme", "(", "color_scheme", ")", "self", ".", "style_sheet", ",", "dark_color", "=", "create_qss_style", "(", "color_scheme"...
Set color scheme of the shell.
[ "Set", "color", "scheme", "of", "the", "shell", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L142-L154
30,541
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.long_banner
def long_banner(self): """Banner for IPython widgets with pylab message""" # Default banner try: from IPython.core.usage import quick_guide except Exception: quick_guide = '' banner_parts = [ 'Python %s\n' % self.interpreter_versions['python_ve...
python
def long_banner(self): """Banner for IPython widgets with pylab message""" # Default banner try: from IPython.core.usage import quick_guide except Exception: quick_guide = '' banner_parts = [ 'Python %s\n' % self.interpreter_versions['python_ve...
[ "def", "long_banner", "(", "self", ")", ":", "# Default banner", "try", ":", "from", "IPython", ".", "core", ".", "usage", "import", "quick_guide", "except", "Exception", ":", "quick_guide", "=", "''", "banner_parts", "=", "[", "'Python %s\\n'", "%", "self", ...
Banner for IPython widgets with pylab message
[ "Banner", "for", "IPython", "widgets", "with", "pylab", "message" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L173-L217
30,542
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.reset_namespace
def reset_namespace(self, warning=False, message=False): """Reset the namespace by removing all names defined by the user.""" reset_str = _("Remove all variables") warn_str = _("All user-defined variables will be removed. " "Are you sure you want to proceed?") kernel...
python
def reset_namespace(self, warning=False, message=False): """Reset the namespace by removing all names defined by the user.""" reset_str = _("Remove all variables") warn_str = _("All user-defined variables will be removed. " "Are you sure you want to proceed?") kernel...
[ "def", "reset_namespace", "(", "self", ",", "warning", "=", "False", ",", "message", "=", "False", ")", ":", "reset_str", "=", "_", "(", "\"Remove all variables\"", ")", "warn_str", "=", "_", "(", "\"All user-defined variables will be removed. \"", "\"Are you sure y...
Reset the namespace by removing all names defined by the user.
[ "Reset", "the", "namespace", "by", "removing", "all", "names", "defined", "by", "the", "user", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L237-L294
30,543
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.create_shortcuts
def create_shortcuts(self): """Create shortcuts for ipyconsole.""" inspect = config_shortcut(self._control.inspect_current_object, context='Console', name='Inspect current object', parent=self) clear_console = config_shortcut(se...
python
def create_shortcuts(self): """Create shortcuts for ipyconsole.""" inspect = config_shortcut(self._control.inspect_current_object, context='Console', name='Inspect current object', parent=self) clear_console = config_shortcut(se...
[ "def", "create_shortcuts", "(", "self", ")", ":", "inspect", "=", "config_shortcut", "(", "self", ".", "_control", ".", "inspect_current_object", ",", "context", "=", "'Console'", ",", "name", "=", "'Inspect current object'", ",", "parent", "=", "self", ")", "...
Create shortcuts for ipyconsole.
[ "Create", "shortcuts", "for", "ipyconsole", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L296-L323
30,544
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.silent_execute
def silent_execute(self, code): """Execute code in the kernel without increasing the prompt""" try: self.kernel_client.execute(to_text_string(code), silent=True) except AttributeError: pass
python
def silent_execute(self, code): """Execute code in the kernel without increasing the prompt""" try: self.kernel_client.execute(to_text_string(code), silent=True) except AttributeError: pass
[ "def", "silent_execute", "(", "self", ",", "code", ")", ":", "try", ":", "self", ".", "kernel_client", ".", "execute", "(", "to_text_string", "(", "code", ")", ",", "silent", "=", "True", ")", "except", "AttributeError", ":", "pass" ]
Execute code in the kernel without increasing the prompt
[ "Execute", "code", "in", "the", "kernel", "without", "increasing", "the", "prompt" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L326-L331
30,545
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.silent_exec_method
def silent_exec_method(self, code): """Silently execute a kernel method and save its reply The methods passed here **don't** involve getting the value of a variable but instead replies that can be handled by ast.literal_eval. To get a value see `get_value` Parameters ...
python
def silent_exec_method(self, code): """Silently execute a kernel method and save its reply The methods passed here **don't** involve getting the value of a variable but instead replies that can be handled by ast.literal_eval. To get a value see `get_value` Parameters ...
[ "def", "silent_exec_method", "(", "self", ",", "code", ")", ":", "# Generate uuid, which would be used as an indication of whether or", "# not the unique request originated from here", "local_uuid", "=", "to_text_string", "(", "uuid", ".", "uuid1", "(", ")", ")", "code", "=...
Silently execute a kernel method and save its reply The methods passed here **don't** involve getting the value of a variable but instead replies that can be handled by ast.literal_eval. To get a value see `get_value` Parameters ---------- code : string ...
[ "Silently", "execute", "a", "kernel", "method", "and", "save", "its", "reply" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L333-L368
30,546
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.handle_exec_method
def handle_exec_method(self, msg): """ Handle data returned by silent executions of kernel methods This is based on the _handle_exec_callback of RichJupyterWidget. Therefore this is licensed BSD. """ user_exp = msg['content'].get('user_expressions') if not user_e...
python
def handle_exec_method(self, msg): """ Handle data returned by silent executions of kernel methods This is based on the _handle_exec_callback of RichJupyterWidget. Therefore this is licensed BSD. """ user_exp = msg['content'].get('user_expressions') if not user_e...
[ "def", "handle_exec_method", "(", "self", ",", "msg", ")", ":", "user_exp", "=", "msg", "[", "'content'", "]", ".", "get", "(", "'user_expressions'", ")", "if", "not", "user_exp", ":", "return", "for", "expression", "in", "user_exp", ":", "if", "expression...
Handle data returned by silent executions of kernel methods This is based on the _handle_exec_callback of RichJupyterWidget. Therefore this is licensed BSD.
[ "Handle", "data", "returned", "by", "silent", "executions", "of", "kernel", "methods" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L370-L433
30,547
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.set_backend_for_mayavi
def set_backend_for_mayavi(self, command): """ Mayavi plots require the Qt backend, so we try to detect if one is generated to change backends """ calling_mayavi = False lines = command.splitlines() for l in lines: if not l.startswith('#'): ...
python
def set_backend_for_mayavi(self, command): """ Mayavi plots require the Qt backend, so we try to detect if one is generated to change backends """ calling_mayavi = False lines = command.splitlines() for l in lines: if not l.startswith('#'): ...
[ "def", "set_backend_for_mayavi", "(", "self", ",", "command", ")", ":", "calling_mayavi", "=", "False", "lines", "=", "command", ".", "splitlines", "(", ")", "for", "l", "in", "lines", ":", "if", "not", "l", ".", "startswith", "(", "'#'", ")", ":", "if...
Mayavi plots require the Qt backend, so we try to detect if one is generated to change backends
[ "Mayavi", "plots", "require", "the", "Qt", "backend", "so", "we", "try", "to", "detect", "if", "one", "is", "generated", "to", "change", "backends" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L435-L450
30,548
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget.change_mpl_backend
def change_mpl_backend(self, command): """ If the user is trying to change Matplotlib backends with %matplotlib, send the same command again to the kernel to correctly change it. Fixes issue 4002 """ if command.startswith('%matplotlib') and \ len(comman...
python
def change_mpl_backend(self, command): """ If the user is trying to change Matplotlib backends with %matplotlib, send the same command again to the kernel to correctly change it. Fixes issue 4002 """ if command.startswith('%matplotlib') and \ len(comman...
[ "def", "change_mpl_backend", "(", "self", ",", "command", ")", ":", "if", "command", ".", "startswith", "(", "'%matplotlib'", ")", "and", "len", "(", "command", ".", "splitlines", "(", ")", ")", "==", "1", ":", "if", "not", "'inline'", "in", "command", ...
If the user is trying to change Matplotlib backends with %matplotlib, send the same command again to the kernel to correctly change it. Fixes issue 4002
[ "If", "the", "user", "is", "trying", "to", "change", "Matplotlib", "backends", "with", "%matplotlib", "send", "the", "same", "command", "again", "to", "the", "kernel", "to", "correctly", "change", "it", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L452-L463
30,549
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget._context_menu_make
def _context_menu_make(self, pos): """Reimplement the IPython context menu""" menu = super(ShellWidget, self)._context_menu_make(pos) return self.ipyclient.add_actions_to_context_menu(menu)
python
def _context_menu_make(self, pos): """Reimplement the IPython context menu""" menu = super(ShellWidget, self)._context_menu_make(pos) return self.ipyclient.add_actions_to_context_menu(menu)
[ "def", "_context_menu_make", "(", "self", ",", "pos", ")", ":", "menu", "=", "super", "(", "ShellWidget", ",", "self", ")", ".", "_context_menu_make", "(", "pos", ")", "return", "self", ".", "ipyclient", ".", "add_actions_to_context_menu", "(", "menu", ")" ]
Reimplement the IPython context menu
[ "Reimplement", "the", "IPython", "context", "menu" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L473-L476
30,550
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget._banner_default
def _banner_default(self): """ Reimplement banner creation to let the user decide if he wants a banner or not """ # Don't change banner for external kernels if self.external_kernel: return '' show_banner_o = self.additional_options['show_banner'] ...
python
def _banner_default(self): """ Reimplement banner creation to let the user decide if he wants a banner or not """ # Don't change banner for external kernels if self.external_kernel: return '' show_banner_o = self.additional_options['show_banner'] ...
[ "def", "_banner_default", "(", "self", ")", ":", "# Don't change banner for external kernels", "if", "self", ".", "external_kernel", ":", "return", "''", "show_banner_o", "=", "self", ".", "additional_options", "[", "'show_banner'", "]", "if", "show_banner_o", ":", ...
Reimplement banner creation to let the user decide if he wants a banner or not
[ "Reimplement", "banner", "creation", "to", "let", "the", "user", "decide", "if", "he", "wants", "a", "banner", "or", "not" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L478-L490
30,551
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget._syntax_style_changed
def _syntax_style_changed(self): """Refresh the highlighting with the current syntax style by class.""" if self._highlighter is None: # ignore premature calls return if self.syntax_style: self._highlighter._style = create_style_class(self.syntax_style) ...
python
def _syntax_style_changed(self): """Refresh the highlighting with the current syntax style by class.""" if self._highlighter is None: # ignore premature calls return if self.syntax_style: self._highlighter._style = create_style_class(self.syntax_style) ...
[ "def", "_syntax_style_changed", "(", "self", ")", ":", "if", "self", ".", "_highlighter", "is", "None", ":", "# ignore premature calls", "return", "if", "self", ".", "syntax_style", ":", "self", ".", "_highlighter", ".", "_style", "=", "create_style_class", "(",...
Refresh the highlighting with the current syntax style by class.
[ "Refresh", "the", "highlighting", "with", "the", "current", "syntax", "style", "by", "class", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L496-L505
30,552
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/shell.py
ShellWidget._prompt_started_hook
def _prompt_started_hook(self): """Emit a signal when the prompt is ready.""" if not self._reading: self._highlighter.highlighting_on = True self.sig_prompt_ready.emit()
python
def _prompt_started_hook(self): """Emit a signal when the prompt is ready.""" if not self._reading: self._highlighter.highlighting_on = True self.sig_prompt_ready.emit()
[ "def", "_prompt_started_hook", "(", "self", ")", ":", "if", "not", "self", ".", "_reading", ":", "self", ".", "_highlighter", ".", "highlighting_on", "=", "True", "self", ".", "sig_prompt_ready", ".", "emit", "(", ")" ]
Emit a signal when the prompt is ready.
[ "Emit", "a", "signal", "when", "the", "prompt", "is", "ready", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/shell.py#L507-L511
30,553
spyder-ide/spyder
spyder/plugins/editor/panels/manager.py
PanelsManager.clear
def clear(self): """Removes all panel from the CodeEditor.""" for i in range(4): while len(self._panels[i]): key = sorted(list(self._panels[i].keys()))[0] panel = self.remove(key) panel.setParent(None) panel.deleteLater()
python
def clear(self): """Removes all panel from the CodeEditor.""" for i in range(4): while len(self._panels[i]): key = sorted(list(self._panels[i].keys()))[0] panel = self.remove(key) panel.setParent(None) panel.deleteLater()
[ "def", "clear", "(", "self", ")", ":", "for", "i", "in", "range", "(", "4", ")", ":", "while", "len", "(", "self", ".", "_panels", "[", "i", "]", ")", ":", "key", "=", "sorted", "(", "list", "(", "self", ".", "_panels", "[", "i", "]", ".", ...
Removes all panel from the CodeEditor.
[ "Removes", "all", "panel", "from", "the", "CodeEditor", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/manager.py#L97-L104
30,554
spyder-ide/spyder
spyder/plugins/editor/panels/manager.py
PanelsManager.resize
def resize(self): """Resizes panels.""" crect = self.editor.contentsRect() view_crect = self.editor.viewport().contentsRect() s_bottom, s_left, s_right, s_top = self._compute_zones_sizes() tw = s_left + s_right th = s_bottom + s_top w_offset = crect.width() - (vie...
python
def resize(self): """Resizes panels.""" crect = self.editor.contentsRect() view_crect = self.editor.viewport().contentsRect() s_bottom, s_left, s_right, s_top = self._compute_zones_sizes() tw = s_left + s_right th = s_bottom + s_top w_offset = crect.width() - (vie...
[ "def", "resize", "(", "self", ")", ":", "crect", "=", "self", ".", "editor", ".", "contentsRect", "(", ")", "view_crect", "=", "self", ".", "editor", ".", "viewport", "(", ")", ".", "contentsRect", "(", ")", "s_bottom", ",", "s_left", ",", "s_right", ...
Resizes panels.
[ "Resizes", "panels", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/manager.py#L163-L222
30,555
spyder-ide/spyder
spyder/plugins/editor/panels/manager.py
PanelsManager.update_floating_panels
def update_floating_panels(self): """Update foating panels.""" crect = self.editor.contentsRect() panels = self.panels_for_zone(Panel.Position.FLOATING) for panel in panels: if not panel.isVisible(): continue panel.set_geometry(crect)
python
def update_floating_panels(self): """Update foating panels.""" crect = self.editor.contentsRect() panels = self.panels_for_zone(Panel.Position.FLOATING) for panel in panels: if not panel.isVisible(): continue panel.set_geometry(crect)
[ "def", "update_floating_panels", "(", "self", ")", ":", "crect", "=", "self", ".", "editor", ".", "contentsRect", "(", ")", "panels", "=", "self", ".", "panels_for_zone", "(", "Panel", ".", "Position", ".", "FLOATING", ")", "for", "panel", "in", "panels", ...
Update foating panels.
[ "Update", "foating", "panels", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/manager.py#L224-L231
30,556
spyder-ide/spyder
spyder/plugins/editor/panels/manager.py
PanelsManager._update_viewport_margins
def _update_viewport_margins(self): """Update viewport margins.""" top = 0 left = 0 right = 0 bottom = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if panel.isVisible(): width = panel.sizeHint().width() left += widt...
python
def _update_viewport_margins(self): """Update viewport margins.""" top = 0 left = 0 right = 0 bottom = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if panel.isVisible(): width = panel.sizeHint().width() left += widt...
[ "def", "_update_viewport_margins", "(", "self", ")", ":", "top", "=", "0", "left", "=", "0", "right", "=", "0", "bottom", "=", "0", "for", "panel", "in", "self", ".", "panels_for_zone", "(", "Panel", ".", "Position", ".", "LEFT", ")", ":", "if", "pan...
Update viewport margins.
[ "Update", "viewport", "margins", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/manager.py#L255-L278
30,557
spyder-ide/spyder
spyder/plugins/editor/panels/manager.py
PanelsManager._compute_zones_sizes
def _compute_zones_sizes(self): """Compute panel zone sizes.""" # Left panels left = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if not panel.isVisible(): continue size_hint = panel.sizeHint() left += size_hint.width() ...
python
def _compute_zones_sizes(self): """Compute panel zone sizes.""" # Left panels left = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if not panel.isVisible(): continue size_hint = panel.sizeHint() left += size_hint.width() ...
[ "def", "_compute_zones_sizes", "(", "self", ")", ":", "# Left panels", "left", "=", "0", "for", "panel", "in", "self", ".", "panels_for_zone", "(", "Panel", ".", "Position", ".", "LEFT", ")", ":", "if", "not", "panel", ".", "isVisible", "(", ")", ":", ...
Compute panel zone sizes.
[ "Compute", "panel", "zone", "sizes", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/manager.py#L291-L323
30,558
spyder-ide/spyder
spyder/utils/introspection/fallback_plugin.py
get_definition_with_regex
def get_definition_with_regex(source, token, start_line=-1): """ Find the definition of an object within a source closest to a given line """ if not token: return None if DEBUG_EDITOR: t0 = time.time() patterns = [ # python / cython keyword definitions r...
python
def get_definition_with_regex(source, token, start_line=-1): """ Find the definition of an object within a source closest to a given line """ if not token: return None if DEBUG_EDITOR: t0 = time.time() patterns = [ # python / cython keyword definitions r...
[ "def", "get_definition_with_regex", "(", "source", ",", "token", ",", "start_line", "=", "-", "1", ")", ":", "if", "not", "token", ":", "return", "None", "if", "DEBUG_EDITOR", ":", "t0", "=", "time", ".", "time", "(", ")", "patterns", "=", "[", "# pyth...
Find the definition of an object within a source closest to a given line
[ "Find", "the", "definition", "of", "an", "object", "within", "a", "source", "closest", "to", "a", "given", "line" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/fallback_plugin.py#L201-L247
30,559
spyder-ide/spyder
spyder/utils/introspection/fallback_plugin.py
python_like_exts
def python_like_exts(): """Return a list of all python-like extensions""" exts = [] for lang in languages.PYTHON_LIKE_LANGUAGES: exts.extend(list(languages.ALL_LANGUAGES[lang])) return ['.' + ext for ext in exts]
python
def python_like_exts(): """Return a list of all python-like extensions""" exts = [] for lang in languages.PYTHON_LIKE_LANGUAGES: exts.extend(list(languages.ALL_LANGUAGES[lang])) return ['.' + ext for ext in exts]
[ "def", "python_like_exts", "(", ")", ":", "exts", "=", "[", "]", "for", "lang", "in", "languages", ".", "PYTHON_LIKE_LANGUAGES", ":", "exts", ".", "extend", "(", "list", "(", "languages", ".", "ALL_LANGUAGES", "[", "lang", "]", ")", ")", "return", "[", ...
Return a list of all python-like extensions
[ "Return", "a", "list", "of", "all", "python", "-", "like", "extensions" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/fallback_plugin.py#L265-L270
30,560
spyder-ide/spyder
spyder/utils/introspection/fallback_plugin.py
all_editable_exts
def all_editable_exts(): """Return a list of all editable extensions""" exts = [] for (language, extensions) in languages.ALL_LANGUAGES.items(): exts.extend(list(extensions)) return ['.' + ext for ext in exts]
python
def all_editable_exts(): """Return a list of all editable extensions""" exts = [] for (language, extensions) in languages.ALL_LANGUAGES.items(): exts.extend(list(extensions)) return ['.' + ext for ext in exts]
[ "def", "all_editable_exts", "(", ")", ":", "exts", "=", "[", "]", "for", "(", "language", ",", "extensions", ")", "in", "languages", ".", "ALL_LANGUAGES", ".", "items", "(", ")", ":", "exts", ".", "extend", "(", "list", "(", "extensions", ")", ")", "...
Return a list of all editable extensions
[ "Return", "a", "list", "of", "all", "editable", "extensions" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/fallback_plugin.py#L273-L278
30,561
spyder-ide/spyder
spyder/utils/introspection/fallback_plugin.py
FallbackPlugin.get_info
def get_info(self, info): """Get a formatted calltip and docstring from Fallback""" if info['docstring']: if info['filename']: filename = os.path.basename(info['filename']) filename = os.path.splitext(filename)[0] else: filen...
python
def get_info(self, info): """Get a formatted calltip and docstring from Fallback""" if info['docstring']: if info['filename']: filename = os.path.basename(info['filename']) filename = os.path.splitext(filename)[0] else: filen...
[ "def", "get_info", "(", "self", ",", "info", ")", ":", "if", "info", "[", "'docstring'", "]", ":", "if", "info", "[", "'filename'", "]", ":", "filename", "=", "os", ".", "path", ".", "basename", "(", "info", "[", "'filename'", "]", ")", "filename", ...
Get a formatted calltip and docstring from Fallback
[ "Get", "a", "formatted", "calltip", "and", "docstring", "from", "Fallback" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/fallback_plugin.py#L129-L144
30,562
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
get_item_children
def get_item_children(item): """Return a sorted list of all the children items of 'item'.""" children = [item.child(index) for index in range(item.childCount())] for child in children[:]: others = get_item_children(child) if others is not None: children += others retur...
python
def get_item_children(item): """Return a sorted list of all the children items of 'item'.""" children = [item.child(index) for index in range(item.childCount())] for child in children[:]: others = get_item_children(child) if others is not None: children += others retur...
[ "def", "get_item_children", "(", "item", ")", ":", "children", "=", "[", "item", ".", "child", "(", "index", ")", "for", "index", "in", "range", "(", "item", ".", "childCount", "(", ")", ")", "]", "for", "child", "in", "children", "[", ":", "]", ":...
Return a sorted list of all the children items of 'item'.
[ "Return", "a", "sorted", "list", "of", "all", "the", "children", "items", "of", "item", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L121-L128
30,563
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
item_at_line
def item_at_line(root_item, line): """ Find and return the item of the outline explorer under which is located the specified 'line' of the editor. """ previous_item = root_item item = root_item for item in get_item_children(root_item): if item.line > line: return...
python
def item_at_line(root_item, line): """ Find and return the item of the outline explorer under which is located the specified 'line' of the editor. """ previous_item = root_item item = root_item for item in get_item_children(root_item): if item.line > line: return...
[ "def", "item_at_line", "(", "root_item", ",", "line", ")", ":", "previous_item", "=", "root_item", "item", "=", "root_item", "for", "item", "in", "get_item_children", "(", "root_item", ")", ":", "if", "item", ".", "line", ">", "line", ":", "return", "previ...
Find and return the item of the outline explorer under which is located the specified 'line' of the editor.
[ "Find", "and", "return", "the", "item", "of", "the", "outline", "explorer", "under", "which", "is", "located", "the", "specified", "line", "of", "the", "editor", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L131-L143
30,564
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerTreeWidget.set_current_editor
def set_current_editor(self, editor, update): """Bind editor instance""" editor_id = editor.get_id() if editor_id in list(self.editor_ids.values()): item = self.editor_items[editor_id] if not self.freeze: self.scrollToItem(item) self...
python
def set_current_editor(self, editor, update): """Bind editor instance""" editor_id = editor.get_id() if editor_id in list(self.editor_ids.values()): item = self.editor_items[editor_id] if not self.freeze: self.scrollToItem(item) self...
[ "def", "set_current_editor", "(", "self", ",", "editor", ",", "update", ")", ":", "editor_id", "=", "editor", ".", "get_id", "(", ")", "if", "editor_id", "in", "list", "(", "self", ".", "editor_ids", ".", "values", "(", ")", ")", ":", "item", "=", "s...
Bind editor instance
[ "Bind", "editor", "instance" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L267-L294
30,565
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerTreeWidget.file_renamed
def file_renamed(self, editor, new_filename): """File was renamed, updating outline explorer tree""" if editor is None: # This is needed when we can't find an editor to attach # the outline explorer to. # Fix issue 8813 return editor_id = ed...
python
def file_renamed(self, editor, new_filename): """File was renamed, updating outline explorer tree""" if editor is None: # This is needed when we can't find an editor to attach # the outline explorer to. # Fix issue 8813 return editor_id = ed...
[ "def", "file_renamed", "(", "self", ",", "editor", ",", "new_filename", ")", ":", "if", "editor", "is", "None", ":", "# This is needed when we can't find an editor to attach\r", "# the outline explorer to.\r", "# Fix issue 8813\r", "return", "editor_id", "=", "editor", "....
File was renamed, updating outline explorer tree
[ "File", "was", "renamed", "updating", "outline", "explorer", "tree" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L296-L307
30,566
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerTreeWidget.set_editor_ids_order
def set_editor_ids_order(self, ordered_editor_ids): """ Order the root file items in the Outline Explorer following the provided list of editor ids. """ if self.ordered_editor_ids != ordered_editor_ids: self.ordered_editor_ids = ordered_editor_ids i...
python
def set_editor_ids_order(self, ordered_editor_ids): """ Order the root file items in the Outline Explorer following the provided list of editor ids. """ if self.ordered_editor_ids != ordered_editor_ids: self.ordered_editor_ids = ordered_editor_ids i...
[ "def", "set_editor_ids_order", "(", "self", ",", "ordered_editor_ids", ")", ":", "if", "self", ".", "ordered_editor_ids", "!=", "ordered_editor_ids", ":", "self", ".", "ordered_editor_ids", "=", "ordered_editor_ids", "if", "self", ".", "sort_files_alphabetically", "is...
Order the root file items in the Outline Explorer following the provided list of editor ids.
[ "Order", "the", "root", "file", "items", "in", "the", "Outline", "Explorer", "following", "the", "provided", "list", "of", "editor", "ids", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L333-L341
30,567
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerTreeWidget.__sort_toplevel_items
def __sort_toplevel_items(self): """ Sort the root file items in alphabetical order if 'sort_files_alphabetically' is True, else order the items as specified in the 'self.ordered_editor_ids' list. """ if self.show_all_files is False: return c...
python
def __sort_toplevel_items(self): """ Sort the root file items in alphabetical order if 'sort_files_alphabetically' is True, else order the items as specified in the 'self.ordered_editor_ids' list. """ if self.show_all_files is False: return c...
[ "def", "__sort_toplevel_items", "(", "self", ")", ":", "if", "self", ".", "show_all_files", "is", "False", ":", "return", "current_ordered_items", "=", "[", "self", ".", "topLevelItem", "(", "index", ")", "for", "index", "in", "range", "(", "self", ".", "t...
Sort the root file items in alphabetical order if 'sort_files_alphabetically' is True, else order the items as specified in the 'self.ordered_editor_ids' list.
[ "Sort", "the", "root", "file", "items", "in", "alphabetical", "order", "if", "sort_files_alphabetically", "is", "True", "else", "order", "the", "items", "as", "specified", "in", "the", "self", ".", "ordered_editor_ids", "list", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L343-L374
30,568
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerTreeWidget.get_root_item
def get_root_item(self, item): """Return the root item of the specified item.""" root_item = item while isinstance(root_item.parent(), QTreeWidgetItem): root_item = root_item.parent() return root_item
python
def get_root_item(self, item): """Return the root item of the specified item.""" root_item = item while isinstance(root_item.parent(), QTreeWidgetItem): root_item = root_item.parent() return root_item
[ "def", "get_root_item", "(", "self", ",", "item", ")", ":", "root_item", "=", "item", "while", "isinstance", "(", "root_item", ".", "parent", "(", ")", ",", "QTreeWidgetItem", ")", ":", "root_item", "=", "root_item", ".", "parent", "(", ")", "return", "r...
Return the root item of the specified item.
[ "Return", "the", "root", "item", "of", "the", "specified", "item", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L547-L552
30,569
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerTreeWidget.get_visible_items
def get_visible_items(self): """Return a list of all visible items in the treewidget.""" items = [] iterator = QTreeWidgetItemIterator(self) while iterator.value(): item = iterator.value() if not item.isHidden(): if item.parent(): ...
python
def get_visible_items(self): """Return a list of all visible items in the treewidget.""" items = [] iterator = QTreeWidgetItemIterator(self) while iterator.value(): item = iterator.value() if not item.isHidden(): if item.parent(): ...
[ "def", "get_visible_items", "(", "self", ")", ":", "items", "=", "[", "]", "iterator", "=", "QTreeWidgetItemIterator", "(", "self", ")", "while", "iterator", ".", "value", "(", ")", ":", "item", "=", "iterator", ".", "value", "(", ")", "if", "not", "it...
Return a list of all visible items in the treewidget.
[ "Return", "a", "list", "of", "all", "visible", "items", "in", "the", "treewidget", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L554-L567
30,570
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerWidget.setup_buttons
def setup_buttons(self): """Setup the buttons of the outline explorer widget toolbar.""" self.fromcursor_btn = create_toolbutton( self, icon=ima.icon('fromcursor'), tip=_('Go to cursor position'), triggered=self.treewidget.go_to_cursor_position) buttons = [self.fro...
python
def setup_buttons(self): """Setup the buttons of the outline explorer widget toolbar.""" self.fromcursor_btn = create_toolbutton( self, icon=ima.icon('fromcursor'), tip=_('Go to cursor position'), triggered=self.treewidget.go_to_cursor_position) buttons = [self.fro...
[ "def", "setup_buttons", "(", "self", ")", ":", "self", ".", "fromcursor_btn", "=", "create_toolbutton", "(", "self", ",", "icon", "=", "ima", ".", "icon", "(", "'fromcursor'", ")", ",", "tip", "=", "_", "(", "'Go to cursor position'", ")", ",", "triggered"...
Setup the buttons of the outline explorer widget toolbar.
[ "Setup", "the", "buttons", "of", "the", "outline", "explorer", "widget", "toolbar", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L650-L664
30,571
spyder-ide/spyder
spyder/plugins/outlineexplorer/widgets.py
OutlineExplorerWidget.get_options
def get_options(self): """ Return outline explorer options """ return dict( show_fullpath=self.treewidget.show_fullpath, show_all_files=self.treewidget.show_all_files, group_cells=self.treewidget.group_cells, show_comments=self.tree...
python
def get_options(self): """ Return outline explorer options """ return dict( show_fullpath=self.treewidget.show_fullpath, show_all_files=self.treewidget.show_all_files, group_cells=self.treewidget.group_cells, show_comments=self.tree...
[ "def", "get_options", "(", "self", ")", ":", "return", "dict", "(", "show_fullpath", "=", "self", ".", "treewidget", ".", "show_fullpath", ",", "show_all_files", "=", "self", ".", "treewidget", ".", "show_all_files", ",", "group_cells", "=", "self", ".", "tr...
Return outline explorer options
[ "Return", "outline", "explorer", "options" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/outlineexplorer/widgets.py#L675-L689
30,572
spyder-ide/spyder
spyder/api/editorextension.py
EditorExtension.on_uninstall
def on_uninstall(self): """Uninstalls the editor extension from the editor.""" self._on_close = True self.enabled = False self._editor = None
python
def on_uninstall(self): """Uninstalls the editor extension from the editor.""" self._on_close = True self.enabled = False self._editor = None
[ "def", "on_uninstall", "(", "self", ")", ":", "self", ".", "_on_close", "=", "True", "self", ".", "enabled", "=", "False", "self", ".", "_editor", "=", "None" ]
Uninstalls the editor extension from the editor.
[ "Uninstalls", "the", "editor", "extension", "from", "the", "editor", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/api/editorextension.py#L112-L116
30,573
spyder-ide/spyder
spyder/__init__.py
get_versions
def get_versions(reporev=True): """Get version information for components used by Spyder""" import sys import platform import qtpy import qtpy.QtCore revision = None if reporev: from spyder.utils import vcs revision, branch = vcs.get_git_revision(os.path.dirname(__dir__)) ...
python
def get_versions(reporev=True): """Get version information for components used by Spyder""" import sys import platform import qtpy import qtpy.QtCore revision = None if reporev: from spyder.utils import vcs revision, branch = vcs.get_git_revision(os.path.dirname(__dir__)) ...
[ "def", "get_versions", "(", "reporev", "=", "True", ")", ":", "import", "sys", "import", "platform", "import", "qtpy", "import", "qtpy", ".", "QtCore", "revision", "=", "None", "if", "reporev", ":", "from", "spyder", ".", "utils", "import", "vcs", "revisio...
Get version information for components used by Spyder
[ "Get", "version", "information", "for", "components", "used", "by", "Spyder" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/__init__.py#L67-L95
30,574
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
is_number
def is_number(dtype): """Return True is datatype dtype is a number kind""" return is_float(dtype) or ('int' in dtype.name) or ('long' in dtype.name) \ or ('short' in dtype.name)
python
def is_number(dtype): """Return True is datatype dtype is a number kind""" return is_float(dtype) or ('int' in dtype.name) or ('long' in dtype.name) \ or ('short' in dtype.name)
[ "def", "is_number", "(", "dtype", ")", ":", "return", "is_float", "(", "dtype", ")", "or", "(", "'int'", "in", "dtype", ".", "name", ")", "or", "(", "'long'", "in", "dtype", ".", "name", ")", "or", "(", "'short'", "in", "dtype", ".", "name", ")" ]
Return True is datatype dtype is a number kind
[ "Return", "True", "is", "datatype", "dtype", "is", "a", "number", "kind" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L101-L104
30,575
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
get_idx_rect
def get_idx_rect(index_list): """Extract the boundaries from a list of indexes""" rows, cols = list(zip(*[(i.row(), i.column()) for i in index_list])) return ( min(rows), max(rows), min(cols), max(cols) )
python
def get_idx_rect(index_list): """Extract the boundaries from a list of indexes""" rows, cols = list(zip(*[(i.row(), i.column()) for i in index_list])) return ( min(rows), max(rows), min(cols), max(cols) )
[ "def", "get_idx_rect", "(", "index_list", ")", ":", "rows", ",", "cols", "=", "list", "(", "zip", "(", "*", "[", "(", "i", ".", "row", "(", ")", ",", "i", ".", "column", "(", ")", ")", "for", "i", "in", "index_list", "]", ")", ")", "return", ...
Extract the boundaries from a list of indexes
[ "Extract", "the", "boundaries", "from", "a", "list", "of", "indexes" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L107-L110
30,576
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayModel.columnCount
def columnCount(self, qindex=QModelIndex()): """Array column number""" if self.total_cols <= self.cols_loaded: return self.total_cols else: return self.cols_loaded
python
def columnCount(self, qindex=QModelIndex()): """Array column number""" if self.total_cols <= self.cols_loaded: return self.total_cols else: return self.cols_loaded
[ "def", "columnCount", "(", "self", ",", "qindex", "=", "QModelIndex", "(", ")", ")", ":", "if", "self", ".", "total_cols", "<=", "self", ".", "cols_loaded", ":", "return", "self", ".", "total_cols", "else", ":", "return", "self", ".", "cols_loaded" ]
Array column number
[ "Array", "column", "number" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L197-L202
30,577
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayDelegate.createEditor
def createEditor(self, parent, option, index): """Create editor widget""" model = index.model() value = model.get_value(index) if model._data.dtype.name == "bool": value = not value model.setData(index, to_qvariant(value)) return elif v...
python
def createEditor(self, parent, option, index): """Create editor widget""" model = index.model() value = model.get_value(index) if model._data.dtype.name == "bool": value = not value model.setData(index, to_qvariant(value)) return elif v...
[ "def", "createEditor", "(", "self", ",", "parent", ",", "option", ",", "index", ")", ":", "model", "=", "index", ".", "model", "(", ")", "value", "=", "model", ".", "get_value", "(", "index", ")", "if", "model", ".", "_data", ".", "dtype", ".", "na...
Create editor widget
[ "Create", "editor", "widget" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L363-L380
30,578
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayDelegate.commitAndCloseEditor
def commitAndCloseEditor(self): """Commit and close editor""" editor = self.sender() # Avoid a segfault with PyQt5. Variable value won't be changed # but at least Spyder won't crash. It seems generated by a bug in sip. try: self.commitData.emit(editor) ...
python
def commitAndCloseEditor(self): """Commit and close editor""" editor = self.sender() # Avoid a segfault with PyQt5. Variable value won't be changed # but at least Spyder won't crash. It seems generated by a bug in sip. try: self.commitData.emit(editor) ...
[ "def", "commitAndCloseEditor", "(", "self", ")", ":", "editor", "=", "self", ".", "sender", "(", ")", "# Avoid a segfault with PyQt5. Variable value won't be changed\r", "# but at least Spyder won't crash. It seems generated by a bug in sip.\r", "try", ":", "self", ".", "commit...
Commit and close editor
[ "Commit", "and", "close", "editor" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L382-L391
30,579
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayDelegate.setEditorData
def setEditorData(self, editor, index): """Set editor widget's data""" text = from_qvariant(index.model().data(index, Qt.DisplayRole), str) editor.setText(text)
python
def setEditorData(self, editor, index): """Set editor widget's data""" text = from_qvariant(index.model().data(index, Qt.DisplayRole), str) editor.setText(text)
[ "def", "setEditorData", "(", "self", ",", "editor", ",", "index", ")", ":", "text", "=", "from_qvariant", "(", "index", ".", "model", "(", ")", ".", "data", "(", "index", ",", "Qt", ".", "DisplayRole", ")", ",", "str", ")", "editor", ".", "setText", ...
Set editor widget's data
[ "Set", "editor", "widget", "s", "data" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L393-L396
30,580
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayView.resize_to_contents
def resize_to_contents(self): """Resize cells to contents""" QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) self.resizeColumnsToContents() self.model().fetch_more(columns=True) self.resizeColumnsToContents() QApplication.restoreOverrideCursor()
python
def resize_to_contents(self): """Resize cells to contents""" QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) self.resizeColumnsToContents() self.model().fetch_more(columns=True) self.resizeColumnsToContents() QApplication.restoreOverrideCursor()
[ "def", "resize_to_contents", "(", "self", ")", ":", "QApplication", ".", "setOverrideCursor", "(", "QCursor", "(", "Qt", ".", "WaitCursor", ")", ")", "self", ".", "resizeColumnsToContents", "(", ")", "self", ".", "model", "(", ")", ".", "fetch_more", "(", ...
Resize cells to contents
[ "Resize", "cells", "to", "contents" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L464-L470
30,581
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayView._sel_to_text
def _sel_to_text(self, cell_range): """Copy an array portion to a unicode string""" if not cell_range: return row_min, row_max, col_min, col_max = get_idx_rect(cell_range) if col_min == 0 and col_max == (self.model().cols_loaded-1): # we've selected a whole ...
python
def _sel_to_text(self, cell_range): """Copy an array portion to a unicode string""" if not cell_range: return row_min, row_max, col_min, col_max = get_idx_rect(cell_range) if col_min == 0 and col_max == (self.model().cols_loaded-1): # we've selected a whole ...
[ "def", "_sel_to_text", "(", "self", ",", "cell_range", ")", ":", "if", "not", "cell_range", ":", "return", "row_min", ",", "row_max", ",", "col_min", ",", "col_max", "=", "get_idx_rect", "(", "cell_range", ")", "if", "col_min", "==", "0", "and", "col_max",...
Copy an array portion to a unicode string
[ "Copy", "an", "array", "portion", "to", "a", "unicode", "string" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L495-L523
30,582
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayEditorWidget.change_format
def change_format(self): """Change display format""" format, valid = QInputDialog.getText(self, _( 'Format'), _( "Float formatting"), QLineEdit.Normal, self.model.get_format()) if valid: format = str(format) ...
python
def change_format(self): """Change display format""" format, valid = QInputDialog.getText(self, _( 'Format'), _( "Float formatting"), QLineEdit.Normal, self.model.get_format()) if valid: format = str(format) ...
[ "def", "change_format", "(", "self", ")", ":", "format", ",", "valid", "=", "QInputDialog", ".", "getText", "(", "self", ",", "_", "(", "'Format'", ")", ",", "_", "(", "\"Float formatting\"", ")", ",", "QLineEdit", ".", "Normal", ",", "self", ".", "mod...
Change display format
[ "Change", "display", "format" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L585-L598
30,583
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayEditor.change_active_widget
def change_active_widget(self, index): """ This is implemented for handling negative values in index for 3d arrays, to give the same behavior as slicing """ string_index = [':']*3 string_index[self.last_dim] = '<font color=red>%i</font>' self.slicing_label....
python
def change_active_widget(self, index): """ This is implemented for handling negative values in index for 3d arrays, to give the same behavior as slicing """ string_index = [':']*3 string_index[self.last_dim] = '<font color=red>%i</font>' self.slicing_label....
[ "def", "change_active_widget", "(", "self", ",", "index", ")", ":", "string_index", "=", "[", "':'", "]", "*", "3", "string_index", "[", "self", ".", "last_dim", "]", "=", "'<font color=red>%i</font>'", "self", ".", "slicing_label", ".", "setText", "(", "(",...
This is implemented for handling negative values in index for 3d arrays, to give the same behavior as slicing
[ "This", "is", "implemented", "for", "handling", "negative", "values", "in", "index", "for", "3d", "arrays", "to", "give", "the", "same", "behavior", "as", "slicing" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L775-L801
30,584
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayEditor.current_dim_changed
def current_dim_changed(self, index): """ This change the active axis the array editor is plotting over in 3D """ self.last_dim = index string_size = ['%i']*3 string_size[index] = '<font color=red>%i</font>' self.shape_label.setText(('Shape: (' + '...
python
def current_dim_changed(self, index): """ This change the active axis the array editor is plotting over in 3D """ self.last_dim = index string_size = ['%i']*3 string_size[index] = '<font color=red>%i</font>' self.shape_label.setText(('Shape: (' + '...
[ "def", "current_dim_changed", "(", "self", ",", "index", ")", ":", "self", ".", "last_dim", "=", "index", "string_size", "=", "[", "'%i'", "]", "*", "3", "string_size", "[", "index", "]", "=", "'<font color=red>%i</font>'", "self", ".", "shape_label", ".", ...
This change the active axis the array editor is plotting over in 3D
[ "This", "change", "the", "active", "axis", "the", "array", "editor", "is", "plotting", "over", "in", "3D" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L803-L820
30,585
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/arrayeditor.py
ArrayEditor.error
def error(self, message): """An error occured, closing the dialog box""" QMessageBox.critical(self, _("Array editor"), message) self.setAttribute(Qt.WA_DeleteOnClose) self.reject()
python
def error(self, message): """An error occured, closing the dialog box""" QMessageBox.critical(self, _("Array editor"), message) self.setAttribute(Qt.WA_DeleteOnClose) self.reject()
[ "def", "error", "(", "self", ",", "message", ")", ":", "QMessageBox", ".", "critical", "(", "self", ",", "_", "(", "\"Array editor\"", ")", ",", "message", ")", "self", ".", "setAttribute", "(", "Qt", ".", "WA_DeleteOnClose", ")", "self", ".", "reject", ...
An error occured, closing the dialog box
[ "An", "error", "occured", "closing", "the", "dialog", "box" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L835-L839
30,586
spyder-ide/spyder
spyder/utils/introspection/utils.py
find_lexer_for_filename
def find_lexer_for_filename(filename): """Get a Pygments Lexer given a filename. """ filename = filename or '' root, ext = os.path.splitext(filename) if ext in custom_extension_lexer_mapping: lexer = get_lexer_by_name(custom_extension_lexer_mapping[ext]) else: try: le...
python
def find_lexer_for_filename(filename): """Get a Pygments Lexer given a filename. """ filename = filename or '' root, ext = os.path.splitext(filename) if ext in custom_extension_lexer_mapping: lexer = get_lexer_by_name(custom_extension_lexer_mapping[ext]) else: try: le...
[ "def", "find_lexer_for_filename", "(", "filename", ")", ":", "filename", "=", "filename", "or", "''", "root", ",", "ext", "=", "os", ".", "path", ".", "splitext", "(", "filename", ")", "if", "ext", "in", "custom_extension_lexer_mapping", ":", "lexer", "=", ...
Get a Pygments Lexer given a filename.
[ "Get", "a", "Pygments", "Lexer", "given", "a", "filename", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/utils.py#L169-L181
30,587
spyder-ide/spyder
spyder/utils/introspection/utils.py
get_keywords
def get_keywords(lexer): """Get the keywords for a given lexer. """ if not hasattr(lexer, 'tokens'): return [] if 'keywords' in lexer.tokens: try: return lexer.tokens['keywords'][0][0].words except: pass keywords = [] for vals in lexer.tokens.value...
python
def get_keywords(lexer): """Get the keywords for a given lexer. """ if not hasattr(lexer, 'tokens'): return [] if 'keywords' in lexer.tokens: try: return lexer.tokens['keywords'][0][0].words except: pass keywords = [] for vals in lexer.tokens.value...
[ "def", "get_keywords", "(", "lexer", ")", ":", "if", "not", "hasattr", "(", "lexer", ",", "'tokens'", ")", ":", "return", "[", "]", "if", "'keywords'", "in", "lexer", ".", "tokens", ":", "try", ":", "return", "lexer", ".", "tokens", "[", "'keywords'", ...
Get the keywords for a given lexer.
[ "Get", "the", "keywords", "for", "a", "given", "lexer", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/utils.py#L184-L211
30,588
spyder-ide/spyder
spyder/utils/introspection/utils.py
get_words
def get_words(file_path=None, content=None, extension=None): """ Extract all words from a source code file to be used in code completion. Extract the list of words that contains the file in the editor, to carry out the inline completion similar to VSCode. """ if (file_path is None and (content ...
python
def get_words(file_path=None, content=None, extension=None): """ Extract all words from a source code file to be used in code completion. Extract the list of words that contains the file in the editor, to carry out the inline completion similar to VSCode. """ if (file_path is None and (content ...
[ "def", "get_words", "(", "file_path", "=", "None", ",", "content", "=", "None", ",", "extension", "=", "None", ")", ":", "if", "(", "file_path", "is", "None", "and", "(", "content", "is", "None", "or", "extension", "is", "None", ")", "or", "file_path",...
Extract all words from a source code file to be used in code completion. Extract the list of words that contains the file in the editor, to carry out the inline completion similar to VSCode.
[ "Extract", "all", "words", "from", "a", "source", "code", "file", "to", "be", "used", "in", "code", "completion", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/utils.py#L213-L238
30,589
spyder-ide/spyder
spyder/utils/introspection/utils.py
get_parent_until
def get_parent_until(path): """ Given a file path, determine the full module path. e.g. '/usr/lib/python2.7/dist-packages/numpy/core/__init__.pyc' yields 'numpy.core' """ dirname = osp.dirname(path) try: mod = osp.basename(path) mod = osp.splitext(mod)[0] imp.find_mo...
python
def get_parent_until(path): """ Given a file path, determine the full module path. e.g. '/usr/lib/python2.7/dist-packages/numpy/core/__init__.pyc' yields 'numpy.core' """ dirname = osp.dirname(path) try: mod = osp.basename(path) mod = osp.splitext(mod)[0] imp.find_mo...
[ "def", "get_parent_until", "(", "path", ")", ":", "dirname", "=", "osp", ".", "dirname", "(", "path", ")", "try", ":", "mod", "=", "osp", ".", "basename", "(", "path", ")", "mod", "=", "osp", ".", "splitext", "(", "mod", ")", "[", "0", "]", "imp"...
Given a file path, determine the full module path. e.g. '/usr/lib/python2.7/dist-packages/numpy/core/__init__.pyc' yields 'numpy.core'
[ "Given", "a", "file", "path", "determine", "the", "full", "module", "path", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/utils.py#L241-L263
30,590
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/kernelconnect.py
KernelConnectionDialog.load_connection_settings
def load_connection_settings(self): """Load the user's previously-saved kernel connection settings.""" existing_kernel = CONF.get("existing-kernel", "settings", {}) connection_file_path = existing_kernel.get("json_file_path", "") is_remote = existing_kernel.get("is_remote", False) ...
python
def load_connection_settings(self): """Load the user's previously-saved kernel connection settings.""" existing_kernel = CONF.get("existing-kernel", "settings", {}) connection_file_path = existing_kernel.get("json_file_path", "") is_remote = existing_kernel.get("is_remote", False) ...
[ "def", "load_connection_settings", "(", "self", ")", ":", "existing_kernel", "=", "CONF", ".", "get", "(", "\"existing-kernel\"", ",", "\"settings\"", ",", "{", "}", ")", "connection_file_path", "=", "existing_kernel", ".", "get", "(", "\"json_file_path\"", ",", ...
Load the user's previously-saved kernel connection settings.
[ "Load", "the", "user", "s", "previously", "-", "saved", "kernel", "connection", "settings", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/kernelconnect.py#L164-L200
30,591
spyder-ide/spyder
spyder/plugins/ipythonconsole/widgets/kernelconnect.py
KernelConnectionDialog.save_connection_settings
def save_connection_settings(self): """Save user's kernel connection settings.""" if not self.save_layout.isChecked(): return is_ssh_key = bool(self.kf_radio.isChecked()) connection_settings = { "json_file_path": self.cf.text(), "is_remote": self.rm_...
python
def save_connection_settings(self): """Save user's kernel connection settings.""" if not self.save_layout.isChecked(): return is_ssh_key = bool(self.kf_radio.isChecked()) connection_settings = { "json_file_path": self.cf.text(), "is_remote": self.rm_...
[ "def", "save_connection_settings", "(", "self", ")", ":", "if", "not", "self", ".", "save_layout", ".", "isChecked", "(", ")", ":", "return", "is_ssh_key", "=", "bool", "(", "self", ".", "kf_radio", ".", "isChecked", "(", ")", ")", "connection_settings", "...
Save user's kernel connection settings.
[ "Save", "user", "s", "kernel", "connection", "settings", "." ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/widgets/kernelconnect.py#L202-L231
30,592
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
get_color
def get_color(value, alpha): """Return color depending on value type""" color = QColor() for typ in COLORS: if isinstance(value, typ): color = QColor(COLORS[typ]) color.setAlphaF(alpha) return color
python
def get_color(value, alpha): """Return color depending on value type""" color = QColor() for typ in COLORS: if isinstance(value, typ): color = QColor(COLORS[typ]) color.setAlphaF(alpha) return color
[ "def", "get_color", "(", "value", ",", "alpha", ")", ":", "color", "=", "QColor", "(", ")", "for", "typ", "in", "COLORS", ":", "if", "isinstance", "(", "value", ",", "typ", ")", ":", "color", "=", "QColor", "(", "COLORS", "[", "typ", "]", ")", "c...
Return color depending on value type
[ "Return", "color", "depending", "on", "value", "type" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L96-L103
30,593
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
ContentsWidget.get_col_sep
def get_col_sep(self): """Return the column separator""" if self.tab_btn.isChecked(): return u"\t" elif self.ws_btn.isChecked(): return None return to_text_string(self.line_edt.text())
python
def get_col_sep(self): """Return the column separator""" if self.tab_btn.isChecked(): return u"\t" elif self.ws_btn.isChecked(): return None return to_text_string(self.line_edt.text())
[ "def", "get_col_sep", "(", "self", ")", ":", "if", "self", ".", "tab_btn", ".", "isChecked", "(", ")", ":", "return", "u\"\\t\"", "elif", "self", ".", "ws_btn", ".", "isChecked", "(", ")", ":", "return", "None", "return", "to_text_string", "(", "self", ...
Return the column separator
[ "Return", "the", "column", "separator" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L236-L242
30,594
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
ContentsWidget.get_row_sep
def get_row_sep(self): """Return the row separator""" if self.eol_btn.isChecked(): return u"\n" return to_text_string(self.line_edt_row.text())
python
def get_row_sep(self): """Return the row separator""" if self.eol_btn.isChecked(): return u"\n" return to_text_string(self.line_edt_row.text())
[ "def", "get_row_sep", "(", "self", ")", ":", "if", "self", ".", "eol_btn", ".", "isChecked", "(", ")", ":", "return", "u\"\\n\"", "return", "to_text_string", "(", "self", ".", "line_edt_row", ".", "text", "(", ")", ")" ]
Return the row separator
[ "Return", "the", "row", "separator" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L244-L248
30,595
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
ContentsWidget.set_as_data
def set_as_data(self, as_data): """Set if data type conversion""" self._as_data = as_data self.asDataChanged.emit(as_data)
python
def set_as_data(self, as_data): """Set if data type conversion""" self._as_data = as_data self.asDataChanged.emit(as_data)
[ "def", "set_as_data", "(", "self", ",", "as_data", ")", ":", "self", ".", "_as_data", "=", "as_data", "self", ".", "asDataChanged", ".", "emit", "(", "as_data", ")" ]
Set if data type conversion
[ "Set", "if", "data", "type", "conversion" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L259-L262
30,596
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
PreviewTableModel._display_data
def _display_data(self, index): """Return a data element""" return to_qvariant(self._data[index.row()][index.column()])
python
def _display_data(self, index): """Return a data element""" return to_qvariant(self._data[index.row()][index.column()])
[ "def", "_display_data", "(", "self", ",", "index", ")", ":", "return", "to_qvariant", "(", "self", ".", "_data", "[", "index", ".", "row", "(", ")", "]", "[", "index", ".", "column", "(", ")", "]", ")" ]
Return a data element
[ "Return", "a", "data", "element" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L284-L286
30,597
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
PreviewTableModel.data
def data(self, index, role=Qt.DisplayRole): """Return a model data element""" if not index.isValid(): return to_qvariant() if role == Qt.DisplayRole: return self._display_data(index) elif role == Qt.BackgroundColorRole: return to_qvariant(get_co...
python
def data(self, index, role=Qt.DisplayRole): """Return a model data element""" if not index.isValid(): return to_qvariant() if role == Qt.DisplayRole: return self._display_data(index) elif role == Qt.BackgroundColorRole: return to_qvariant(get_co...
[ "def", "data", "(", "self", ",", "index", ",", "role", "=", "Qt", ".", "DisplayRole", ")", ":", "if", "not", "index", ".", "isValid", "(", ")", ":", "return", "to_qvariant", "(", ")", "if", "role", "==", "Qt", ".", "DisplayRole", ":", "return", "se...
Return a model data element
[ "Return", "a", "model", "data", "element" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L288-L298
30,598
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
PreviewTableModel.parse_data_type
def parse_data_type(self, index, **kwargs): """Parse a type to an other type""" if not index.isValid(): return False try: if kwargs['atype'] == "date": self._data[index.row()][index.column()] = \ datestr_to_datetime(self._data[in...
python
def parse_data_type(self, index, **kwargs): """Parse a type to an other type""" if not index.isValid(): return False try: if kwargs['atype'] == "date": self._data[index.row()][index.column()] = \ datestr_to_datetime(self._data[in...
[ "def", "parse_data_type", "(", "self", ",", "index", ",", "*", "*", "kwargs", ")", ":", "if", "not", "index", ".", "isValid", "(", ")", ":", "return", "False", "try", ":", "if", "kwargs", "[", "'atype'", "]", "==", "\"date\"", ":", "self", ".", "_d...
Parse a type to an other type
[ "Parse", "a", "type", "to", "an", "other", "type" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L308-L334
30,599
spyder-ide/spyder
spyder/plugins/variableexplorer/widgets/importwizard.py
PreviewTable._shape_text
def _shape_text(self, text, colsep=u"\t", rowsep=u"\n", transpose=False, skiprows=0, comments='#'): """Decode the shape of the given text""" assert colsep != rowsep out = [] text_rows = text.split(rowsep)[skiprows:] for row in text_rows: str...
python
def _shape_text(self, text, colsep=u"\t", rowsep=u"\n", transpose=False, skiprows=0, comments='#'): """Decode the shape of the given text""" assert colsep != rowsep out = [] text_rows = text.split(rowsep)[skiprows:] for row in text_rows: str...
[ "def", "_shape_text", "(", "self", ",", "text", ",", "colsep", "=", "u\"\\t\"", ",", "rowsep", "=", "u\"\\n\"", ",", "transpose", "=", "False", ",", "skiprows", "=", "0", ",", "comments", "=", "'#'", ")", ":", "assert", "colsep", "!=", "rowsep", "out",...
Decode the shape of the given text
[ "Decode", "the", "shape", "of", "the", "given", "text" ]
f76836ce1b924bcc4efd3f74f2960d26a4e528e0
https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/importwizard.py#L376-L399