repo stringclasses 85
values | path stringlengths 8 121 | func_name stringlengths 1 82 | original_string stringlengths 112 65.5k | language stringclasses 1
value | code stringlengths 112 65.5k | code_tokens listlengths 20 4.09k | docstring stringlengths 3 46.3k | docstring_tokens listlengths 1 564 | sha stringclasses 85
values | url stringlengths 93 218 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorMainWindow.get_layout_settings | def get_layout_settings(self):
"""Return layout state"""
splitsettings = self.editorwidget.editorsplitter.get_layout_settings()
return dict(size=(self.window_size.width(), self.window_size.height()),
pos=(self.pos().x(), self.pos().y()),
is_maximized=... | python | def get_layout_settings(self):
"""Return layout state"""
splitsettings = self.editorwidget.editorsplitter.get_layout_settings()
return dict(size=(self.window_size.width(), self.window_size.height()),
pos=(self.pos().x(), self.pos().y()),
is_maximized=... | [
"def",
"get_layout_settings",
"(",
"self",
")",
":",
"splitsettings",
"=",
"self",
".",
"editorwidget",
".",
"editorsplitter",
".",
"get_layout_settings",
"(",
")",
"return",
"dict",
"(",
"size",
"=",
"(",
"self",
".",
"window_size",
".",
"width",
"(",
")",
... | Return layout state | [
"Return",
"layout",
"state"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2970-L2978 | train |
spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorMainWindow.set_layout_settings | def set_layout_settings(self, settings):
"""Restore layout state"""
size = settings.get('size')
if size is not None:
self.resize( QSize(*size) )
self.window_size = self.size()
pos = settings.get('pos')
if pos is not None:
self.move( QPo... | python | def set_layout_settings(self, settings):
"""Restore layout state"""
size = settings.get('size')
if size is not None:
self.resize( QSize(*size) )
self.window_size = self.size()
pos = settings.get('pos')
if pos is not None:
self.move( QPo... | [
"def",
"set_layout_settings",
"(",
"self",
",",
"settings",
")",
":",
"size",
"=",
"settings",
".",
"get",
"(",
"'size'",
")",
"if",
"size",
"is",
"not",
"None",
":",
"self",
".",
"resize",
"(",
"QSize",
"(",
"*",
"size",
")",
")",
"self",
".",
"wi... | Restore layout state | [
"Restore",
"layout",
"state"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2980-L2999 | train |
spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorPluginExample.file_saved_in_editorstack | def file_saved_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was saved in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_id_str:
editor... | python | def file_saved_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was saved in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_id_str:
editor... | [
"def",
"file_saved_in_editorstack",
"(",
"self",
",",
"editorstack_id_str",
",",
"original_filename",
",",
"filename",
")",
":",
"for",
"editorstack",
"in",
"self",
".",
"editorstacks",
":",
"if",
"str",
"(",
"id",
"(",
"editorstack",
")",
")",
"!=",
"editorst... | A file was saved in editorstack, this notifies others | [
"A",
"file",
"was",
"saved",
"in",
"editorstack",
"this",
"notifies",
"others"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L3131-L3137 | train |
spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorPluginExample.file_renamed_in_data_in_editorstack | def file_renamed_in_data_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was renamed in data in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_i... | python | def file_renamed_in_data_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was renamed in data in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_i... | [
"def",
"file_renamed_in_data_in_editorstack",
"(",
"self",
",",
"editorstack_id_str",
",",
"original_filename",
",",
"filename",
")",
":",
"for",
"editorstack",
"in",
"self",
".",
"editorstacks",
":",
"if",
"str",
"(",
"id",
"(",
"editorstack",
")",
")",
"!=",
... | A file was renamed in data in editorstack, this notifies others | [
"A",
"file",
"was",
"renamed",
"in",
"data",
"in",
"editorstack",
"this",
"notifies",
"others"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L3142-L3147 | train |
spyder-ide/spyder | spyder/plugins/findinfiles/plugin.py | FindInFiles.findinfiles_callback | def findinfiles_callback(self):
"""Find in files callback"""
widget = QApplication.focusWidget()
if not self.ismaximized:
self.dockwidget.setVisible(True)
self.dockwidget.raise_()
text = ''
try:
if widget.has_selected_text():
... | python | def findinfiles_callback(self):
"""Find in files callback"""
widget = QApplication.focusWidget()
if not self.ismaximized:
self.dockwidget.setVisible(True)
self.dockwidget.raise_()
text = ''
try:
if widget.has_selected_text():
... | [
"def",
"findinfiles_callback",
"(",
"self",
")",
":",
"widget",
"=",
"QApplication",
".",
"focusWidget",
"(",
")",
"if",
"not",
"self",
".",
"ismaximized",
":",
"self",
".",
"dockwidget",
".",
"setVisible",
"(",
"True",
")",
"self",
".",
"dockwidget",
".",... | Find in files callback | [
"Find",
"in",
"files",
"callback"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/findinfiles/plugin.py#L98-L113 | train |
spyder-ide/spyder | spyder/plugins/findinfiles/plugin.py | FindInFiles.register_plugin | def register_plugin(self):
"""Register plugin in Spyder's main window"""
self.main.add_dockwidget(self)
self.findinfiles.result_browser.sig_edit_goto.connect(
self.main.editor.load)
self.findinfiles.find_options.redirect_stdio... | python | def register_plugin(self):
"""Register plugin in Spyder's main window"""
self.main.add_dockwidget(self)
self.findinfiles.result_browser.sig_edit_goto.connect(
self.main.editor.load)
self.findinfiles.find_options.redirect_stdio... | [
"def",
"register_plugin",
"(",
"self",
")",
":",
"self",
".",
"main",
".",
"add_dockwidget",
"(",
"self",
")",
"self",
".",
"findinfiles",
".",
"result_browser",
".",
"sig_edit_goto",
".",
"connect",
"(",
"self",
".",
"main",
".",
"editor",
".",
"load",
... | Register plugin in Spyder's main window | [
"Register",
"plugin",
"in",
"Spyder",
"s",
"main",
"window"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/findinfiles/plugin.py#L138-L161 | train |
spyder-ide/spyder | spyder/plugins/findinfiles/plugin.py | FindInFiles.closing_plugin | def closing_plugin(self, cancelable=False):
"""Perform actions before parent main window is closed"""
self.findinfiles.closing_widget() # stop search thread and clean-up
options = self.findinfiles.find_options.get_options(to_save=True)
if options is not None:
(search_te... | python | def closing_plugin(self, cancelable=False):
"""Perform actions before parent main window is closed"""
self.findinfiles.closing_widget() # stop search thread and clean-up
options = self.findinfiles.find_options.get_options(to_save=True)
if options is not None:
(search_te... | [
"def",
"closing_plugin",
"(",
"self",
",",
"cancelable",
"=",
"False",
")",
":",
"self",
".",
"findinfiles",
".",
"closing_widget",
"(",
")",
"# stop search thread and clean-up\r",
"options",
"=",
"self",
".",
"findinfiles",
".",
"find_options",
".",
"get_options"... | Perform actions before parent main window is closed | [
"Perform",
"actions",
"before",
"parent",
"main",
"window",
"is",
"closed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/findinfiles/plugin.py#L167-L188 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._draw_fold_region_background | def _draw_fold_region_background(self, block, painter):
"""
Draw the fold region when the mouse is over and non collapsed
indicator.
:param top: Top position
:param block: Current block.
:param painter: QPainter
"""
r = FoldScope(block)
th = TextH... | python | def _draw_fold_region_background(self, block, painter):
"""
Draw the fold region when the mouse is over and non collapsed
indicator.
:param top: Top position
:param block: Current block.
:param painter: QPainter
"""
r = FoldScope(block)
th = TextH... | [
"def",
"_draw_fold_region_background",
"(",
"self",
",",
"block",
",",
"painter",
")",
":",
"r",
"=",
"FoldScope",
"(",
"block",
")",
"th",
"=",
"TextHelper",
"(",
"self",
".",
"editor",
")",
"start",
",",
"end",
"=",
"r",
".",
"get_range",
"(",
"ignor... | Draw the fold region when the mouse is over and non collapsed
indicator.
:param top: Top position
:param block: Current block.
:param painter: QPainter | [
"Draw",
"the",
"fold",
"region",
"when",
"the",
"mouse",
"is",
"over",
"and",
"non",
"collapsed",
"indicator",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L226-L247 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._draw_rect | def _draw_rect(self, rect, painter):
"""
Draw the background rectangle using the current style primitive color.
:param rect: The fold zone rect to draw
:param painter: The widget's painter.
"""
c = self.editor.sideareas_color
grad = QLinearGradient(rect.topLeft(... | python | def _draw_rect(self, rect, painter):
"""
Draw the background rectangle using the current style primitive color.
:param rect: The fold zone rect to draw
:param painter: The widget's painter.
"""
c = self.editor.sideareas_color
grad = QLinearGradient(rect.topLeft(... | [
"def",
"_draw_rect",
"(",
"self",
",",
"rect",
",",
"painter",
")",
":",
"c",
"=",
"self",
".",
"editor",
".",
"sideareas_color",
"grad",
"=",
"QLinearGradient",
"(",
"rect",
".",
"topLeft",
"(",
")",
",",
"rect",
".",
"topRight",
"(",
")",
")",
"if"... | Draw the background rectangle using the current style primitive color.
:param rect: The fold zone rect to draw
:param painter: The widget's painter. | [
"Draw",
"the",
"background",
"rectangle",
"using",
"the",
"current",
"style",
"primitive",
"color",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L249-L285 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._draw_fold_indicator | def _draw_fold_indicator(self, top, mouse_over, collapsed, painter):
"""
Draw the fold indicator/trigger (arrow).
:param top: Top position
:param mouse_over: Whether the mouse is over the indicator
:param collapsed: Whether the trigger is collapsed or not.
:param painter... | python | def _draw_fold_indicator(self, top, mouse_over, collapsed, painter):
"""
Draw the fold indicator/trigger (arrow).
:param top: Top position
:param mouse_over: Whether the mouse is over the indicator
:param collapsed: Whether the trigger is collapsed or not.
:param painter... | [
"def",
"_draw_fold_indicator",
"(",
"self",
",",
"top",
",",
"mouse_over",
",",
"collapsed",
",",
"painter",
")",
":",
"rect",
"=",
"QRect",
"(",
"0",
",",
"top",
",",
"self",
".",
"sizeHint",
"(",
")",
".",
"width",
"(",
")",
",",
"self",
".",
"si... | Draw the fold indicator/trigger (arrow).
:param top: Top position
:param mouse_over: Whether the mouse is over the indicator
:param collapsed: Whether the trigger is collapsed or not.
:param painter: QPainter | [
"Draw",
"the",
"fold",
"indicator",
"/",
"trigger",
"(",
"arrow",
")",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L287-L322 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.find_parent_scope | def find_parent_scope(block):
"""Find parent scope, if the block is not a fold trigger."""
original = block
if not TextBlockHelper.is_fold_trigger(block):
# search level of next non blank line
while block.text().strip() == '' and block.isValid():
block = b... | python | def find_parent_scope(block):
"""Find parent scope, if the block is not a fold trigger."""
original = block
if not TextBlockHelper.is_fold_trigger(block):
# search level of next non blank line
while block.text().strip() == '' and block.isValid():
block = b... | [
"def",
"find_parent_scope",
"(",
"block",
")",
":",
"original",
"=",
"block",
"if",
"not",
"TextBlockHelper",
".",
"is_fold_trigger",
"(",
"block",
")",
":",
"# search level of next non blank line",
"while",
"block",
".",
"text",
"(",
")",
".",
"strip",
"(",
"... | Find parent scope, if the block is not a fold trigger. | [
"Find",
"parent",
"scope",
"if",
"the",
"block",
"is",
"not",
"a",
"fold",
"trigger",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L325-L338 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._clear_scope_decos | def _clear_scope_decos(self):
"""Clear scope decorations (on the editor)"""
for deco in self._scope_decos:
self.editor.decorations.remove(deco)
self._scope_decos[:] = [] | python | def _clear_scope_decos(self):
"""Clear scope decorations (on the editor)"""
for deco in self._scope_decos:
self.editor.decorations.remove(deco)
self._scope_decos[:] = [] | [
"def",
"_clear_scope_decos",
"(",
"self",
")",
":",
"for",
"deco",
"in",
"self",
".",
"_scope_decos",
":",
"self",
".",
"editor",
".",
"decorations",
".",
"remove",
"(",
"deco",
")",
"self",
".",
"_scope_decos",
"[",
":",
"]",
"=",
"[",
"]"
] | Clear scope decorations (on the editor) | [
"Clear",
"scope",
"decorations",
"(",
"on",
"the",
"editor",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L340-L344 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._get_scope_highlight_color | def _get_scope_highlight_color(self):
"""
Gets the base scope highlight color (derivated from the editor
background)
For lighter themes will be a darker color,
and for darker ones will be a lighter color
"""
color = self.editor.sideareas_color
if color.l... | python | def _get_scope_highlight_color(self):
"""
Gets the base scope highlight color (derivated from the editor
background)
For lighter themes will be a darker color,
and for darker ones will be a lighter color
"""
color = self.editor.sideareas_color
if color.l... | [
"def",
"_get_scope_highlight_color",
"(",
"self",
")",
":",
"color",
"=",
"self",
".",
"editor",
".",
"sideareas_color",
"if",
"color",
".",
"lightness",
"(",
")",
"<",
"128",
":",
"color",
"=",
"drift_color",
"(",
"color",
",",
"130",
")",
"else",
":",
... | Gets the base scope highlight color (derivated from the editor
background)
For lighter themes will be a darker color,
and for darker ones will be a lighter color | [
"Gets",
"the",
"base",
"scope",
"highlight",
"color",
"(",
"derivated",
"from",
"the",
"editor",
"background",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L346-L359 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._decorate_block | def _decorate_block(self, start, end):
"""
Create a decoration and add it to the editor.
Args:
start (int) start line of the decoration
end (int) end line of the decoration
"""
color = self._get_scope_highlight_color()
draw_order = DRAW_ORDERS.get... | python | def _decorate_block(self, start, end):
"""
Create a decoration and add it to the editor.
Args:
start (int) start line of the decoration
end (int) end line of the decoration
"""
color = self._get_scope_highlight_color()
draw_order = DRAW_ORDERS.get... | [
"def",
"_decorate_block",
"(",
"self",
",",
"start",
",",
"end",
")",
":",
"color",
"=",
"self",
".",
"_get_scope_highlight_color",
"(",
")",
"draw_order",
"=",
"DRAW_ORDERS",
".",
"get",
"(",
"'codefolding'",
")",
"d",
"=",
"TextDecoration",
"(",
"self",
... | Create a decoration and add it to the editor.
Args:
start (int) start line of the decoration
end (int) end line of the decoration | [
"Create",
"a",
"decoration",
"and",
"add",
"it",
"to",
"the",
"editor",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L361-L376 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._highlight_block | def _highlight_block(self, block):
"""
Highlights the current fold scope.
:param block: Block that starts the current fold scope.
"""
scope = FoldScope(block)
if (self._current_scope is None or
self._current_scope.get_range() != scope.get_range()):
... | python | def _highlight_block(self, block):
"""
Highlights the current fold scope.
:param block: Block that starts the current fold scope.
"""
scope = FoldScope(block)
if (self._current_scope is None or
self._current_scope.get_range() != scope.get_range()):
... | [
"def",
"_highlight_block",
"(",
"self",
",",
"block",
")",
":",
"scope",
"=",
"FoldScope",
"(",
"block",
")",
"if",
"(",
"self",
".",
"_current_scope",
"is",
"None",
"or",
"self",
".",
"_current_scope",
".",
"get_range",
"(",
")",
"!=",
"scope",
".",
"... | Highlights the current fold scope.
:param block: Block that starts the current fold scope. | [
"Highlights",
"the",
"current",
"fold",
"scope",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L378-L392 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.mouseMoveEvent | def mouseMoveEvent(self, event):
"""
Detect mouser over indicator and highlight the current scope in the
editor (up and down decoration arround the foldable text when the mouse
is over an indicator).
:param event: event
"""
super(FoldingPanel, self).mouseMoveEven... | python | def mouseMoveEvent(self, event):
"""
Detect mouser over indicator and highlight the current scope in the
editor (up and down decoration arround the foldable text when the mouse
is over an indicator).
:param event: event
"""
super(FoldingPanel, self).mouseMoveEven... | [
"def",
"mouseMoveEvent",
"(",
"self",
",",
"event",
")",
":",
"super",
"(",
"FoldingPanel",
",",
"self",
")",
".",
"mouseMoveEvent",
"(",
"event",
")",
"th",
"=",
"TextHelper",
"(",
"self",
".",
"editor",
")",
"line",
"=",
"th",
".",
"line_nbr_from_posit... | Detect mouser over indicator and highlight the current scope in the
editor (up and down decoration arround the foldable text when the mouse
is over an indicator).
:param event: event | [
"Detect",
"mouser",
"over",
"indicator",
"and",
"highlight",
"the",
"current",
"scope",
"in",
"the",
"editor",
"(",
"up",
"and",
"down",
"decoration",
"arround",
"the",
"foldable",
"text",
"when",
"the",
"mouse",
"is",
"over",
"an",
"indicator",
")",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L394-L430 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.mousePressEvent | def mousePressEvent(self, event):
"""Folds/unfolds the pressed indicator if any."""
if self._mouse_over_line is not None:
block = self.editor.document().findBlockByNumber(
self._mouse_over_line)
self.toggle_fold_trigger(block) | python | def mousePressEvent(self, event):
"""Folds/unfolds the pressed indicator if any."""
if self._mouse_over_line is not None:
block = self.editor.document().findBlockByNumber(
self._mouse_over_line)
self.toggle_fold_trigger(block) | [
"def",
"mousePressEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"self",
".",
"_mouse_over_line",
"is",
"not",
"None",
":",
"block",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",
"findBlockByNumber",
"(",
"self",
".",
"_mouse_over_line",
... | Folds/unfolds the pressed indicator if any. | [
"Folds",
"/",
"unfolds",
"the",
"pressed",
"indicator",
"if",
"any",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L487-L492 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._show_previous_blank_lines | def _show_previous_blank_lines(block):
"""
Show the block previous blank lines
"""
# set previous blank lines visibles
pblock = block.previous()
while (pblock.text().strip() == '' and
pblock.blockNumber() >= 0):
pblock.setVisible(True)
... | python | def _show_previous_blank_lines(block):
"""
Show the block previous blank lines
"""
# set previous blank lines visibles
pblock = block.previous()
while (pblock.text().strip() == '' and
pblock.blockNumber() >= 0):
pblock.setVisible(True)
... | [
"def",
"_show_previous_blank_lines",
"(",
"block",
")",
":",
"# set previous blank lines visibles",
"pblock",
"=",
"block",
".",
"previous",
"(",
")",
"while",
"(",
"pblock",
".",
"text",
"(",
")",
".",
"strip",
"(",
")",
"==",
"''",
"and",
"pblock",
".",
... | Show the block previous blank lines | [
"Show",
"the",
"block",
"previous",
"blank",
"lines"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L552-L561 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.refresh_decorations | def refresh_decorations(self, force=False):
"""
Refresh decorations colors. This function is called by the syntax
highlighter when the style changed so that we may update our
decorations colors according to the new style.
"""
cursor = self.editor.textCursor()
if (... | python | def refresh_decorations(self, force=False):
"""
Refresh decorations colors. This function is called by the syntax
highlighter when the style changed so that we may update our
decorations colors according to the new style.
"""
cursor = self.editor.textCursor()
if (... | [
"def",
"refresh_decorations",
"(",
"self",
",",
"force",
"=",
"False",
")",
":",
"cursor",
"=",
"self",
".",
"editor",
".",
"textCursor",
"(",
")",
"if",
"(",
"self",
".",
"_prev_cursor",
"is",
"None",
"or",
"force",
"or",
"self",
".",
"_prev_cursor",
... | Refresh decorations colors. This function is called by the syntax
highlighter when the style changed so that we may update our
decorations colors according to the new style. | [
"Refresh",
"decorations",
"colors",
".",
"This",
"function",
"is",
"called",
"by",
"the",
"syntax",
"highlighter",
"when",
"the",
"style",
"changed",
"so",
"that",
"we",
"may",
"update",
"our",
"decorations",
"colors",
"according",
"to",
"the",
"new",
"style",... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L563-L579 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._refresh_editor_and_scrollbars | def _refresh_editor_and_scrollbars(self):
"""
Refrehes editor content and scollbars.
We generate a fake resize event to refresh scroll bar.
We have the same problem as described here:
http://www.qtcentre.org/threads/44803 and we apply the same solution
(don't worry, the... | python | def _refresh_editor_and_scrollbars(self):
"""
Refrehes editor content and scollbars.
We generate a fake resize event to refresh scroll bar.
We have the same problem as described here:
http://www.qtcentre.org/threads/44803 and we apply the same solution
(don't worry, the... | [
"def",
"_refresh_editor_and_scrollbars",
"(",
"self",
")",
":",
"TextHelper",
"(",
"self",
".",
"editor",
")",
".",
"mark_whole_doc_dirty",
"(",
")",
"self",
".",
"editor",
".",
"repaint",
"(",
")",
"s",
"=",
"self",
".",
"editor",
".",
"size",
"(",
")",... | Refrehes editor content and scollbars.
We generate a fake resize event to refresh scroll bar.
We have the same problem as described here:
http://www.qtcentre.org/threads/44803 and we apply the same solution
(don't worry, there is no visual effect, the editor does not grow up
at... | [
"Refrehes",
"editor",
"content",
"and",
"scollbars",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L581-L596 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.collapse_all | def collapse_all(self):
"""
Collapses all triggers and makes all blocks with fold level > 0
invisible.
"""
self._clear_block_deco()
block = self.editor.document().firstBlock()
last = self.editor.document().lastBlock()
while block.isValid():
lvl... | python | def collapse_all(self):
"""
Collapses all triggers and makes all blocks with fold level > 0
invisible.
"""
self._clear_block_deco()
block = self.editor.document().firstBlock()
last = self.editor.document().lastBlock()
while block.isValid():
lvl... | [
"def",
"collapse_all",
"(",
"self",
")",
":",
"self",
".",
"_clear_block_deco",
"(",
")",
"block",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",
"firstBlock",
"(",
")",
"last",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",... | Collapses all triggers and makes all blocks with fold level > 0
invisible. | [
"Collapses",
"all",
"triggers",
"and",
"makes",
"all",
"blocks",
"with",
"fold",
"level",
">",
"0",
"invisible",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L598-L622 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._clear_block_deco | def _clear_block_deco(self):
"""Clear the folded block decorations."""
for deco in self._block_decos:
self.editor.decorations.remove(deco)
self._block_decos[:] = [] | python | def _clear_block_deco(self):
"""Clear the folded block decorations."""
for deco in self._block_decos:
self.editor.decorations.remove(deco)
self._block_decos[:] = [] | [
"def",
"_clear_block_deco",
"(",
"self",
")",
":",
"for",
"deco",
"in",
"self",
".",
"_block_decos",
":",
"self",
".",
"editor",
".",
"decorations",
".",
"remove",
"(",
"deco",
")",
"self",
".",
"_block_decos",
"[",
":",
"]",
"=",
"[",
"]"
] | Clear the folded block decorations. | [
"Clear",
"the",
"folded",
"block",
"decorations",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L624-L628 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.expand_all | def expand_all(self):
"""Expands all fold triggers."""
block = self.editor.document().firstBlock()
while block.isValid():
TextBlockHelper.set_collapsed(block, False)
block.setVisible(True)
block = block.next()
self._clear_block_deco()
self._ref... | python | def expand_all(self):
"""Expands all fold triggers."""
block = self.editor.document().firstBlock()
while block.isValid():
TextBlockHelper.set_collapsed(block, False)
block.setVisible(True)
block = block.next()
self._clear_block_deco()
self._ref... | [
"def",
"expand_all",
"(",
"self",
")",
":",
"block",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",
"firstBlock",
"(",
")",
"while",
"block",
".",
"isValid",
"(",
")",
":",
"TextBlockHelper",
".",
"set_collapsed",
"(",
"block",
",",
"False... | Expands all fold triggers. | [
"Expands",
"all",
"fold",
"triggers",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L630-L639 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._on_action_toggle | def _on_action_toggle(self):
"""Toggle the current fold trigger."""
block = FoldScope.find_parent_scope(self.editor.textCursor().block())
self.toggle_fold_trigger(block) | python | def _on_action_toggle(self):
"""Toggle the current fold trigger."""
block = FoldScope.find_parent_scope(self.editor.textCursor().block())
self.toggle_fold_trigger(block) | [
"def",
"_on_action_toggle",
"(",
"self",
")",
":",
"block",
"=",
"FoldScope",
".",
"find_parent_scope",
"(",
"self",
".",
"editor",
".",
"textCursor",
"(",
")",
".",
"block",
"(",
")",
")",
"self",
".",
"toggle_fold_trigger",
"(",
"block",
")"
] | Toggle the current fold trigger. | [
"Toggle",
"the",
"current",
"fold",
"trigger",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L641-L644 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._highlight_caret_scope | def _highlight_caret_scope(self):
"""
Highlight the scope of the current caret position.
This get called only if :attr:`
spyder.widgets.panels.FoldingPanel.highlight_care_scope` is True.
"""
cursor = self.editor.textCursor()
block_nbr = cursor.blockNumber()
... | python | def _highlight_caret_scope(self):
"""
Highlight the scope of the current caret position.
This get called only if :attr:`
spyder.widgets.panels.FoldingPanel.highlight_care_scope` is True.
"""
cursor = self.editor.textCursor()
block_nbr = cursor.blockNumber()
... | [
"def",
"_highlight_caret_scope",
"(",
"self",
")",
":",
"cursor",
"=",
"self",
".",
"editor",
".",
"textCursor",
"(",
")",
"block_nbr",
"=",
"cursor",
".",
"blockNumber",
"(",
")",
"if",
"self",
".",
"_block_nbr",
"!=",
"block_nbr",
":",
"block",
"=",
"F... | Highlight the scope of the current caret position.
This get called only if :attr:`
spyder.widgets.panels.FoldingPanel.highlight_care_scope` is True. | [
"Highlight",
"the",
"scope",
"of",
"the",
"current",
"caret",
"position",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L657-L677 | train |
spyder-ide/spyder | spyder/plugins/history/widgets.py | History.set_menu_actions | def set_menu_actions(self, menu_actions):
"""Add options to corner menu."""
if self.menu_actions is not None:
add_actions(self.menu, self.menu_actions) | python | def set_menu_actions(self, menu_actions):
"""Add options to corner menu."""
if self.menu_actions is not None:
add_actions(self.menu, self.menu_actions) | [
"def",
"set_menu_actions",
"(",
"self",
",",
"menu_actions",
")",
":",
"if",
"self",
".",
"menu_actions",
"is",
"not",
"None",
":",
"add_actions",
"(",
"self",
".",
"menu",
",",
"self",
".",
"menu_actions",
")"
] | Add options to corner menu. | [
"Add",
"options",
"to",
"corner",
"menu",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L76-L79 | train |
spyder-ide/spyder | spyder/plugins/history/widgets.py | History.refresh | def refresh(self):
"""Refresh tabwidget."""
if self.tabwidget.count():
editor = self.tabwidget.currentWidget()
else:
editor = None
self.find_widget.set_editor(editor) | python | def refresh(self):
"""Refresh tabwidget."""
if self.tabwidget.count():
editor = self.tabwidget.currentWidget()
else:
editor = None
self.find_widget.set_editor(editor) | [
"def",
"refresh",
"(",
"self",
")",
":",
"if",
"self",
".",
"tabwidget",
".",
"count",
"(",
")",
":",
"editor",
"=",
"self",
".",
"tabwidget",
".",
"currentWidget",
"(",
")",
"else",
":",
"editor",
"=",
"None",
"self",
".",
"find_widget",
".",
"set_e... | Refresh tabwidget. | [
"Refresh",
"tabwidget",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L81-L87 | train |
spyder-ide/spyder | spyder/plugins/history/widgets.py | History.move_tab | def move_tab(self, index_from, index_to):
"""
Move tab.
(tabs themselves have already been moved by the history.tabwidget)
"""
filename = self.filenames.pop(index_from)
editor = self.editors.pop(index_from)
self.filenames.insert(index_to, filename)
self.... | python | def move_tab(self, index_from, index_to):
"""
Move tab.
(tabs themselves have already been moved by the history.tabwidget)
"""
filename = self.filenames.pop(index_from)
editor = self.editors.pop(index_from)
self.filenames.insert(index_to, filename)
self.... | [
"def",
"move_tab",
"(",
"self",
",",
"index_from",
",",
"index_to",
")",
":",
"filename",
"=",
"self",
".",
"filenames",
".",
"pop",
"(",
"index_from",
")",
"editor",
"=",
"self",
".",
"editors",
".",
"pop",
"(",
"index_from",
")",
"self",
".",
"filena... | Move tab.
(tabs themselves have already been moved by the history.tabwidget) | [
"Move",
"tab",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L89-L99 | train |
spyder-ide/spyder | spyder/plugins/history/widgets.py | History.add_history | def add_history(self, filename, color_scheme, font, wrap):
"""
Add new history tab.
Args:
filename (str): file to be loaded in a new tab.
"""
filename = encoding.to_unicode_from_fs(filename)
if filename in self.filenames:
return
editor = c... | python | def add_history(self, filename, color_scheme, font, wrap):
"""
Add new history tab.
Args:
filename (str): file to be loaded in a new tab.
"""
filename = encoding.to_unicode_from_fs(filename)
if filename in self.filenames:
return
editor = c... | [
"def",
"add_history",
"(",
"self",
",",
"filename",
",",
"color_scheme",
",",
"font",
",",
"wrap",
")",
":",
"filename",
"=",
"encoding",
".",
"to_unicode_from_fs",
"(",
"filename",
")",
"if",
"filename",
"in",
"self",
".",
"filenames",
":",
"return",
"edi... | Add new history tab.
Args:
filename (str): file to be loaded in a new tab. | [
"Add",
"new",
"history",
"tab",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L101-L135 | train |
spyder-ide/spyder | spyder/plugins/history/widgets.py | History.append_to_history | def append_to_history(self, filename, command, go_to_eof):
"""
Append an entry to history filename.
Args:
filename (str): file to be updated in a new tab.
command (str): line to be added.
go_to_eof (bool): scroll to the end of file.
"""
if not... | python | def append_to_history(self, filename, command, go_to_eof):
"""
Append an entry to history filename.
Args:
filename (str): file to be updated in a new tab.
command (str): line to be added.
go_to_eof (bool): scroll to the end of file.
"""
if not... | [
"def",
"append_to_history",
"(",
"self",
",",
"filename",
",",
"command",
",",
"go_to_eof",
")",
":",
"if",
"not",
"is_text_string",
"(",
"filename",
")",
":",
"# filename is a QString",
"filename",
"=",
"to_text_string",
"(",
"filename",
".",
"toUtf8",
"(",
"... | Append an entry to history filename.
Args:
filename (str): file to be updated in a new tab.
command (str): line to be added.
go_to_eof (bool): scroll to the end of file. | [
"Append",
"an",
"entry",
"to",
"history",
"filename",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L137-L153 | train |
spyder-ide/spyder | spyder/plugins/editor/utils/lsp.py | request | def request(req=None, method=None, requires_response=True):
"""Call function req and then emit its results to the LSP server."""
if req is None:
return functools.partial(request, method=method,
requires_response=requires_response)
@functools.wraps(req)
def wrapp... | python | def request(req=None, method=None, requires_response=True):
"""Call function req and then emit its results to the LSP server."""
if req is None:
return functools.partial(request, method=method,
requires_response=requires_response)
@functools.wraps(req)
def wrapp... | [
"def",
"request",
"(",
"req",
"=",
"None",
",",
"method",
"=",
"None",
",",
"requires_response",
"=",
"True",
")",
":",
"if",
"req",
"is",
"None",
":",
"return",
"functools",
".",
"partial",
"(",
"request",
",",
"method",
"=",
"method",
",",
"requires_... | Call function req and then emit its results to the LSP server. | [
"Call",
"function",
"req",
"and",
"then",
"emit",
"its",
"results",
"to",
"the",
"LSP",
"server",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/utils/lsp.py#L12-L24 | train |
spyder-ide/spyder | spyder/plugins/editor/utils/lsp.py | class_register | def class_register(cls):
"""Class decorator that allows to map LSP method names to class methods."""
cls.handler_registry = {}
for method_name in dir(cls):
method = getattr(cls, method_name)
if hasattr(method, '_handle'):
cls.handler_registry.update({method._handle: method_name})... | python | def class_register(cls):
"""Class decorator that allows to map LSP method names to class methods."""
cls.handler_registry = {}
for method_name in dir(cls):
method = getattr(cls, method_name)
if hasattr(method, '_handle'):
cls.handler_registry.update({method._handle: method_name})... | [
"def",
"class_register",
"(",
"cls",
")",
":",
"cls",
".",
"handler_registry",
"=",
"{",
"}",
"for",
"method_name",
"in",
"dir",
"(",
"cls",
")",
":",
"method",
"=",
"getattr",
"(",
"cls",
",",
"method_name",
")",
"if",
"hasattr",
"(",
"method",
",",
... | Class decorator that allows to map LSP method names to class methods. | [
"Class",
"decorator",
"that",
"allows",
"to",
"map",
"LSP",
"method",
"names",
"to",
"class",
"methods",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/utils/lsp.py#L27-L34 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.update_font | def update_font(self):
"""Update font from Preferences"""
font = self.get_plugin_font()
for client in self.clients:
client.set_font(font) | python | def update_font(self):
"""Update font from Preferences"""
font = self.get_plugin_font()
for client in self.clients:
client.set_font(font) | [
"def",
"update_font",
"(",
"self",
")",
":",
"font",
"=",
"self",
".",
"get_plugin_font",
"(",
")",
"for",
"client",
"in",
"self",
".",
"clients",
":",
"client",
".",
"set_font",
"(",
"font",
")"
] | Update font from Preferences | [
"Update",
"font",
"from",
"Preferences"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L185-L189 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.apply_plugin_settings | def apply_plugin_settings(self, options):
"""Apply configuration file's plugin settings"""
font_n = 'plugin_font'
font_o = self.get_plugin_font()
help_n = 'connect_to_oi'
help_o = CONF.get('help', 'connect/ipython_console')
color_scheme_n = 'color_scheme_name'
... | python | def apply_plugin_settings(self, options):
"""Apply configuration file's plugin settings"""
font_n = 'plugin_font'
font_o = self.get_plugin_font()
help_n = 'connect_to_oi'
help_o = CONF.get('help', 'connect/ipython_console')
color_scheme_n = 'color_scheme_name'
... | [
"def",
"apply_plugin_settings",
"(",
"self",
",",
"options",
")",
":",
"font_n",
"=",
"'plugin_font'",
"font_o",
"=",
"self",
".",
"get_plugin_font",
"(",
")",
"help_n",
"=",
"'connect_to_oi'",
"help_o",
"=",
"CONF",
".",
"get",
"(",
"'help'",
",",
"'connect... | Apply configuration file's plugin settings | [
"Apply",
"configuration",
"file",
"s",
"plugin",
"settings"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L191-L219 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.toggle_view | def toggle_view(self, checked):
"""Toggle view"""
if checked:
self.dockwidget.show()
self.dockwidget.raise_()
# Start a client in case there are none shown
if not self.clients:
if self.main.is_setting_up:
self.cr... | python | def toggle_view(self, checked):
"""Toggle view"""
if checked:
self.dockwidget.show()
self.dockwidget.raise_()
# Start a client in case there are none shown
if not self.clients:
if self.main.is_setting_up:
self.cr... | [
"def",
"toggle_view",
"(",
"self",
",",
"checked",
")",
":",
"if",
"checked",
":",
"self",
".",
"dockwidget",
".",
"show",
"(",
")",
"self",
".",
"dockwidget",
".",
"raise_",
"(",
")",
"# Start a client in case there are none shown\r",
"if",
"not",
"self",
"... | Toggle view | [
"Toggle",
"view"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L221-L233 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.closing_plugin | def closing_plugin(self, cancelable=False):
"""Perform actions before parent main window is closed"""
self.mainwindow_close = True
for client in self.clients:
client.shutdown()
client.remove_stderr_file()
client.dialog_manager.close_all()
cl... | python | def closing_plugin(self, cancelable=False):
"""Perform actions before parent main window is closed"""
self.mainwindow_close = True
for client in self.clients:
client.shutdown()
client.remove_stderr_file()
client.dialog_manager.close_all()
cl... | [
"def",
"closing_plugin",
"(",
"self",
",",
"cancelable",
"=",
"False",
")",
":",
"self",
".",
"mainwindow_close",
"=",
"True",
"for",
"client",
"in",
"self",
".",
"clients",
":",
"client",
".",
"shutdown",
"(",
")",
"client",
".",
"remove_stderr_file",
"("... | Perform actions before parent main window is closed | [
"Perform",
"actions",
"before",
"parent",
"main",
"window",
"is",
"closed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L253-L261 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.refresh_plugin | def refresh_plugin(self):
"""Refresh tabwidget"""
client = None
if self.tabwidget.count():
client = self.tabwidget.currentWidget()
# Decide what to show for each client
if client.info_page != client.blank_page:
# Show info_page if it h... | python | def refresh_plugin(self):
"""Refresh tabwidget"""
client = None
if self.tabwidget.count():
client = self.tabwidget.currentWidget()
# Decide what to show for each client
if client.info_page != client.blank_page:
# Show info_page if it h... | [
"def",
"refresh_plugin",
"(",
"self",
")",
":",
"client",
"=",
"None",
"if",
"self",
".",
"tabwidget",
".",
"count",
"(",
")",
":",
"client",
"=",
"self",
".",
"tabwidget",
".",
"currentWidget",
"(",
")",
"# Decide what to show for each client\r",
"if",
"cli... | Refresh tabwidget | [
"Refresh",
"tabwidget"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L263-L299 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_plugin_actions | def get_plugin_actions(self):
"""Return a list of actions related to plugin."""
create_client_action = create_action(
self,
_("New console (default settings)"),
icon=ima.icon('ipython_console'),... | python | def get_plugin_actions(self):
"""Return a list of actions related to plugin."""
create_client_action = create_action(
self,
_("New console (default settings)"),
icon=ima.icon('ipython_console'),... | [
"def",
"get_plugin_actions",
"(",
"self",
")",
":",
"create_client_action",
"=",
"create_action",
"(",
"self",
",",
"_",
"(",
"\"New console (default settings)\"",
")",
",",
"icon",
"=",
"ima",
".",
"icon",
"(",
"'ipython_console'",
")",
",",
"triggered",
"=",
... | Return a list of actions related to plugin. | [
"Return",
"a",
"list",
"of",
"actions",
"related",
"to",
"plugin",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L301-L390 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.register_plugin | def register_plugin(self):
"""Register plugin in Spyder's main window"""
self.main.add_dockwidget(self)
self.focus_changed.connect(self.main.plugin_focus_changed)
self.edit_goto.connect(self.main.editor.load)
self.edit_goto[str, int, str, bool].connect(
... | python | def register_plugin(self):
"""Register plugin in Spyder's main window"""
self.main.add_dockwidget(self)
self.focus_changed.connect(self.main.plugin_focus_changed)
self.edit_goto.connect(self.main.editor.load)
self.edit_goto[str, int, str, bool].connect(
... | [
"def",
"register_plugin",
"(",
"self",
")",
":",
"self",
".",
"main",
".",
"add_dockwidget",
"(",
"self",
")",
"self",
".",
"focus_changed",
".",
"connect",
"(",
"self",
".",
"main",
".",
"plugin_focus_changed",
")",
"self",
".",
"edit_goto",
".",
"connect... | Register plugin in Spyder's main window | [
"Register",
"plugin",
"in",
"Spyder",
"s",
"main",
"window"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L392-L410 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_focus_client | def get_focus_client(self):
"""Return current client with focus, if any"""
widget = QApplication.focusWidget()
for client in self.get_clients():
if widget is client or widget is client.get_control():
return client | python | def get_focus_client(self):
"""Return current client with focus, if any"""
widget = QApplication.focusWidget()
for client in self.get_clients():
if widget is client or widget is client.get_control():
return client | [
"def",
"get_focus_client",
"(",
"self",
")",
":",
"widget",
"=",
"QApplication",
".",
"focusWidget",
"(",
")",
"for",
"client",
"in",
"self",
".",
"get_clients",
"(",
")",
":",
"if",
"widget",
"is",
"client",
"or",
"widget",
"is",
"client",
".",
"get_con... | Return current client with focus, if any | [
"Return",
"current",
"client",
"with",
"focus",
"if",
"any"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L417-L422 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.run_script | def run_script(self, filename, wdir, args, debug, post_mortem,
current_client, clear_variables):
"""Run script in current or dedicated client"""
norm = lambda text: remove_backslashes(to_text_string(text))
# Run Cython files in a dedicated console
is_cython = os... | python | def run_script(self, filename, wdir, args, debug, post_mortem,
current_client, clear_variables):
"""Run script in current or dedicated client"""
norm = lambda text: remove_backslashes(to_text_string(text))
# Run Cython files in a dedicated console
is_cython = os... | [
"def",
"run_script",
"(",
"self",
",",
"filename",
",",
"wdir",
",",
"args",
",",
"debug",
",",
"post_mortem",
",",
"current_client",
",",
"clear_variables",
")",
":",
"norm",
"=",
"lambda",
"text",
":",
"remove_backslashes",
"(",
"to_text_string",
"(",
"tex... | Run script in current or dedicated client | [
"Run",
"script",
"in",
"current",
"or",
"dedicated",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L436-L507 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.run_cell | def run_cell(self, code, cell_name, filename, run_cell_copy):
"""Run cell in current or dedicated client."""
def norm(text):
return remove_backslashes(to_text_string(text))
self.run_cell_filename = filename
# Select client to execute code on it
client = se... | python | def run_cell(self, code, cell_name, filename, run_cell_copy):
"""Run cell in current or dedicated client."""
def norm(text):
return remove_backslashes(to_text_string(text))
self.run_cell_filename = filename
# Select client to execute code on it
client = se... | [
"def",
"run_cell",
"(",
"self",
",",
"code",
",",
"cell_name",
",",
"filename",
",",
"run_cell_copy",
")",
":",
"def",
"norm",
"(",
"text",
")",
":",
"return",
"remove_backslashes",
"(",
"to_text_string",
"(",
"text",
")",
")",
"self",
".",
"run_cell_filen... | Run cell in current or dedicated client. | [
"Run",
"cell",
"in",
"current",
"or",
"dedicated",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L509-L569 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.set_current_client_working_directory | def set_current_client_working_directory(self, directory):
"""Set current client working directory."""
shellwidget = self.get_current_shellwidget()
if shellwidget is not None:
shellwidget.set_cwd(directory) | python | def set_current_client_working_directory(self, directory):
"""Set current client working directory."""
shellwidget = self.get_current_shellwidget()
if shellwidget is not None:
shellwidget.set_cwd(directory) | [
"def",
"set_current_client_working_directory",
"(",
"self",
",",
"directory",
")",
":",
"shellwidget",
"=",
"self",
".",
"get_current_shellwidget",
"(",
")",
"if",
"shellwidget",
"is",
"not",
"None",
":",
"shellwidget",
".",
"set_cwd",
"(",
"directory",
")"
] | Set current client working directory. | [
"Set",
"current",
"client",
"working",
"directory",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L571-L575 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.set_working_directory | def set_working_directory(self, dirname):
"""Set current working directory.
In the workingdirectory and explorer plugins.
"""
if dirname:
self.main.workingdirectory.chdir(dirname, refresh_explorer=True,
refresh_console=False) | python | def set_working_directory(self, dirname):
"""Set current working directory.
In the workingdirectory and explorer plugins.
"""
if dirname:
self.main.workingdirectory.chdir(dirname, refresh_explorer=True,
refresh_console=False) | [
"def",
"set_working_directory",
"(",
"self",
",",
"dirname",
")",
":",
"if",
"dirname",
":",
"self",
".",
"main",
".",
"workingdirectory",
".",
"chdir",
"(",
"dirname",
",",
"refresh_explorer",
"=",
"True",
",",
"refresh_console",
"=",
"False",
")"
] | Set current working directory.
In the workingdirectory and explorer plugins. | [
"Set",
"current",
"working",
"directory",
".",
"In",
"the",
"workingdirectory",
"and",
"explorer",
"plugins",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L577-L583 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.execute_code | def execute_code(self, lines, current_client=True, clear_variables=False):
"""Execute code instructions."""
sw = self.get_current_shellwidget()
if sw is not None:
if sw._reading:
pass
else:
if not current_client:
... | python | def execute_code(self, lines, current_client=True, clear_variables=False):
"""Execute code instructions."""
sw = self.get_current_shellwidget()
if sw is not None:
if sw._reading:
pass
else:
if not current_client:
... | [
"def",
"execute_code",
"(",
"self",
",",
"lines",
",",
"current_client",
"=",
"True",
",",
"clear_variables",
"=",
"False",
")",
":",
"sw",
"=",
"self",
".",
"get_current_shellwidget",
"(",
")",
"if",
"sw",
"is",
"not",
"None",
":",
"if",
"sw",
".",
"_... | Execute code instructions. | [
"Execute",
"code",
"instructions",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L591-L616 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_new_client | def create_new_client(self, give_focus=True, filename='', is_cython=False,
is_pylab=False, is_sympy=False, given_name=None):
"""Create a new client"""
self.master_clients += 1
client_id = dict(int_id=to_text_string(self.master_clients),
str... | python | def create_new_client(self, give_focus=True, filename='', is_cython=False,
is_pylab=False, is_sympy=False, given_name=None):
"""Create a new client"""
self.master_clients += 1
client_id = dict(int_id=to_text_string(self.master_clients),
str... | [
"def",
"create_new_client",
"(",
"self",
",",
"give_focus",
"=",
"True",
",",
"filename",
"=",
"''",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
",",
"given_name",
"=",
"None",
")",
":",
"self",
".",
"m... | Create a new client | [
"Create",
"a",
"new",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L634-L697 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_client_for_kernel | def create_client_for_kernel(self):
"""Create a client connected to an existing kernel"""
connect_output = KernelConnectionDialog.get_connection_parameters(self)
(connection_file, hostname, sshkey, password, ok) = connect_output
if not ok:
return
else:
... | python | def create_client_for_kernel(self):
"""Create a client connected to an existing kernel"""
connect_output = KernelConnectionDialog.get_connection_parameters(self)
(connection_file, hostname, sshkey, password, ok) = connect_output
if not ok:
return
else:
... | [
"def",
"create_client_for_kernel",
"(",
"self",
")",
":",
"connect_output",
"=",
"KernelConnectionDialog",
".",
"get_connection_parameters",
"(",
"self",
")",
"(",
"connection_file",
",",
"hostname",
",",
"sshkey",
",",
"password",
",",
"ok",
")",
"=",
"connect_ou... | Create a client connected to an existing kernel | [
"Create",
"a",
"client",
"connected",
"to",
"an",
"existing",
"kernel"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L712-L720 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.connect_client_to_kernel | def connect_client_to_kernel(self, client, is_cython=False,
is_pylab=False, is_sympy=False):
"""Connect a client to its kernel"""
connection_file = client.connection_file
stderr_handle = None if self.test_no_stderr else client.stderr_handle
km, kc = ... | python | def connect_client_to_kernel(self, client, is_cython=False,
is_pylab=False, is_sympy=False):
"""Connect a client to its kernel"""
connection_file = client.connection_file
stderr_handle = None if self.test_no_stderr else client.stderr_handle
km, kc = ... | [
"def",
"connect_client_to_kernel",
"(",
"self",
",",
"client",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"connection_file",
"=",
"client",
".",
"connection_file",
"stderr_handle",
"=",
"None",
"if",... | Connect a client to its kernel | [
"Connect",
"a",
"client",
"to",
"its",
"kernel"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L722-L751 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.edit_file | def edit_file(self, filename, line):
"""Handle %edit magic petitions."""
if encoding.is_text_file(filename):
# The default line number sent by ipykernel is always the last
# one, but we prefer to use the first.
self.edit_goto.emit(filename, 1, '') | python | def edit_file(self, filename, line):
"""Handle %edit magic petitions."""
if encoding.is_text_file(filename):
# The default line number sent by ipykernel is always the last
# one, but we prefer to use the first.
self.edit_goto.emit(filename, 1, '') | [
"def",
"edit_file",
"(",
"self",
",",
"filename",
",",
"line",
")",
":",
"if",
"encoding",
".",
"is_text_file",
"(",
"filename",
")",
":",
"# The default line number sent by ipykernel is always the last\r",
"# one, but we prefer to use the first.\r",
"self",
".",
"edit_go... | Handle %edit magic petitions. | [
"Handle",
"%edit",
"magic",
"petitions",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L754-L759 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.config_options | def config_options(self):
"""
Generate a Trailets Config instance for shell widgets using our
config system
This lets us create each widget with its own config
"""
# ---- Jupyter config ----
try:
full_cfg = load_pyconfig_files(['jupyter_qtcon... | python | def config_options(self):
"""
Generate a Trailets Config instance for shell widgets using our
config system
This lets us create each widget with its own config
"""
# ---- Jupyter config ----
try:
full_cfg = load_pyconfig_files(['jupyter_qtcon... | [
"def",
"config_options",
"(",
"self",
")",
":",
"# ---- Jupyter config ----\r",
"try",
":",
"full_cfg",
"=",
"load_pyconfig_files",
"(",
"[",
"'jupyter_qtconsole_config.py'",
"]",
",",
"jupyter_config_dir",
"(",
")",
")",
"# From the full config we only select the JupyterWi... | Generate a Trailets Config instance for shell widgets using our
config system
This lets us create each widget with its own config | [
"Generate",
"a",
"Trailets",
"Config",
"instance",
"for",
"shell",
"widgets",
"using",
"our",
"config",
"system",
"This",
"lets",
"us",
"create",
"each",
"widget",
"with",
"its",
"own",
"config"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L761-L822 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.interpreter_versions | def interpreter_versions(self):
"""Python and IPython versions used by clients"""
if CONF.get('main_interpreter', 'default'):
from IPython.core import release
versions = dict(
python_version = sys.version.split("\n")[0].strip(),
ipython_versi... | python | def interpreter_versions(self):
"""Python and IPython versions used by clients"""
if CONF.get('main_interpreter', 'default'):
from IPython.core import release
versions = dict(
python_version = sys.version.split("\n")[0].strip(),
ipython_versi... | [
"def",
"interpreter_versions",
"(",
"self",
")",
":",
"if",
"CONF",
".",
"get",
"(",
"'main_interpreter'",
",",
"'default'",
")",
":",
"from",
"IPython",
".",
"core",
"import",
"release",
"versions",
"=",
"dict",
"(",
"python_version",
"=",
"sys",
".",
"ve... | Python and IPython versions used by clients | [
"Python",
"and",
"IPython",
"versions",
"used",
"by",
"clients"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L824-L852 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.additional_options | def additional_options(self, is_pylab=False, is_sympy=False):
"""
Additional options for shell widgets that are not defined
in JupyterWidget config options
"""
options = dict(
pylab=self.get_option('pylab'),
autoload_pylab=self.get_option('pylab/aut... | python | def additional_options(self, is_pylab=False, is_sympy=False):
"""
Additional options for shell widgets that are not defined
in JupyterWidget config options
"""
options = dict(
pylab=self.get_option('pylab'),
autoload_pylab=self.get_option('pylab/aut... | [
"def",
"additional_options",
"(",
"self",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"options",
"=",
"dict",
"(",
"pylab",
"=",
"self",
".",
"get_option",
"(",
"'pylab'",
")",
",",
"autoload_pylab",
"=",
"self",
".",
"get_opt... | Additional options for shell widgets that are not defined
in JupyterWidget config options | [
"Additional",
"options",
"for",
"shell",
"widgets",
"that",
"are",
"not",
"defined",
"in",
"JupyterWidget",
"config",
"options"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L854-L873 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.register_client | def register_client(self, client, give_focus=True):
"""Register new client"""
client.configure_shellwidget(give_focus=give_focus)
# Local vars
shellwidget = client.shellwidget
control = shellwidget._control
page_control = shellwidget._page_control
# Cre... | python | def register_client(self, client, give_focus=True):
"""Register new client"""
client.configure_shellwidget(give_focus=give_focus)
# Local vars
shellwidget = client.shellwidget
control = shellwidget._control
page_control = shellwidget._page_control
# Cre... | [
"def",
"register_client",
"(",
"self",
",",
"client",
",",
"give_focus",
"=",
"True",
")",
":",
"client",
".",
"configure_shellwidget",
"(",
"give_focus",
"=",
"give_focus",
")",
"# Local vars\r",
"shellwidget",
"=",
"client",
".",
"shellwidget",
"control",
"=",... | Register new client | [
"Register",
"new",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L875-L939 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.close_client | def close_client(self, index=None, client=None, force=False):
"""Close client tab from index or widget (or close current tab)"""
if not self.tabwidget.count():
return
if client is not None:
index = self.tabwidget.indexOf(client)
# if index is not found i... | python | def close_client(self, index=None, client=None, force=False):
"""Close client tab from index or widget (or close current tab)"""
if not self.tabwidget.count():
return
if client is not None:
index = self.tabwidget.indexOf(client)
# if index is not found i... | [
"def",
"close_client",
"(",
"self",
",",
"index",
"=",
"None",
",",
"client",
"=",
"None",
",",
"force",
"=",
"False",
")",
":",
"if",
"not",
"self",
".",
"tabwidget",
".",
"count",
"(",
")",
":",
"return",
"if",
"client",
"is",
"not",
"None",
":",... | Close client tab from index or widget (or close current tab) | [
"Close",
"client",
"tab",
"from",
"index",
"or",
"widget",
"(",
"or",
"close",
"current",
"tab",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L941-L1014 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_client_index_from_id | def get_client_index_from_id(self, client_id):
"""Return client index from id"""
for index, client in enumerate(self.clients):
if id(client) == client_id:
return index | python | def get_client_index_from_id(self, client_id):
"""Return client index from id"""
for index, client in enumerate(self.clients):
if id(client) == client_id:
return index | [
"def",
"get_client_index_from_id",
"(",
"self",
",",
"client_id",
")",
":",
"for",
"index",
",",
"client",
"in",
"enumerate",
"(",
"self",
".",
"clients",
")",
":",
"if",
"id",
"(",
"client",
")",
"==",
"client_id",
":",
"return",
"index"
] | Return client index from id | [
"Return",
"client",
"index",
"from",
"id"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1016-L1020 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_related_clients | def get_related_clients(self, client):
"""
Get all other clients that are connected to the same kernel as `client`
"""
related_clients = []
for cl in self.get_clients():
if cl.connection_file == client.connection_file and \
cl is not client:
... | python | def get_related_clients(self, client):
"""
Get all other clients that are connected to the same kernel as `client`
"""
related_clients = []
for cl in self.get_clients():
if cl.connection_file == client.connection_file and \
cl is not client:
... | [
"def",
"get_related_clients",
"(",
"self",
",",
"client",
")",
":",
"related_clients",
"=",
"[",
"]",
"for",
"cl",
"in",
"self",
".",
"get_clients",
"(",
")",
":",
"if",
"cl",
".",
"connection_file",
"==",
"client",
".",
"connection_file",
"and",
"cl",
"... | Get all other clients that are connected to the same kernel as `client` | [
"Get",
"all",
"other",
"clients",
"that",
"are",
"connected",
"to",
"the",
"same",
"kernel",
"as",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1022-L1031 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.close_related_clients | def close_related_clients(self, client):
"""Close all clients related to *client*, except itself"""
related_clients = self.get_related_clients(client)
for cl in related_clients:
self.close_client(client=cl, force=True) | python | def close_related_clients(self, client):
"""Close all clients related to *client*, except itself"""
related_clients = self.get_related_clients(client)
for cl in related_clients:
self.close_client(client=cl, force=True) | [
"def",
"close_related_clients",
"(",
"self",
",",
"client",
")",
":",
"related_clients",
"=",
"self",
".",
"get_related_clients",
"(",
"client",
")",
"for",
"cl",
"in",
"related_clients",
":",
"self",
".",
"close_client",
"(",
"client",
"=",
"cl",
",",
"forc... | Close all clients related to *client*, except itself | [
"Close",
"all",
"clients",
"related",
"to",
"*",
"client",
"*",
"except",
"itself"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1033-L1037 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.restart | def restart(self):
"""
Restart the console
This is needed when we switch projects to update PYTHONPATH
and the selected interpreter
"""
self.master_clients = 0
self.create_new_client_if_empty = False
for i in range(len(self.clients)):
... | python | def restart(self):
"""
Restart the console
This is needed when we switch projects to update PYTHONPATH
and the selected interpreter
"""
self.master_clients = 0
self.create_new_client_if_empty = False
for i in range(len(self.clients)):
... | [
"def",
"restart",
"(",
"self",
")",
":",
"self",
".",
"master_clients",
"=",
"0",
"self",
".",
"create_new_client_if_empty",
"=",
"False",
"for",
"i",
"in",
"range",
"(",
"len",
"(",
"self",
".",
"clients",
")",
")",
":",
"client",
"=",
"self",
".",
... | Restart the console
This is needed when we switch projects to update PYTHONPATH
and the selected interpreter | [
"Restart",
"the",
"console",
"This",
"is",
"needed",
"when",
"we",
"switch",
"projects",
"to",
"update",
"PYTHONPATH",
"and",
"the",
"selected",
"interpreter"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1039-L1059 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.pdb_has_stopped | def pdb_has_stopped(self, fname, lineno, shellwidget):
"""Python debugger has just stopped at frame (fname, lineno)"""
# This is a unique form of the edit_goto signal that is intended to
# prevent keyboard input from accidentally entering the editor
# during repeated, rapid entry of ... | python | def pdb_has_stopped(self, fname, lineno, shellwidget):
"""Python debugger has just stopped at frame (fname, lineno)"""
# This is a unique form of the edit_goto signal that is intended to
# prevent keyboard input from accidentally entering the editor
# during repeated, rapid entry of ... | [
"def",
"pdb_has_stopped",
"(",
"self",
",",
"fname",
",",
"lineno",
",",
"shellwidget",
")",
":",
"# This is a unique form of the edit_goto signal that is intended to\r",
"# prevent keyboard input from accidentally entering the editor\r",
"# during repeated, rapid entry of debugging comm... | Python debugger has just stopped at frame (fname, lineno) | [
"Python",
"debugger",
"has",
"just",
"stopped",
"at",
"frame",
"(",
"fname",
"lineno",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1061-L1068 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_client_from_path | def create_client_from_path(self, path):
"""Create a client with its cwd pointing to path."""
self.create_new_client()
sw = self.get_current_shellwidget()
sw.set_cwd(path) | python | def create_client_from_path(self, path):
"""Create a client with its cwd pointing to path."""
self.create_new_client()
sw = self.get_current_shellwidget()
sw.set_cwd(path) | [
"def",
"create_client_from_path",
"(",
"self",
",",
"path",
")",
":",
"self",
".",
"create_new_client",
"(",
")",
"sw",
"=",
"self",
".",
"get_current_shellwidget",
"(",
")",
"sw",
".",
"set_cwd",
"(",
"path",
")"
] | Create a client with its cwd pointing to path. | [
"Create",
"a",
"client",
"with",
"its",
"cwd",
"pointing",
"to",
"path",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1076-L1080 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_client_for_file | def create_client_for_file(self, filename, is_cython=False):
"""Create a client to execute code related to a file."""
# Create client
self.create_new_client(filename=filename, is_cython=is_cython)
# Don't increase the count of master clients
self.master_clients -= 1
... | python | def create_client_for_file(self, filename, is_cython=False):
"""Create a client to execute code related to a file."""
# Create client
self.create_new_client(filename=filename, is_cython=is_cython)
# Don't increase the count of master clients
self.master_clients -= 1
... | [
"def",
"create_client_for_file",
"(",
"self",
",",
"filename",
",",
"is_cython",
"=",
"False",
")",
":",
"# Create client\r",
"self",
".",
"create_new_client",
"(",
"filename",
"=",
"filename",
",",
"is_cython",
"=",
"is_cython",
")",
"# Don't increase the count of ... | Create a client to execute code related to a file. | [
"Create",
"a",
"client",
"to",
"execute",
"code",
"related",
"to",
"a",
"file",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1082-L1094 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_client_for_file | def get_client_for_file(self, filename):
"""Get client associated with a given file."""
client = None
for idx, cl in enumerate(self.get_clients()):
if self.filenames[idx] == filename:
self.tabwidget.setCurrentIndex(idx)
client = cl
... | python | def get_client_for_file(self, filename):
"""Get client associated with a given file."""
client = None
for idx, cl in enumerate(self.get_clients()):
if self.filenames[idx] == filename:
self.tabwidget.setCurrentIndex(idx)
client = cl
... | [
"def",
"get_client_for_file",
"(",
"self",
",",
"filename",
")",
":",
"client",
"=",
"None",
"for",
"idx",
",",
"cl",
"in",
"enumerate",
"(",
"self",
".",
"get_clients",
"(",
")",
")",
":",
"if",
"self",
".",
"filenames",
"[",
"idx",
"]",
"==",
"file... | Get client associated with a given file. | [
"Get",
"client",
"associated",
"with",
"a",
"given",
"file",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1096-L1104 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.set_elapsed_time | def set_elapsed_time(self, client):
"""Set elapsed time for slave clients."""
related_clients = self.get_related_clients(client)
for cl in related_clients:
if cl.timer is not None:
client.create_time_label()
client.t0 = cl.t0
cli... | python | def set_elapsed_time(self, client):
"""Set elapsed time for slave clients."""
related_clients = self.get_related_clients(client)
for cl in related_clients:
if cl.timer is not None:
client.create_time_label()
client.t0 = cl.t0
cli... | [
"def",
"set_elapsed_time",
"(",
"self",
",",
"client",
")",
":",
"related_clients",
"=",
"self",
".",
"get_related_clients",
"(",
"client",
")",
"for",
"cl",
"in",
"related_clients",
":",
"if",
"cl",
".",
"timer",
"is",
"not",
"None",
":",
"client",
".",
... | Set elapsed time for slave clients. | [
"Set",
"elapsed",
"time",
"for",
"slave",
"clients",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1106-L1115 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.tunnel_to_kernel | def tunnel_to_kernel(self, connection_info, hostname, sshkey=None,
password=None, timeout=10):
"""
Tunnel connections to a kernel via ssh.
Remote ports are specified in the connection info ci.
"""
lports = zmqtunnel.select_random_ports(4)
... | python | def tunnel_to_kernel(self, connection_info, hostname, sshkey=None,
password=None, timeout=10):
"""
Tunnel connections to a kernel via ssh.
Remote ports are specified in the connection info ci.
"""
lports = zmqtunnel.select_random_ports(4)
... | [
"def",
"tunnel_to_kernel",
"(",
"self",
",",
"connection_info",
",",
"hostname",
",",
"sshkey",
"=",
"None",
",",
"password",
"=",
"None",
",",
"timeout",
"=",
"10",
")",
":",
"lports",
"=",
"zmqtunnel",
".",
"select_random_ports",
"(",
"4",
")",
"rports",... | Tunnel connections to a kernel via ssh.
Remote ports are specified in the connection info ci. | [
"Tunnel",
"connections",
"to",
"a",
"kernel",
"via",
"ssh",
".",
"Remote",
"ports",
"are",
"specified",
"in",
"the",
"connection",
"info",
"ci",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1129-L1143 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_kernel_spec | def create_kernel_spec(self, is_cython=False,
is_pylab=False, is_sympy=False):
"""Create a kernel spec for our own kernels"""
# Before creating our kernel spec, we always need to
# set this value in spyder.ini
CONF.set('main', 'spyder_pythonpath',
... | python | def create_kernel_spec(self, is_cython=False,
is_pylab=False, is_sympy=False):
"""Create a kernel spec for our own kernels"""
# Before creating our kernel spec, we always need to
# set this value in spyder.ini
CONF.set('main', 'spyder_pythonpath',
... | [
"def",
"create_kernel_spec",
"(",
"self",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"# Before creating our kernel spec, we always need to\r",
"# set this value in spyder.ini\r",
"CONF",
".",
"set",
"(",
"'m... | Create a kernel spec for our own kernels | [
"Create",
"a",
"kernel",
"spec",
"for",
"our",
"own",
"kernels"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1145-L1154 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_kernel_manager_and_kernel_client | def create_kernel_manager_and_kernel_client(self, connection_file,
stderr_handle,
is_cython=False,
is_pylab=False,
is_sympy=... | python | def create_kernel_manager_and_kernel_client(self, connection_file,
stderr_handle,
is_cython=False,
is_pylab=False,
is_sympy=... | [
"def",
"create_kernel_manager_and_kernel_client",
"(",
"self",
",",
"connection_file",
",",
"stderr_handle",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"# Kernel spec\r",
"kernel_spec",
"=",
"self",
".",... | Create kernel manager and client. | [
"Create",
"kernel",
"manager",
"and",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1156-L1199 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.restart_kernel | def restart_kernel(self):
"""Restart kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.restart_kernel() | python | def restart_kernel(self):
"""Restart kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.restart_kernel() | [
"def",
"restart_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"self",
".",
"switch_to_plugin",
"(",
")",
"client",
".",
"restart_kernel",
"(",
")"
] | Restart kernel of current client. | [
"Restart",
"kernel",
"of",
"current",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1201-L1206 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.reset_kernel | def reset_kernel(self):
"""Reset kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.reset_namespace() | python | def reset_kernel(self):
"""Reset kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.reset_namespace() | [
"def",
"reset_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"self",
".",
"switch_to_plugin",
"(",
")",
"client",
".",
"reset_namespace",
"(",
")"
] | Reset kernel of current client. | [
"Reset",
"kernel",
"of",
"current",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1208-L1213 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.interrupt_kernel | def interrupt_kernel(self):
"""Interrupt kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.stop_button_click_handler() | python | def interrupt_kernel(self):
"""Interrupt kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.stop_button_click_handler() | [
"def",
"interrupt_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"self",
".",
"switch_to_plugin",
"(",
")",
"client",
".",
"stop_button_click_handler",
"(",
")"
] | Interrupt kernel of current client. | [
"Interrupt",
"kernel",
"of",
"current",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1215-L1220 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.update_execution_state_kernel | def update_execution_state_kernel(self):
"""Update actions following the execution state of the kernel."""
client = self.get_current_client()
if client is not None:
executing = client.stop_button.isEnabled()
self.interrupt_action.setEnabled(executing) | python | def update_execution_state_kernel(self):
"""Update actions following the execution state of the kernel."""
client = self.get_current_client()
if client is not None:
executing = client.stop_button.isEnabled()
self.interrupt_action.setEnabled(executing) | [
"def",
"update_execution_state_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"executing",
"=",
"client",
".",
"stop_button",
".",
"isEnabled",
"(",
")",
"self",
".",
"i... | Update actions following the execution state of the kernel. | [
"Update",
"actions",
"following",
"the",
"execution",
"state",
"of",
"the",
"kernel",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1222-L1227 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.connect_external_kernel | def connect_external_kernel(self, shellwidget):
"""
Connect an external kernel to the Variable Explorer and Help, if
it is a Spyder kernel.
"""
sw = shellwidget
kc = shellwidget.kernel_client
if self.main.help is not None:
self.main.help.set_sh... | python | def connect_external_kernel(self, shellwidget):
"""
Connect an external kernel to the Variable Explorer and Help, if
it is a Spyder kernel.
"""
sw = shellwidget
kc = shellwidget.kernel_client
if self.main.help is not None:
self.main.help.set_sh... | [
"def",
"connect_external_kernel",
"(",
"self",
",",
"shellwidget",
")",
":",
"sw",
"=",
"shellwidget",
"kc",
"=",
"shellwidget",
".",
"kernel_client",
"if",
"self",
".",
"main",
".",
"help",
"is",
"not",
"None",
":",
"self",
".",
"main",
".",
"help",
"."... | Connect an external kernel to the Variable Explorer and Help, if
it is a Spyder kernel. | [
"Connect",
"an",
"external",
"kernel",
"to",
"the",
"Variable",
"Explorer",
"and",
"Help",
"if",
"it",
"is",
"a",
"Spyder",
"kernel",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1229-L1243 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.add_tab | def add_tab(self, widget, name, filename=''):
"""Add tab"""
self.clients.append(widget)
index = self.tabwidget.addTab(widget, name)
self.filenames.insert(index, filename)
self.tabwidget.setCurrentIndex(index)
if self.dockwidget and not self.main.is_setting_up:
... | python | def add_tab(self, widget, name, filename=''):
"""Add tab"""
self.clients.append(widget)
index = self.tabwidget.addTab(widget, name)
self.filenames.insert(index, filename)
self.tabwidget.setCurrentIndex(index)
if self.dockwidget and not self.main.is_setting_up:
... | [
"def",
"add_tab",
"(",
"self",
",",
"widget",
",",
"name",
",",
"filename",
"=",
"''",
")",
":",
"self",
".",
"clients",
".",
"append",
"(",
"widget",
")",
"index",
"=",
"self",
".",
"tabwidget",
".",
"addTab",
"(",
"widget",
",",
"name",
")",
"sel... | Add tab | [
"Add",
"tab"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1246-L1256 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.move_tab | def move_tab(self, index_from, index_to):
"""
Move tab (tabs themselves have already been moved by the tabwidget)
"""
filename = self.filenames.pop(index_from)
client = self.clients.pop(index_from)
self.filenames.insert(index_to, filename)
self.clients.inse... | python | def move_tab(self, index_from, index_to):
"""
Move tab (tabs themselves have already been moved by the tabwidget)
"""
filename = self.filenames.pop(index_from)
client = self.clients.pop(index_from)
self.filenames.insert(index_to, filename)
self.clients.inse... | [
"def",
"move_tab",
"(",
"self",
",",
"index_from",
",",
"index_to",
")",
":",
"filename",
"=",
"self",
".",
"filenames",
".",
"pop",
"(",
"index_from",
")",
"client",
"=",
"self",
".",
"clients",
".",
"pop",
"(",
"index_from",
")",
"self",
".",
"filena... | Move tab (tabs themselves have already been moved by the tabwidget) | [
"Move",
"tab",
"(",
"tabs",
"themselves",
"have",
"already",
"been",
"moved",
"by",
"the",
"tabwidget",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1258-L1267 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.disambiguate_fname | def disambiguate_fname(self, fname):
"""Generate a file name without ambiguation."""
files_path_list = [filename for filename in self.filenames
if filename]
return sourcecode.disambiguate_fname(files_path_list, fname) | python | def disambiguate_fname(self, fname):
"""Generate a file name without ambiguation."""
files_path_list = [filename for filename in self.filenames
if filename]
return sourcecode.disambiguate_fname(files_path_list, fname) | [
"def",
"disambiguate_fname",
"(",
"self",
",",
"fname",
")",
":",
"files_path_list",
"=",
"[",
"filename",
"for",
"filename",
"in",
"self",
".",
"filenames",
"if",
"filename",
"]",
"return",
"sourcecode",
".",
"disambiguate_fname",
"(",
"files_path_list",
",",
... | Generate a file name without ambiguation. | [
"Generate",
"a",
"file",
"name",
"without",
"ambiguation",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1269-L1273 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.update_tabs_text | def update_tabs_text(self):
"""Update the text from the tabs."""
# This is needed to prevent that hanged consoles make reference
# to an index that doesn't exist. See issue 4881
try:
for index, fname in enumerate(self.filenames):
client = self.clients[in... | python | def update_tabs_text(self):
"""Update the text from the tabs."""
# This is needed to prevent that hanged consoles make reference
# to an index that doesn't exist. See issue 4881
try:
for index, fname in enumerate(self.filenames):
client = self.clients[in... | [
"def",
"update_tabs_text",
"(",
"self",
")",
":",
"# This is needed to prevent that hanged consoles make reference\r",
"# to an index that doesn't exist. See issue 4881\r",
"try",
":",
"for",
"index",
",",
"fname",
"in",
"enumerate",
"(",
"self",
".",
"filenames",
")",
":",... | Update the text from the tabs. | [
"Update",
"the",
"text",
"from",
"the",
"tabs",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1275-L1288 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.rename_client_tab | def rename_client_tab(self, client, given_name):
"""Rename client's tab"""
index = self.get_client_index_from_id(id(client))
if given_name is not None:
client.given_name = given_name
self.tabwidget.setTabText(index, client.get_name()) | python | def rename_client_tab(self, client, given_name):
"""Rename client's tab"""
index = self.get_client_index_from_id(id(client))
if given_name is not None:
client.given_name = given_name
self.tabwidget.setTabText(index, client.get_name()) | [
"def",
"rename_client_tab",
"(",
"self",
",",
"client",
",",
"given_name",
")",
":",
"index",
"=",
"self",
".",
"get_client_index_from_id",
"(",
"id",
"(",
"client",
")",
")",
"if",
"given_name",
"is",
"not",
"None",
":",
"client",
".",
"given_name",
"=",
... | Rename client's tab | [
"Rename",
"client",
"s",
"tab"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1290-L1296 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.rename_tabs_after_change | def rename_tabs_after_change(self, given_name):
"""Rename tabs after a change in name."""
client = self.get_current_client()
# Prevent renames that want to assign the same name of
# a previous tab
repeated = False
for cl in self.get_clients():
if id(c... | python | def rename_tabs_after_change(self, given_name):
"""Rename tabs after a change in name."""
client = self.get_current_client()
# Prevent renames that want to assign the same name of
# a previous tab
repeated = False
for cl in self.get_clients():
if id(c... | [
"def",
"rename_tabs_after_change",
"(",
"self",
",",
"given_name",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"# Prevent renames that want to assign the same name of\r",
"# a previous tab\r",
"repeated",
"=",
"False",
"for",
"cl",
"in",
"self"... | Rename tabs after a change in name. | [
"Rename",
"tabs",
"after",
"a",
"change",
"in",
"name",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1298-L1319 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.tab_name_editor | def tab_name_editor(self):
"""Trigger the tab name editor."""
index = self.tabwidget.currentIndex()
self.tabwidget.tabBar().tab_name_editor.edit_tab(index) | python | def tab_name_editor(self):
"""Trigger the tab name editor."""
index = self.tabwidget.currentIndex()
self.tabwidget.tabBar().tab_name_editor.edit_tab(index) | [
"def",
"tab_name_editor",
"(",
"self",
")",
":",
"index",
"=",
"self",
".",
"tabwidget",
".",
"currentIndex",
"(",
")",
"self",
".",
"tabwidget",
".",
"tabBar",
"(",
")",
".",
"tab_name_editor",
".",
"edit_tab",
"(",
"index",
")"
] | Trigger the tab name editor. | [
"Trigger",
"the",
"tab",
"name",
"editor",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1321-L1324 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.go_to_error | def go_to_error(self, text):
"""Go to error if relevant"""
match = get_error_match(to_text_string(text))
if match:
fname, lnb = match.groups()
if ("<ipython-input-" in fname and
self.run_cell_filename is not None):
fname = self.r... | python | def go_to_error(self, text):
"""Go to error if relevant"""
match = get_error_match(to_text_string(text))
if match:
fname, lnb = match.groups()
if ("<ipython-input-" in fname and
self.run_cell_filename is not None):
fname = self.r... | [
"def",
"go_to_error",
"(",
"self",
",",
"text",
")",
":",
"match",
"=",
"get_error_match",
"(",
"to_text_string",
"(",
"text",
")",
")",
"if",
"match",
":",
"fname",
",",
"lnb",
"=",
"match",
".",
"groups",
"(",
")",
"if",
"(",
"\"<ipython-input-\"",
"... | Go to error if relevant | [
"Go",
"to",
"error",
"if",
"relevant"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1327-L1335 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.show_intro | def show_intro(self):
"""Show intro to IPython help"""
from IPython.core.usage import interactive_usage
self.main.help.show_rich_text(interactive_usage) | python | def show_intro(self):
"""Show intro to IPython help"""
from IPython.core.usage import interactive_usage
self.main.help.show_rich_text(interactive_usage) | [
"def",
"show_intro",
"(",
"self",
")",
":",
"from",
"IPython",
".",
"core",
".",
"usage",
"import",
"interactive_usage",
"self",
".",
"main",
".",
"help",
".",
"show_rich_text",
"(",
"interactive_usage",
")"
] | Show intro to IPython help | [
"Show",
"intro",
"to",
"IPython",
"help"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1338-L1341 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.show_guiref | def show_guiref(self):
"""Show qtconsole help"""
from qtconsole.usage import gui_reference
self.main.help.show_rich_text(gui_reference, collapse=True) | python | def show_guiref(self):
"""Show qtconsole help"""
from qtconsole.usage import gui_reference
self.main.help.show_rich_text(gui_reference, collapse=True) | [
"def",
"show_guiref",
"(",
"self",
")",
":",
"from",
"qtconsole",
".",
"usage",
"import",
"gui_reference",
"self",
".",
"main",
".",
"help",
".",
"show_rich_text",
"(",
"gui_reference",
",",
"collapse",
"=",
"True",
")"
] | Show qtconsole help | [
"Show",
"qtconsole",
"help"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1344-L1347 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.show_quickref | def show_quickref(self):
"""Show IPython Cheat Sheet"""
from IPython.core.usage import quick_reference
self.main.help.show_plain_text(quick_reference) | python | def show_quickref(self):
"""Show IPython Cheat Sheet"""
from IPython.core.usage import quick_reference
self.main.help.show_plain_text(quick_reference) | [
"def",
"show_quickref",
"(",
"self",
")",
":",
"from",
"IPython",
".",
"core",
".",
"usage",
"import",
"quick_reference",
"self",
".",
"main",
".",
"help",
".",
"show_plain_text",
"(",
"quick_reference",
")"
] | Show IPython Cheat Sheet | [
"Show",
"IPython",
"Cheat",
"Sheet"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1350-L1353 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole._new_connection_file | def _new_connection_file(self):
"""
Generate a new connection file
Taken from jupyter_client/console_app.py
Licensed under the BSD license
"""
# Check if jupyter_runtime_dir exists (Spyder addition)
if not osp.isdir(jupyter_runtime_dir()):
tr... | python | def _new_connection_file(self):
"""
Generate a new connection file
Taken from jupyter_client/console_app.py
Licensed under the BSD license
"""
# Check if jupyter_runtime_dir exists (Spyder addition)
if not osp.isdir(jupyter_runtime_dir()):
tr... | [
"def",
"_new_connection_file",
"(",
"self",
")",
":",
"# Check if jupyter_runtime_dir exists (Spyder addition)\r",
"if",
"not",
"osp",
".",
"isdir",
"(",
"jupyter_runtime_dir",
"(",
")",
")",
":",
"try",
":",
"os",
".",
"makedirs",
"(",
"jupyter_runtime_dir",
"(",
... | Generate a new connection file
Taken from jupyter_client/console_app.py
Licensed under the BSD license | [
"Generate",
"a",
"new",
"connection",
"file",
"Taken",
"from",
"jupyter_client",
"/",
"console_app",
".",
"py",
"Licensed",
"under",
"the",
"BSD",
"license"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1356-L1374 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole._remove_old_stderr_files | def _remove_old_stderr_files(self):
"""
Remove stderr files left by previous Spyder instances.
This is only required on Windows because we can't
clean up stderr files while Spyder is running on it.
"""
if os.name == 'nt':
tmpdir = get_temp_dir()
... | python | def _remove_old_stderr_files(self):
"""
Remove stderr files left by previous Spyder instances.
This is only required on Windows because we can't
clean up stderr files while Spyder is running on it.
"""
if os.name == 'nt':
tmpdir = get_temp_dir()
... | [
"def",
"_remove_old_stderr_files",
"(",
"self",
")",
":",
"if",
"os",
".",
"name",
"==",
"'nt'",
":",
"tmpdir",
"=",
"get_temp_dir",
"(",
")",
"for",
"fname",
"in",
"os",
".",
"listdir",
"(",
"tmpdir",
")",
":",
"if",
"osp",
".",
"splitext",
"(",
"fn... | Remove stderr files left by previous Spyder instances.
This is only required on Windows because we can't
clean up stderr files while Spyder is running on it. | [
"Remove",
"stderr",
"files",
"left",
"by",
"previous",
"Spyder",
"instances",
".",
"This",
"is",
"only",
"required",
"on",
"Windows",
"because",
"we",
"can",
"t",
"clean",
"up",
"stderr",
"files",
"while",
"Spyder",
"is",
"running",
"on",
"it",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1504-L1518 | train |
spyder-ide/spyder | spyder/plugins/editor/utils/kill_ring.py | KillRing.rotate | def rotate(self):
""" Rotate the kill ring, then yank back the new top.
Returns
-------
A text string or None.
"""
self._index -= 1
if self._index >= 0:
return self._ring[self._index]
return None | python | def rotate(self):
""" Rotate the kill ring, then yank back the new top.
Returns
-------
A text string or None.
"""
self._index -= 1
if self._index >= 0:
return self._ring[self._index]
return None | [
"def",
"rotate",
"(",
"self",
")",
":",
"self",
".",
"_index",
"-=",
"1",
"if",
"self",
".",
"_index",
">=",
"0",
":",
"return",
"self",
".",
"_ring",
"[",
"self",
".",
"_index",
"]",
"return",
"None"
] | Rotate the kill ring, then yank back the new top.
Returns
-------
A text string or None. | [
"Rotate",
"the",
"kill",
"ring",
"then",
"yank",
"back",
"the",
"new",
"top",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/utils/kill_ring.py#L55-L65 | train |
spyder-ide/spyder | spyder/plugins/editor/utils/kill_ring.py | QtKillRing.kill_cursor | def kill_cursor(self, cursor):
""" Kills the text selected by the give cursor.
"""
text = cursor.selectedText()
if text:
cursor.removeSelectedText()
self.kill(text) | python | def kill_cursor(self, cursor):
""" Kills the text selected by the give cursor.
"""
text = cursor.selectedText()
if text:
cursor.removeSelectedText()
self.kill(text) | [
"def",
"kill_cursor",
"(",
"self",
",",
"cursor",
")",
":",
"text",
"=",
"cursor",
".",
"selectedText",
"(",
")",
"if",
"text",
":",
"cursor",
".",
"removeSelectedText",
"(",
")",
"self",
".",
"kill",
"(",
"text",
")"
] | Kills the text selected by the give cursor. | [
"Kills",
"the",
"text",
"selected",
"by",
"the",
"give",
"cursor",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/utils/kill_ring.py#L100-L106 | train |
spyder-ide/spyder | spyder/plugins/editor/utils/kill_ring.py | QtKillRing.yank | def yank(self):
""" Yank back the most recently killed text.
"""
text = self._ring.yank()
if text:
self._skip_cursor = True
cursor = self._text_edit.textCursor()
cursor.insertText(text)
self._prev_yank = text | python | def yank(self):
""" Yank back the most recently killed text.
"""
text = self._ring.yank()
if text:
self._skip_cursor = True
cursor = self._text_edit.textCursor()
cursor.insertText(text)
self._prev_yank = text | [
"def",
"yank",
"(",
"self",
")",
":",
"text",
"=",
"self",
".",
"_ring",
".",
"yank",
"(",
")",
"if",
"text",
":",
"self",
".",
"_skip_cursor",
"=",
"True",
"cursor",
"=",
"self",
".",
"_text_edit",
".",
"textCursor",
"(",
")",
"cursor",
".",
"inse... | Yank back the most recently killed text. | [
"Yank",
"back",
"the",
"most",
"recently",
"killed",
"text",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/utils/kill_ring.py#L108-L116 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | show_in_external_file_explorer | def show_in_external_file_explorer(fnames=None):
"""Show files in external file explorer
Args:
fnames (list): Names of files to show.
"""
if not isinstance(fnames, (tuple, list)):
fnames = [fnames]
for fname in fnames:
open_file_in_external_explorer(fname) | python | def show_in_external_file_explorer(fnames=None):
"""Show files in external file explorer
Args:
fnames (list): Names of files to show.
"""
if not isinstance(fnames, (tuple, list)):
fnames = [fnames]
for fname in fnames:
open_file_in_external_explorer(fname) | [
"def",
"show_in_external_file_explorer",
"(",
"fnames",
"=",
"None",
")",
":",
"if",
"not",
"isinstance",
"(",
"fnames",
",",
"(",
"tuple",
",",
"list",
")",
")",
":",
"fnames",
"=",
"[",
"fnames",
"]",
"for",
"fname",
"in",
"fnames",
":",
"open_file_in_... | Show files in external file explorer
Args:
fnames (list): Names of files to show. | [
"Show",
"files",
"in",
"external",
"file",
"explorer",
"Args",
":",
"fnames",
"(",
"list",
")",
":",
"Names",
"of",
"files",
"to",
"show",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L60-L69 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | fixpath | def fixpath(path):
"""Normalize path fixing case, making absolute and removing symlinks"""
norm = osp.normcase if os.name == 'nt' else osp.normpath
return norm(osp.abspath(osp.realpath(path))) | python | def fixpath(path):
"""Normalize path fixing case, making absolute and removing symlinks"""
norm = osp.normcase if os.name == 'nt' else osp.normpath
return norm(osp.abspath(osp.realpath(path))) | [
"def",
"fixpath",
"(",
"path",
")",
":",
"norm",
"=",
"osp",
".",
"normcase",
"if",
"os",
".",
"name",
"==",
"'nt'",
"else",
"osp",
".",
"normpath",
"return",
"norm",
"(",
"osp",
".",
"abspath",
"(",
"osp",
".",
"realpath",
"(",
"path",
")",
")",
... | Normalize path fixing case, making absolute and removing symlinks | [
"Normalize",
"path",
"fixing",
"case",
"making",
"absolute",
"and",
"removing",
"symlinks"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L71-L74 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | create_script | def create_script(fname):
"""Create a new Python script"""
text = os.linesep.join(["# -*- coding: utf-8 -*-", "", ""])
try:
encoding.write(to_text_string(text), fname, 'utf-8')
except EnvironmentError as error:
QMessageBox.critical(_("Save Error"),
_("... | python | def create_script(fname):
"""Create a new Python script"""
text = os.linesep.join(["# -*- coding: utf-8 -*-", "", ""])
try:
encoding.write(to_text_string(text), fname, 'utf-8')
except EnvironmentError as error:
QMessageBox.critical(_("Save Error"),
_("... | [
"def",
"create_script",
"(",
"fname",
")",
":",
"text",
"=",
"os",
".",
"linesep",
".",
"join",
"(",
"[",
"\"# -*- coding: utf-8 -*-\"",
",",
"\"\"",
",",
"\"\"",
"]",
")",
"try",
":",
"encoding",
".",
"write",
"(",
"to_text_string",
"(",
"text",
")",
... | Create a new Python script | [
"Create",
"a",
"new",
"Python",
"script"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L77-L86 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | listdir | def listdir(path, include=r'.', exclude=r'\.pyc$|^\.', show_all=False,
folders_only=False):
"""List files and directories"""
namelist = []
dirlist = [to_text_string(osp.pardir)]
for item in os.listdir(to_text_string(path)):
if re.search(exclude, item) and not show_all:
... | python | def listdir(path, include=r'.', exclude=r'\.pyc$|^\.', show_all=False,
folders_only=False):
"""List files and directories"""
namelist = []
dirlist = [to_text_string(osp.pardir)]
for item in os.listdir(to_text_string(path)):
if re.search(exclude, item) and not show_all:
... | [
"def",
"listdir",
"(",
"path",
",",
"include",
"=",
"r'.'",
",",
"exclude",
"=",
"r'\\.pyc$|^\\.'",
",",
"show_all",
"=",
"False",
",",
"folders_only",
"=",
"False",
")",
":",
"namelist",
"=",
"[",
"]",
"dirlist",
"=",
"[",
"to_text_string",
"(",
"osp",
... | List files and directories | [
"List",
"files",
"and",
"directories"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L88-L103 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | has_subdirectories | def has_subdirectories(path, include, exclude, show_all):
"""Return True if path has subdirectories"""
try:
# > 1 because of '..'
return len( listdir(path, include, exclude,
show_all, folders_only=True) ) > 1
except (IOError, OSError):
return False | python | def has_subdirectories(path, include, exclude, show_all):
"""Return True if path has subdirectories"""
try:
# > 1 because of '..'
return len( listdir(path, include, exclude,
show_all, folders_only=True) ) > 1
except (IOError, OSError):
return False | [
"def",
"has_subdirectories",
"(",
"path",
",",
"include",
",",
"exclude",
",",
"show_all",
")",
":",
"try",
":",
"# > 1 because of '..'\r",
"return",
"len",
"(",
"listdir",
"(",
"path",
",",
"include",
",",
"exclude",
",",
"show_all",
",",
"folders_only",
"=... | Return True if path has subdirectories | [
"Return",
"True",
"if",
"path",
"has",
"subdirectories"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L106-L113 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | IconProvider.icon | def icon(self, icontype_or_qfileinfo):
"""Reimplement Qt method"""
if isinstance(icontype_or_qfileinfo, QFileIconProvider.IconType):
return super(IconProvider, self).icon(icontype_or_qfileinfo)
else:
qfileinfo = icontype_or_qfileinfo
fname = osp.normpath... | python | def icon(self, icontype_or_qfileinfo):
"""Reimplement Qt method"""
if isinstance(icontype_or_qfileinfo, QFileIconProvider.IconType):
return super(IconProvider, self).icon(icontype_or_qfileinfo)
else:
qfileinfo = icontype_or_qfileinfo
fname = osp.normpath... | [
"def",
"icon",
"(",
"self",
",",
"icontype_or_qfileinfo",
")",
":",
"if",
"isinstance",
"(",
"icontype_or_qfileinfo",
",",
"QFileIconProvider",
".",
"IconType",
")",
":",
"return",
"super",
"(",
"IconProvider",
",",
"self",
")",
".",
"icon",
"(",
"icontype_or_... | Reimplement Qt method | [
"Reimplement",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L125-L132 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | DirView.setup_fs_model | def setup_fs_model(self):
"""Setup filesystem model"""
filters = QDir.AllDirs | QDir.Files | QDir.Drives | QDir.NoDotAndDotDot
self.fsmodel = QFileSystemModel(self)
self.fsmodel.setFilter(filters)
self.fsmodel.setNameFilterDisables(False) | python | def setup_fs_model(self):
"""Setup filesystem model"""
filters = QDir.AllDirs | QDir.Files | QDir.Drives | QDir.NoDotAndDotDot
self.fsmodel = QFileSystemModel(self)
self.fsmodel.setFilter(filters)
self.fsmodel.setNameFilterDisables(False) | [
"def",
"setup_fs_model",
"(",
"self",
")",
":",
"filters",
"=",
"QDir",
".",
"AllDirs",
"|",
"QDir",
".",
"Files",
"|",
"QDir",
".",
"Drives",
"|",
"QDir",
".",
"NoDotAndDotDot",
"self",
".",
"fsmodel",
"=",
"QFileSystemModel",
"(",
"self",
")",
"self",
... | Setup filesystem model | [
"Setup",
"filesystem",
"model"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L167-L172 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | DirView.setup_view | def setup_view(self):
"""Setup view"""
self.install_model()
self.fsmodel.directoryLoaded.connect(
lambda: self.resizeColumnToContents(0))
self.setAnimated(False)
self.setSortingEnabled(True)
self.sortByColumn(0, Qt.AscendingOrder)
self.fsmodel.... | python | def setup_view(self):
"""Setup view"""
self.install_model()
self.fsmodel.directoryLoaded.connect(
lambda: self.resizeColumnToContents(0))
self.setAnimated(False)
self.setSortingEnabled(True)
self.sortByColumn(0, Qt.AscendingOrder)
self.fsmodel.... | [
"def",
"setup_view",
"(",
"self",
")",
":",
"self",
".",
"install_model",
"(",
")",
"self",
".",
"fsmodel",
".",
"directoryLoaded",
".",
"connect",
"(",
"lambda",
":",
"self",
".",
"resizeColumnToContents",
"(",
"0",
")",
")",
"self",
".",
"setAnimated",
... | Setup view | [
"Setup",
"view"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L178-L189 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | DirView.set_single_click_to_open | def set_single_click_to_open(self, value):
"""Set single click to open items."""
self.single_click_to_open = value
self.parent_widget.sig_option_changed.emit('single_click_to_open',
value) | python | def set_single_click_to_open(self, value):
"""Set single click to open items."""
self.single_click_to_open = value
self.parent_widget.sig_option_changed.emit('single_click_to_open',
value) | [
"def",
"set_single_click_to_open",
"(",
"self",
",",
"value",
")",
":",
"self",
".",
"single_click_to_open",
"=",
"value",
"self",
".",
"parent_widget",
".",
"sig_option_changed",
".",
"emit",
"(",
"'single_click_to_open'",
",",
"value",
")"
] | Set single click to open items. | [
"Set",
"single",
"click",
"to",
"open",
"items",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L191-L195 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | DirView.set_name_filters | def set_name_filters(self, name_filters):
"""Set name filters"""
self.name_filters = name_filters
self.fsmodel.setNameFilters(name_filters) | python | def set_name_filters(self, name_filters):
"""Set name filters"""
self.name_filters = name_filters
self.fsmodel.setNameFilters(name_filters) | [
"def",
"set_name_filters",
"(",
"self",
",",
"name_filters",
")",
":",
"self",
".",
"name_filters",
"=",
"name_filters",
"self",
".",
"fsmodel",
".",
"setNameFilters",
"(",
"name_filters",
")"
] | Set name filters | [
"Set",
"name",
"filters"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L197-L200 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | DirView.set_show_all | def set_show_all(self, state):
"""Toggle 'show all files' state"""
if state:
self.fsmodel.setNameFilters([])
else:
self.fsmodel.setNameFilters(self.name_filters) | python | def set_show_all(self, state):
"""Toggle 'show all files' state"""
if state:
self.fsmodel.setNameFilters([])
else:
self.fsmodel.setNameFilters(self.name_filters) | [
"def",
"set_show_all",
"(",
"self",
",",
"state",
")",
":",
"if",
"state",
":",
"self",
".",
"fsmodel",
".",
"setNameFilters",
"(",
"[",
"]",
")",
"else",
":",
"self",
".",
"fsmodel",
".",
"setNameFilters",
"(",
"self",
".",
"name_filters",
")"
] | Toggle 'show all files' state | [
"Toggle",
"show",
"all",
"files",
"state"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L202-L207 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | DirView.get_filename | def get_filename(self, index):
"""Return filename associated with *index*"""
if index:
return osp.normpath(to_text_string(self.fsmodel.filePath(index))) | python | def get_filename(self, index):
"""Return filename associated with *index*"""
if index:
return osp.normpath(to_text_string(self.fsmodel.filePath(index))) | [
"def",
"get_filename",
"(",
"self",
",",
"index",
")",
":",
"if",
"index",
":",
"return",
"osp",
".",
"normpath",
"(",
"to_text_string",
"(",
"self",
".",
"fsmodel",
".",
"filePath",
"(",
"index",
")",
")",
")"
] | Return filename associated with *index* | [
"Return",
"filename",
"associated",
"with",
"*",
"index",
"*"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L209-L212 | train |
spyder-ide/spyder | spyder/plugins/explorer/widgets.py | DirView.get_selected_filenames | def get_selected_filenames(self):
"""Return selected filenames"""
if self.selectionMode() == self.ExtendedSelection:
if self.selectionModel() is None:
return []
return [self.get_filename(idx) for idx in
self.selectionModel().selectedRows... | python | def get_selected_filenames(self):
"""Return selected filenames"""
if self.selectionMode() == self.ExtendedSelection:
if self.selectionModel() is None:
return []
return [self.get_filename(idx) for idx in
self.selectionModel().selectedRows... | [
"def",
"get_selected_filenames",
"(",
"self",
")",
":",
"if",
"self",
".",
"selectionMode",
"(",
")",
"==",
"self",
".",
"ExtendedSelection",
":",
"if",
"self",
".",
"selectionModel",
"(",
")",
"is",
"None",
":",
"return",
"[",
"]",
"return",
"[",
"self"... | Return selected filenames | [
"Return",
"selected",
"filenames"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/widgets.py#L218-L226 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.