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/preferences/shortcuts.py | ShortcutsTable.focusInEvent | def focusInEvent(self, e):
"""Qt Override."""
super(ShortcutsTable, self).focusInEvent(e)
self.selectRow(self.currentIndex().row()) | python | def focusInEvent(self, e):
"""Qt Override."""
super(ShortcutsTable, self).focusInEvent(e)
self.selectRow(self.currentIndex().row()) | [
"def",
"focusInEvent",
"(",
"self",
",",
"e",
")",
":",
"super",
"(",
"ShortcutsTable",
",",
"self",
")",
".",
"focusInEvent",
"(",
"e",
")",
"self",
".",
"selectRow",
"(",
"self",
".",
"currentIndex",
"(",
")",
".",
"row",
"(",
")",
")"
] | Qt Override. | [
"Qt",
"Override",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L719-L722 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.adjust_cells | def adjust_cells(self):
"""Adjust column size based on contents."""
self.resizeColumnsToContents()
fm = self.horizontalHeader().fontMetrics()
names = [fm.width(s.name + ' '*9) for s in self.source_model.shortcuts]
self.setColumnWidth(NAME, max(names))
self.horizonta... | python | def adjust_cells(self):
"""Adjust column size based on contents."""
self.resizeColumnsToContents()
fm = self.horizontalHeader().fontMetrics()
names = [fm.width(s.name + ' '*9) for s in self.source_model.shortcuts]
self.setColumnWidth(NAME, max(names))
self.horizonta... | [
"def",
"adjust_cells",
"(",
"self",
")",
":",
"self",
".",
"resizeColumnsToContents",
"(",
")",
"fm",
"=",
"self",
".",
"horizontalHeader",
"(",
")",
".",
"fontMetrics",
"(",
")",
"names",
"=",
"[",
"fm",
".",
"width",
"(",
"s",
".",
"name",
"+",
"' ... | Adjust column size based on contents. | [
"Adjust",
"column",
"size",
"based",
"on",
"contents",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L729-L735 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.load_shortcuts | def load_shortcuts(self):
"""Load shortcuts and assign to table model."""
shortcuts = []
for context, name, keystr in iter_shortcuts():
shortcut = Shortcut(context, name, keystr)
shortcuts.append(shortcut)
shortcuts = sorted(shortcuts, key=lambda x: x.contex... | python | def load_shortcuts(self):
"""Load shortcuts and assign to table model."""
shortcuts = []
for context, name, keystr in iter_shortcuts():
shortcut = Shortcut(context, name, keystr)
shortcuts.append(shortcut)
shortcuts = sorted(shortcuts, key=lambda x: x.contex... | [
"def",
"load_shortcuts",
"(",
"self",
")",
":",
"shortcuts",
"=",
"[",
"]",
"for",
"context",
",",
"name",
",",
"keystr",
"in",
"iter_shortcuts",
"(",
")",
":",
"shortcut",
"=",
"Shortcut",
"(",
"context",
",",
"name",
",",
"keystr",
")",
"shortcuts",
... | Load shortcuts and assign to table model. | [
"Load",
"shortcuts",
"and",
"assign",
"to",
"table",
"model",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L737-L752 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.check_shortcuts | def check_shortcuts(self):
"""Check shortcuts for conflicts."""
conflicts = []
for index, sh1 in enumerate(self.source_model.shortcuts):
if index == len(self.source_model.shortcuts)-1:
break
if str(sh1.key) == '':
continue
... | python | def check_shortcuts(self):
"""Check shortcuts for conflicts."""
conflicts = []
for index, sh1 in enumerate(self.source_model.shortcuts):
if index == len(self.source_model.shortcuts)-1:
break
if str(sh1.key) == '':
continue
... | [
"def",
"check_shortcuts",
"(",
"self",
")",
":",
"conflicts",
"=",
"[",
"]",
"for",
"index",
",",
"sh1",
"in",
"enumerate",
"(",
"self",
".",
"source_model",
".",
"shortcuts",
")",
":",
"if",
"index",
"==",
"len",
"(",
"self",
".",
"source_model",
".",... | Check shortcuts for conflicts. | [
"Check",
"shortcuts",
"for",
"conflicts",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L754-L775 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.save_shortcuts | def save_shortcuts(self):
"""Save shortcuts from table model."""
self.check_shortcuts()
for shortcut in self.source_model.shortcuts:
shortcut.save() | python | def save_shortcuts(self):
"""Save shortcuts from table model."""
self.check_shortcuts()
for shortcut in self.source_model.shortcuts:
shortcut.save() | [
"def",
"save_shortcuts",
"(",
"self",
")",
":",
"self",
".",
"check_shortcuts",
"(",
")",
"for",
"shortcut",
"in",
"self",
".",
"source_model",
".",
"shortcuts",
":",
"shortcut",
".",
"save",
"(",
")"
] | Save shortcuts from table model. | [
"Save",
"shortcuts",
"from",
"table",
"model",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L777-L781 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.show_editor | def show_editor(self):
"""Create, setup and display the shortcut editor dialog."""
index = self.proxy_model.mapToSource(self.currentIndex())
row, column = index.row(), index.column()
shortcuts = self.source_model.shortcuts
context = shortcuts[row].context
name = sho... | python | def show_editor(self):
"""Create, setup and display the shortcut editor dialog."""
index = self.proxy_model.mapToSource(self.currentIndex())
row, column = index.row(), index.column()
shortcuts = self.source_model.shortcuts
context = shortcuts[row].context
name = sho... | [
"def",
"show_editor",
"(",
"self",
")",
":",
"index",
"=",
"self",
".",
"proxy_model",
".",
"mapToSource",
"(",
"self",
".",
"currentIndex",
"(",
")",
")",
"row",
",",
"column",
"=",
"index",
".",
"row",
"(",
")",
",",
"index",
".",
"column",
"(",
... | Create, setup and display the shortcut editor dialog. | [
"Create",
"setup",
"and",
"display",
"the",
"shortcut",
"editor",
"dialog",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L783-L798 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.set_regex | def set_regex(self, regex=None, reset=False):
"""Update the regex text for the shortcut finder."""
if reset:
text = ''
else:
text = self.finder.text().replace(' ', '').lower()
self.proxy_model.set_filter(text)
self.source_model.update_search_lette... | python | def set_regex(self, regex=None, reset=False):
"""Update the regex text for the shortcut finder."""
if reset:
text = ''
else:
text = self.finder.text().replace(' ', '').lower()
self.proxy_model.set_filter(text)
self.source_model.update_search_lette... | [
"def",
"set_regex",
"(",
"self",
",",
"regex",
"=",
"None",
",",
"reset",
"=",
"False",
")",
":",
"if",
"reset",
":",
"text",
"=",
"''",
"else",
":",
"text",
"=",
"self",
".",
"finder",
".",
"text",
"(",
")",
".",
"replace",
"(",
"' '",
",",
"'... | Update the regex text for the shortcut finder. | [
"Update",
"the",
"regex",
"text",
"for",
"the",
"shortcut",
"finder",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L800-L813 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.next_row | def next_row(self):
"""Move to next row from currently selected row."""
row = self.currentIndex().row()
rows = self.proxy_model.rowCount()
if row + 1 == rows:
row = -1
self.selectRow(row + 1) | python | def next_row(self):
"""Move to next row from currently selected row."""
row = self.currentIndex().row()
rows = self.proxy_model.rowCount()
if row + 1 == rows:
row = -1
self.selectRow(row + 1) | [
"def",
"next_row",
"(",
"self",
")",
":",
"row",
"=",
"self",
".",
"currentIndex",
"(",
")",
".",
"row",
"(",
")",
"rows",
"=",
"self",
".",
"proxy_model",
".",
"rowCount",
"(",
")",
"if",
"row",
"+",
"1",
"==",
"rows",
":",
"row",
"=",
"-",
"1... | Move to next row from currently selected row. | [
"Move",
"to",
"next",
"row",
"from",
"currently",
"selected",
"row",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L815-L821 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.previous_row | def previous_row(self):
"""Move to previous row from currently selected row."""
row = self.currentIndex().row()
rows = self.proxy_model.rowCount()
if row == 0:
row = rows
self.selectRow(row - 1) | python | def previous_row(self):
"""Move to previous row from currently selected row."""
row = self.currentIndex().row()
rows = self.proxy_model.rowCount()
if row == 0:
row = rows
self.selectRow(row - 1) | [
"def",
"previous_row",
"(",
"self",
")",
":",
"row",
"=",
"self",
".",
"currentIndex",
"(",
")",
".",
"row",
"(",
")",
"rows",
"=",
"self",
".",
"proxy_model",
".",
"rowCount",
"(",
")",
"if",
"row",
"==",
"0",
":",
"row",
"=",
"rows",
"self",
".... | Move to previous row from currently selected row. | [
"Move",
"to",
"previous",
"row",
"from",
"currently",
"selected",
"row",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L823-L829 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsTable.keyPressEvent | def keyPressEvent(self, event):
"""Qt Override."""
key = event.key()
if key in [Qt.Key_Enter, Qt.Key_Return]:
self.show_editor()
elif key in [Qt.Key_Tab]:
self.finder.setFocus()
elif key in [Qt.Key_Backtab]:
self.parent().reset_btn.setF... | python | def keyPressEvent(self, event):
"""Qt Override."""
key = event.key()
if key in [Qt.Key_Enter, Qt.Key_Return]:
self.show_editor()
elif key in [Qt.Key_Tab]:
self.finder.setFocus()
elif key in [Qt.Key_Backtab]:
self.parent().reset_btn.setF... | [
"def",
"keyPressEvent",
"(",
"self",
",",
"event",
")",
":",
"key",
"=",
"event",
".",
"key",
"(",
")",
"if",
"key",
"in",
"[",
"Qt",
".",
"Key_Enter",
",",
"Qt",
".",
"Key_Return",
"]",
":",
"self",
".",
"show_editor",
"(",
")",
"elif",
"key",
"... | Qt Override. | [
"Qt",
"Override",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L831-L849 | train |
spyder-ide/spyder | spyder/preferences/shortcuts.py | ShortcutsConfigPage.reset_to_default | def reset_to_default(self):
"""Reset to default values of the shortcuts making a confirmation."""
reset = QMessageBox.warning(self, _("Shortcuts reset"),
_("Do you want to reset "
"to default values?"),
... | python | def reset_to_default(self):
"""Reset to default values of the shortcuts making a confirmation."""
reset = QMessageBox.warning(self, _("Shortcuts reset"),
_("Do you want to reset "
"to default values?"),
... | [
"def",
"reset_to_default",
"(",
"self",
")",
":",
"reset",
"=",
"QMessageBox",
".",
"warning",
"(",
"self",
",",
"_",
"(",
"\"Shortcuts reset\"",
")",
",",
"_",
"(",
"\"Do you want to reset \"",
"\"to default values?\"",
")",
",",
"QMessageBox",
".",
"Yes",
"|... | Reset to default values of the shortcuts making a confirmation. | [
"Reset",
"to",
"default",
"values",
"of",
"the",
"shortcuts",
"making",
"a",
"confirmation",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/shortcuts.py#L895-L907 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | get_color_scheme | def get_color_scheme(name):
"""Get a color scheme from config using its name"""
name = name.lower()
scheme = {}
for key in COLOR_SCHEME_KEYS:
try:
scheme[key] = CONF.get('appearance', name+'/'+key)
except:
scheme[key] = CONF.get('appearance', 'spyder/'+key... | python | def get_color_scheme(name):
"""Get a color scheme from config using its name"""
name = name.lower()
scheme = {}
for key in COLOR_SCHEME_KEYS:
try:
scheme[key] = CONF.get('appearance', name+'/'+key)
except:
scheme[key] = CONF.get('appearance', 'spyder/'+key... | [
"def",
"get_color_scheme",
"(",
"name",
")",
":",
"name",
"=",
"name",
".",
"lower",
"(",
")",
"scheme",
"=",
"{",
"}",
"for",
"key",
"in",
"COLOR_SCHEME_KEYS",
":",
"try",
":",
"scheme",
"[",
"key",
"]",
"=",
"CONF",
".",
"get",
"(",
"'appearance'",... | Get a color scheme from config using its name | [
"Get",
"a",
"color",
"scheme",
"from",
"config",
"using",
"its",
"name"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L88-L97 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | make_python_patterns | def make_python_patterns(additional_keywords=[], additional_builtins=[]):
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwlist = keyword.kwlist + additional_keywords
builtinlist = [str(name) for name in dir(builtins)
if not name.startswith('_')] + additional_builtins
r... | python | def make_python_patterns(additional_keywords=[], additional_builtins=[]):
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwlist = keyword.kwlist + additional_keywords
builtinlist = [str(name) for name in dir(builtins)
if not name.startswith('_')] + additional_builtins
r... | [
"def",
"make_python_patterns",
"(",
"additional_keywords",
"=",
"[",
"]",
",",
"additional_builtins",
"=",
"[",
"]",
")",
":",
"kwlist",
"=",
"keyword",
".",
"kwlist",
"+",
"additional_keywords",
"builtinlist",
"=",
"[",
"str",
"(",
"name",
")",
"for",
"name... | Strongly inspired from idlelib.ColorDelegator.make_pat | [
"Strongly",
"inspired",
"from",
"idlelib",
".",
"ColorDelegator",
".",
"make_pat"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L329-L389 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | get_code_cell_name | def get_code_cell_name(text):
"""Returns a code cell name from a code cell comment."""
name = text.strip().lstrip("#% ")
if name.startswith("<codecell>"):
name = name[10:].lstrip()
elif name.startswith("In["):
name = name[2:]
if name.endswith("]:"):
name = nam... | python | def get_code_cell_name(text):
"""Returns a code cell name from a code cell comment."""
name = text.strip().lstrip("#% ")
if name.startswith("<codecell>"):
name = name[10:].lstrip()
elif name.startswith("In["):
name = name[2:]
if name.endswith("]:"):
name = nam... | [
"def",
"get_code_cell_name",
"(",
"text",
")",
":",
"name",
"=",
"text",
".",
"strip",
"(",
")",
".",
"lstrip",
"(",
"\"#% \"",
")",
"if",
"name",
".",
"startswith",
"(",
"\"<codecell>\"",
")",
":",
"name",
"=",
"name",
"[",
"10",
":",
"]",
".",
"l... | Returns a code cell name from a code cell comment. | [
"Returns",
"a",
"code",
"cell",
"name",
"from",
"a",
"code",
"cell",
"comment",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L392-L402 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | make_generic_c_patterns | def make_generic_c_patterns(keywords, builtins,
instance=None, define=None, comment=None):
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kw = r"\b" + any("keyword", keywords.split()) + r"\b"
builtin = r"\b" + any("builtin", builtins.split()+C_TYPES.split()) + r"\b"... | python | def make_generic_c_patterns(keywords, builtins,
instance=None, define=None, comment=None):
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kw = r"\b" + any("keyword", keywords.split()) + r"\b"
builtin = r"\b" + any("builtin", builtins.split()+C_TYPES.split()) + r"\b"... | [
"def",
"make_generic_c_patterns",
"(",
"keywords",
",",
"builtins",
",",
"instance",
"=",
"None",
",",
"define",
"=",
"None",
",",
"comment",
"=",
"None",
")",
":",
"kw",
"=",
"r\"\\b\"",
"+",
"any",
"(",
"\"keyword\"",
",",
"keywords",
".",
"split",
"("... | Strongly inspired from idlelib.ColorDelegator.make_pat | [
"Strongly",
"inspired",
"from",
"idlelib",
".",
"ColorDelegator",
".",
"make_pat"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L607-L629 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | make_fortran_patterns | def make_fortran_patterns():
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwstr = 'access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate de... | python | def make_fortran_patterns():
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwstr = 'access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate de... | [
"def",
"make_fortran_patterns",
"(",
")",
":",
"kwstr",
"=",
"'access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal delim default dime... | Strongly inspired from idlelib.ColorDelegator.make_pat | [
"Strongly",
"inspired",
"from",
"idlelib",
".",
"ColorDelegator",
".",
"make_pat"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L705-L721 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | make_nsis_patterns | def make_nsis_patterns():
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwstr1 = 'Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateD... | python | def make_nsis_patterns():
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwstr1 = 'Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateD... | [
"def",
"make_nsis_patterns",
"(",
")",
":",
"kwstr1",
"=",
"'Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont Crea... | Strongly inspired from idlelib.ColorDelegator.make_pat | [
"Strongly",
"inspired",
"from",
"idlelib",
".",
"ColorDelegator",
".",
"make_pat"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L829-L840 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | make_gettext_patterns | def make_gettext_patterns():
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwstr = 'msgid msgstr'
kw = r"\b" + any("keyword", kwstr.split()) + r"\b"
fuzzy = any("builtin", [r"#,[^\n]*"])
links = any("normal", [r"#:[^\n]*"])
comment = any("comment", [r"#[^\n]*"])
number = an... | python | def make_gettext_patterns():
"Strongly inspired from idlelib.ColorDelegator.make_pat"
kwstr = 'msgid msgstr'
kw = r"\b" + any("keyword", kwstr.split()) + r"\b"
fuzzy = any("builtin", [r"#,[^\n]*"])
links = any("normal", [r"#:[^\n]*"])
comment = any("comment", [r"#[^\n]*"])
number = an... | [
"def",
"make_gettext_patterns",
"(",
")",
":",
"kwstr",
"=",
"'msgid msgstr'",
"kw",
"=",
"r\"\\b\"",
"+",
"any",
"(",
"\"keyword\"",
",",
"kwstr",
".",
"split",
"(",
")",
")",
"+",
"r\"\\b\"",
"fuzzy",
"=",
"any",
"(",
"\"builtin\"",
",",
"[",
"r\"#,[^\... | Strongly inspired from idlelib.ColorDelegator.make_pat | [
"Strongly",
"inspired",
"from",
"idlelib",
".",
"ColorDelegator",
".",
"make_pat"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L852-L867 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | make_yaml_patterns | def make_yaml_patterns():
"Strongly inspired from sublime highlighter "
kw = any("keyword", [r":|>|-|\||\[|\]|[A-Za-z][\w\s\-\_ ]+(?=:)"])
links = any("normal", [r"#:[^\n]*"])
comment = any("comment", [r"#[^\n]*"])
number = any("number",
[r"\b[+-]?[0-9]+[lL]?\b",
... | python | def make_yaml_patterns():
"Strongly inspired from sublime highlighter "
kw = any("keyword", [r":|>|-|\||\[|\]|[A-Za-z][\w\s\-\_ ]+(?=:)"])
links = any("normal", [r"#:[^\n]*"])
comment = any("comment", [r"#[^\n]*"])
number = any("number",
[r"\b[+-]?[0-9]+[lL]?\b",
... | [
"def",
"make_yaml_patterns",
"(",
")",
":",
"kw",
"=",
"any",
"(",
"\"keyword\"",
",",
"[",
"r\":|>|-|\\||\\[|\\]|[A-Za-z][\\w\\s\\-\\_ ]+(?=:)\"",
"]",
")",
"links",
"=",
"any",
"(",
"\"normal\"",
",",
"[",
"r\"#:[^\\n]*\"",
"]",
")",
"comment",
"=",
"any",
"... | Strongly inspired from sublime highlighter | [
"Strongly",
"inspired",
"from",
"sublime",
"highlighter"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L878-L891 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | make_html_patterns | def make_html_patterns():
"""Strongly inspired from idlelib.ColorDelegator.make_pat """
tags = any("builtin", [r"<", r"[\?/]?>", r"(?<=<).*?(?=[ >])"])
keywords = any("keyword", [r" [\w:-]*?(?==)"])
string = any("string", [r'".*?"'])
comment = any("comment", [r"<!--.*?-->"])
multiline_comm... | python | def make_html_patterns():
"""Strongly inspired from idlelib.ColorDelegator.make_pat """
tags = any("builtin", [r"<", r"[\?/]?>", r"(?<=<).*?(?=[ >])"])
keywords = any("keyword", [r" [\w:-]*?(?==)"])
string = any("string", [r'".*?"'])
comment = any("comment", [r"<!--.*?-->"])
multiline_comm... | [
"def",
"make_html_patterns",
"(",
")",
":",
"tags",
"=",
"any",
"(",
"\"builtin\"",
",",
"[",
"r\"<\"",
",",
"r\"[\\?/]?>\"",
",",
"r\"(?<=<).*?(?=[ >])\"",
"]",
")",
"keywords",
"=",
"any",
"(",
"\"keyword\"",
",",
"[",
"r\" [\\w:-]*?(?==)\"",
"]",
")",
"st... | Strongly inspired from idlelib.ColorDelegator.make_pat | [
"Strongly",
"inspired",
"from",
"idlelib",
".",
"ColorDelegator",
".",
"make_pat"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L962-L971 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | guess_pygments_highlighter | def guess_pygments_highlighter(filename):
"""Factory to generate syntax highlighter for the given filename.
If a syntax highlighter is not available for a particular file, this
function will attempt to generate one based on the lexers in Pygments. If
Pygments is not available or does not have an ... | python | def guess_pygments_highlighter(filename):
"""Factory to generate syntax highlighter for the given filename.
If a syntax highlighter is not available for a particular file, this
function will attempt to generate one based on the lexers in Pygments. If
Pygments is not available or does not have an ... | [
"def",
"guess_pygments_highlighter",
"(",
"filename",
")",
":",
"try",
":",
"from",
"pygments",
".",
"lexers",
"import",
"get_lexer_for_filename",
",",
"get_lexer_by_name",
"except",
"Exception",
":",
"return",
"TextSH",
"root",
",",
"ext",
"=",
"os",
".",
"path... | Factory to generate syntax highlighter for the given filename.
If a syntax highlighter is not available for a particular file, this
function will attempt to generate one based on the lexers in Pygments. If
Pygments is not available or does not have an appropriate lexer, TextSH
will be returned in... | [
"Factory",
"to",
"generate",
"syntax",
"highlighter",
"for",
"the",
"given",
"filename",
".",
"If",
"a",
"syntax",
"highlighter",
"is",
"not",
"available",
"for",
"a",
"particular",
"file",
"this",
"function",
"will",
"attempt",
"to",
"generate",
"one",
"based... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L1233-L1259 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | BaseSH.highlightBlock | def highlightBlock(self, text):
"""
Highlights a block of text. Please do not override, this method.
Instead you should implement
:func:`spyder.utils.syntaxhighplighters.SyntaxHighlighter.highlight_block`.
:param text: text to highlight.
"""
self.highligh... | python | def highlightBlock(self, text):
"""
Highlights a block of text. Please do not override, this method.
Instead you should implement
:func:`spyder.utils.syntaxhighplighters.SyntaxHighlighter.highlight_block`.
:param text: text to highlight.
"""
self.highligh... | [
"def",
"highlightBlock",
"(",
"self",
",",
"text",
")",
":",
"self",
".",
"highlight_block",
"(",
"text",
")",
"# Process blocks for fold detection\r",
"current_block",
"=",
"self",
".",
"currentBlock",
"(",
")",
"previous_block",
"=",
"self",
".",
"_find_prev_non... | Highlights a block of text. Please do not override, this method.
Instead you should implement
:func:`spyder.utils.syntaxhighplighters.SyntaxHighlighter.highlight_block`.
:param text: text to highlight. | [
"Highlights",
"a",
"block",
"of",
"text",
".",
"Please",
"do",
"not",
"override",
"this",
"method",
".",
"Instead",
"you",
"should",
"implement",
":",
"func",
":",
"spyder",
".",
"utils",
".",
"syntaxhighplighters",
".",
"SyntaxHighlighter",
".",
"highlight_bl... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L219-L236 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | BaseSH.highlight_spaces | def highlight_spaces(self, text, offset=0):
"""
Make blank space less apparent by setting the foreground alpha.
This only has an effect when 'Show blank space' is turned on.
Derived classes could call this function at the end of
highlightBlock().
"""
flags_... | python | def highlight_spaces(self, text, offset=0):
"""
Make blank space less apparent by setting the foreground alpha.
This only has an effect when 'Show blank space' is turned on.
Derived classes could call this function at the end of
highlightBlock().
"""
flags_... | [
"def",
"highlight_spaces",
"(",
"self",
",",
"text",
",",
"offset",
"=",
"0",
")",
":",
"flags_text",
"=",
"self",
".",
"document",
"(",
")",
".",
"defaultTextOption",
"(",
")",
".",
"flags",
"(",
")",
"show_blanks",
"=",
"flags_text",
"&",
"QTextOption"... | Make blank space less apparent by setting the foreground alpha.
This only has an effect when 'Show blank space' is turned on.
Derived classes could call this function at the end of
highlightBlock(). | [
"Make",
"blank",
"space",
"less",
"apparent",
"by",
"setting",
"the",
"foreground",
"alpha",
".",
"This",
"only",
"has",
"an",
"effect",
"when",
"Show",
"blank",
"space",
"is",
"turned",
"on",
".",
"Derived",
"classes",
"could",
"call",
"this",
"function",
... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L247-L275 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | PythonSH.highlight_block | def highlight_block(self, text):
"""Implement specific highlight for Python."""
text = to_text_string(text)
prev_state = tbh.get_state(self.currentBlock().previous())
if prev_state == self.INSIDE_DQ3STRING:
offset = -4
text = r'""" '+text
elif prev_... | python | def highlight_block(self, text):
"""Implement specific highlight for Python."""
text = to_text_string(text)
prev_state = tbh.get_state(self.currentBlock().previous())
if prev_state == self.INSIDE_DQ3STRING:
offset = -4
text = r'""" '+text
elif prev_... | [
"def",
"highlight_block",
"(",
"self",
",",
"text",
")",
":",
"text",
"=",
"to_text_string",
"(",
"text",
")",
"prev_state",
"=",
"tbh",
".",
"get_state",
"(",
"self",
".",
"currentBlock",
"(",
")",
".",
"previous",
"(",
")",
")",
"if",
"prev_state",
"... | Implement specific highlight for Python. | [
"Implement",
"specific",
"highlight",
"for",
"Python",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L426-L557 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | CppSH.highlight_block | def highlight_block(self, text):
"""Implement highlight specific for C/C++."""
text = to_text_string(text)
inside_comment = tbh.get_state(self.currentBlock().previous()) == self.INSIDE_COMMENT
self.setFormat(0, len(text),
self.formats["comment" if inside_comme... | python | def highlight_block(self, text):
"""Implement highlight specific for C/C++."""
text = to_text_string(text)
inside_comment = tbh.get_state(self.currentBlock().previous()) == self.INSIDE_COMMENT
self.setFormat(0, len(text),
self.formats["comment" if inside_comme... | [
"def",
"highlight_block",
"(",
"self",
",",
"text",
")",
":",
"text",
"=",
"to_text_string",
"(",
"text",
")",
"inside_comment",
"=",
"tbh",
".",
"get_state",
"(",
"self",
".",
"currentBlock",
"(",
")",
".",
"previous",
"(",
")",
")",
"==",
"self",
"."... | Implement highlight specific for C/C++. | [
"Implement",
"highlight",
"specific",
"for",
"C",
"/",
"C",
"++",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L644-L680 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | FortranSH.highlight_block | def highlight_block(self, text):
"""Implement highlight specific for Fortran."""
text = to_text_string(text)
self.setFormat(0, len(text), self.formats["normal"])
match = self.PROG.search(text)
index = 0
while match:
for key, value in list(matc... | python | def highlight_block(self, text):
"""Implement highlight specific for Fortran."""
text = to_text_string(text)
self.setFormat(0, len(text), self.formats["normal"])
match = self.PROG.search(text)
index = 0
while match:
for key, value in list(matc... | [
"def",
"highlight_block",
"(",
"self",
",",
"text",
")",
":",
"text",
"=",
"to_text_string",
"(",
"text",
")",
"self",
".",
"setFormat",
"(",
"0",
",",
"len",
"(",
"text",
")",
",",
"self",
".",
"formats",
"[",
"\"normal\"",
"]",
")",
"match",
"=",
... | Implement highlight specific for Fortran. | [
"Implement",
"highlight",
"specific",
"for",
"Fortran",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L733-L755 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | Fortran77SH.highlight_block | def highlight_block(self, text):
"""Implement highlight specific for Fortran77."""
text = to_text_string(text)
if text.startswith(("c", "C")):
self.setFormat(0, len(text), self.formats["comment"])
self.highlight_spaces(text)
else:
FortranSH.high... | python | def highlight_block(self, text):
"""Implement highlight specific for Fortran77."""
text = to_text_string(text)
if text.startswith(("c", "C")):
self.setFormat(0, len(text), self.formats["comment"])
self.highlight_spaces(text)
else:
FortranSH.high... | [
"def",
"highlight_block",
"(",
"self",
",",
"text",
")",
":",
"text",
"=",
"to_text_string",
"(",
"text",
")",
"if",
"text",
".",
"startswith",
"(",
"(",
"\"c\"",
",",
"\"C\"",
")",
")",
":",
"self",
".",
"setFormat",
"(",
"0",
",",
"len",
"(",
"te... | Implement highlight specific for Fortran77. | [
"Implement",
"highlight",
"specific",
"for",
"Fortran77",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L759-L769 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | DiffSH.highlight_block | def highlight_block(self, text):
"""Implement highlight specific Diff/Patch files."""
text = to_text_string(text)
if text.startswith("+++"):
self.setFormat(0, len(text), self.formats["keyword"])
elif text.startswith("---"):
self.setFormat(0, len(text), self.... | python | def highlight_block(self, text):
"""Implement highlight specific Diff/Patch files."""
text = to_text_string(text)
if text.startswith("+++"):
self.setFormat(0, len(text), self.formats["keyword"])
elif text.startswith("---"):
self.setFormat(0, len(text), self.... | [
"def",
"highlight_block",
"(",
"self",
",",
"text",
")",
":",
"text",
"=",
"to_text_string",
"(",
"text",
")",
"if",
"text",
".",
"startswith",
"(",
"\"+++\"",
")",
":",
"self",
".",
"setFormat",
"(",
"0",
",",
"len",
"(",
"text",
")",
",",
"self",
... | Implement highlight specific Diff/Patch files. | [
"Implement",
"highlight",
"specific",
"Diff",
"/",
"Patch",
"files",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L809-L823 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | BaseWebSH.highlight_block | def highlight_block(self, text):
"""Implement highlight specific for CSS and HTML."""
text = to_text_string(text)
previous_state = tbh.get_state(self.currentBlock().previous())
if previous_state == self.COMMENT:
self.setFormat(0, len(text), self.formats["commen... | python | def highlight_block(self, text):
"""Implement highlight specific for CSS and HTML."""
text = to_text_string(text)
previous_state = tbh.get_state(self.currentBlock().previous())
if previous_state == self.COMMENT:
self.setFormat(0, len(text), self.formats["commen... | [
"def",
"highlight_block",
"(",
"self",
",",
"text",
")",
":",
"text",
"=",
"to_text_string",
"(",
"text",
")",
"previous_state",
"=",
"tbh",
".",
"get_state",
"(",
"self",
".",
"currentBlock",
"(",
")",
".",
"previous",
"(",
")",
")",
"if",
"previous_sta... | Implement highlight specific for CSS and HTML. | [
"Implement",
"highlight",
"specific",
"for",
"CSS",
"and",
"HTML",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L911-L960 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | PygmentsSH.make_charlist | def make_charlist(self):
"""Parses the complete text and stores format for each character."""
def worker_output(worker, output, error):
"""Worker finished callback."""
self._charlist = output
if error is None and output:
self._allow_highlight =... | python | def make_charlist(self):
"""Parses the complete text and stores format for each character."""
def worker_output(worker, output, error):
"""Worker finished callback."""
self._charlist = output
if error is None and output:
self._allow_highlight =... | [
"def",
"make_charlist",
"(",
"self",
")",
":",
"def",
"worker_output",
"(",
"worker",
",",
"output",
",",
"error",
")",
":",
"\"\"\"Worker finished callback.\"\"\"",
"self",
".",
"_charlist",
"=",
"output",
"if",
"error",
"is",
"None",
"and",
"output",
":",
... | Parses the complete text and stores format for each character. | [
"Parses",
"the",
"complete",
"text",
"and",
"stores",
"format",
"for",
"each",
"character",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L1161-L1186 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | PygmentsSH._make_charlist | def _make_charlist(self, tokens, tokmap, formats):
"""
Parses the complete text and stores format for each character.
Uses the attached lexer to parse into a list of tokens and Pygments
token types. Then breaks tokens into individual letters, each with a
Spyder token type... | python | def _make_charlist(self, tokens, tokmap, formats):
"""
Parses the complete text and stores format for each character.
Uses the attached lexer to parse into a list of tokens and Pygments
token types. Then breaks tokens into individual letters, each with a
Spyder token type... | [
"def",
"_make_charlist",
"(",
"self",
",",
"tokens",
",",
"tokmap",
",",
"formats",
")",
":",
"def",
"_get_fmt",
"(",
"typ",
")",
":",
"\"\"\"Get the Spyder format code for the given Pygments token type.\"\"\"",
"# Exact matches first\r",
"if",
"typ",
"in",
"tokmap",
... | Parses the complete text and stores format for each character.
Uses the attached lexer to parse into a list of tokens and Pygments
token types. Then breaks tokens into individual letters, each with a
Spyder token type attached. Stores this list as self._charlist.
It's attached ... | [
"Parses",
"the",
"complete",
"text",
"and",
"stores",
"format",
"for",
"each",
"character",
".",
"Uses",
"the",
"attached",
"lexer",
"to",
"parse",
"into",
"a",
"list",
"of",
"tokens",
"and",
"Pygments",
"token",
"types",
".",
"Then",
"breaks",
"tokens",
"... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L1188-L1218 | train |
spyder-ide/spyder | spyder/utils/syntaxhighlighters.py | PygmentsSH.highlightBlock | def highlightBlock(self, text):
""" Actually highlight the block"""
# Note that an undefined blockstate is equal to -1, so the first block
# will have the correct behaviour of starting at 0.
if self._allow_highlight:
start = self.previousBlockState() + 1
end... | python | def highlightBlock(self, text):
""" Actually highlight the block"""
# Note that an undefined blockstate is equal to -1, so the first block
# will have the correct behaviour of starting at 0.
if self._allow_highlight:
start = self.previousBlockState() + 1
end... | [
"def",
"highlightBlock",
"(",
"self",
",",
"text",
")",
":",
"# Note that an undefined blockstate is equal to -1, so the first block\r",
"# will have the correct behaviour of starting at 0.\r",
"if",
"self",
".",
"_allow_highlight",
":",
"start",
"=",
"self",
".",
"previousBloc... | Actually highlight the block | [
"Actually",
"highlight",
"the",
"block"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/syntaxhighlighters.py#L1220-L1230 | train |
spyder-ide/spyder | spyder/utils/introspection/module_completion.py | get_submodules | def get_submodules(mod):
"""Get all submodules of a given module"""
def catch_exceptions(module):
pass
try:
m = __import__(mod)
submodules = [mod]
submods = pkgutil.walk_packages(m.__path__, m.__name__ + '.',
catch_exceptions)
... | python | def get_submodules(mod):
"""Get all submodules of a given module"""
def catch_exceptions(module):
pass
try:
m = __import__(mod)
submodules = [mod]
submods = pkgutil.walk_packages(m.__path__, m.__name__ + '.',
catch_exceptions)
... | [
"def",
"get_submodules",
"(",
"mod",
")",
":",
"def",
"catch_exceptions",
"(",
"module",
")",
":",
"pass",
"try",
":",
"m",
"=",
"__import__",
"(",
"mod",
")",
"submodules",
"=",
"[",
"mod",
"]",
"submods",
"=",
"pkgutil",
".",
"walk_packages",
"(",
"m... | Get all submodules of a given module | [
"Get",
"all",
"submodules",
"of",
"a",
"given",
"module"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/module_completion.py#L34-L51 | train |
spyder-ide/spyder | spyder/utils/introspection/module_completion.py | get_preferred_submodules | def get_preferred_submodules():
"""
Get all submodules of the main scientific modules and others of our
interest
"""
# Path to the modules database
modules_path = get_conf_path('db')
# Modules database
modules_db = PickleShareDB(modules_path)
if 'submodules' in modules_d... | python | def get_preferred_submodules():
"""
Get all submodules of the main scientific modules and others of our
interest
"""
# Path to the modules database
modules_path = get_conf_path('db')
# Modules database
modules_db = PickleShareDB(modules_path)
if 'submodules' in modules_d... | [
"def",
"get_preferred_submodules",
"(",
")",
":",
"# Path to the modules database\r",
"modules_path",
"=",
"get_conf_path",
"(",
"'db'",
")",
"# Modules database\r",
"modules_db",
"=",
"PickleShareDB",
"(",
"modules_path",
")",
"if",
"'submodules'",
"in",
"modules_db",
... | Get all submodules of the main scientific modules and others of our
interest | [
"Get",
"all",
"submodules",
"of",
"the",
"main",
"scientific",
"modules",
"and",
"others",
"of",
"our",
"interest"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/introspection/module_completion.py#L54-L75 | train |
spyder-ide/spyder | spyder/config/base.py | is_stable_version | def is_stable_version(version):
"""
Return true if version is stable, i.e. with letters in the final component.
Stable version examples: ``1.2``, ``1.3.4``, ``1.0.5``.
Non-stable version examples: ``1.3.4beta``, ``0.1.0rc1``, ``3.0.0dev0``.
"""
if not isinstance(version, tuple):
... | python | def is_stable_version(version):
"""
Return true if version is stable, i.e. with letters in the final component.
Stable version examples: ``1.2``, ``1.3.4``, ``1.0.5``.
Non-stable version examples: ``1.3.4beta``, ``0.1.0rc1``, ``3.0.0dev0``.
"""
if not isinstance(version, tuple):
... | [
"def",
"is_stable_version",
"(",
"version",
")",
":",
"if",
"not",
"isinstance",
"(",
"version",
",",
"tuple",
")",
":",
"version",
"=",
"version",
".",
"split",
"(",
"'.'",
")",
"last_part",
"=",
"version",
"[",
"-",
"1",
"]",
"if",
"not",
"re",
"."... | Return true if version is stable, i.e. with letters in the final component.
Stable version examples: ``1.2``, ``1.3.4``, ``1.0.5``.
Non-stable version examples: ``1.3.4beta``, ``0.1.0rc1``, ``3.0.0dev0``. | [
"Return",
"true",
"if",
"version",
"is",
"stable",
"i",
".",
"e",
".",
"with",
"letters",
"in",
"the",
"final",
"component",
".",
"Stable",
"version",
"examples",
":",
"1",
".",
"2",
"1",
".",
"3",
".",
"4",
"1",
".",
"0",
".",
"5",
".",
"Non",
... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L60-L74 | train |
spyder-ide/spyder | spyder/config/base.py | use_dev_config_dir | def use_dev_config_dir(use_dev_config_dir=USE_DEV_CONFIG_DIR):
"""Return whether the dev configuration directory should used."""
if use_dev_config_dir is not None:
if use_dev_config_dir.lower() in {'false', '0'}:
use_dev_config_dir = False
else:
use_dev_config_dir = DEV or ... | python | def use_dev_config_dir(use_dev_config_dir=USE_DEV_CONFIG_DIR):
"""Return whether the dev configuration directory should used."""
if use_dev_config_dir is not None:
if use_dev_config_dir.lower() in {'false', '0'}:
use_dev_config_dir = False
else:
use_dev_config_dir = DEV or ... | [
"def",
"use_dev_config_dir",
"(",
"use_dev_config_dir",
"=",
"USE_DEV_CONFIG_DIR",
")",
":",
"if",
"use_dev_config_dir",
"is",
"not",
"None",
":",
"if",
"use_dev_config_dir",
".",
"lower",
"(",
")",
"in",
"{",
"'false'",
",",
"'0'",
"}",
":",
"use_dev_config_dir... | Return whether the dev configuration directory should used. | [
"Return",
"whether",
"the",
"dev",
"configuration",
"directory",
"should",
"used",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L77-L84 | train |
spyder-ide/spyder | spyder/config/base.py | debug_print | def debug_print(*message):
"""Output debug messages to stdout"""
warnings.warn("debug_print is deprecated; use the logging module instead.")
if get_debug_level():
ss = STDOUT
if PY3:
# This is needed after restarting and using debug_print
for m in message:
... | python | def debug_print(*message):
"""Output debug messages to stdout"""
warnings.warn("debug_print is deprecated; use the logging module instead.")
if get_debug_level():
ss = STDOUT
if PY3:
# This is needed after restarting and using debug_print
for m in message:
... | [
"def",
"debug_print",
"(",
"*",
"message",
")",
":",
"warnings",
".",
"warn",
"(",
"\"debug_print is deprecated; use the logging module instead.\"",
")",
"if",
"get_debug_level",
"(",
")",
":",
"ss",
"=",
"STDOUT",
"if",
"PY3",
":",
"# This is needed after restarting ... | Output debug messages to stdout | [
"Output",
"debug",
"messages",
"to",
"stdout"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L102-L113 | train |
spyder-ide/spyder | spyder/config/base.py | get_home_dir | def get_home_dir():
"""
Return user home directory
"""
try:
# expanduser() returns a raw byte string which needs to be
# decoded with the codec that the OS is using to represent
# file paths.
path = encoding.to_unicode_from_fs(osp.expanduser('~'))
except Exce... | python | def get_home_dir():
"""
Return user home directory
"""
try:
# expanduser() returns a raw byte string which needs to be
# decoded with the codec that the OS is using to represent
# file paths.
path = encoding.to_unicode_from_fs(osp.expanduser('~'))
except Exce... | [
"def",
"get_home_dir",
"(",
")",
":",
"try",
":",
"# expanduser() returns a raw byte string which needs to be\r",
"# decoded with the codec that the OS is using to represent\r",
"# file paths.\r",
"path",
"=",
"encoding",
".",
"to_unicode_from_fs",
"(",
"osp",
".",
"expanduser",
... | Return user home directory | [
"Return",
"user",
"home",
"directory"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L145-L174 | train |
spyder-ide/spyder | spyder/config/base.py | get_clean_conf_dir | def get_clean_conf_dir():
"""
Return the path to a temp clean configuration dir, for tests and safe mode.
"""
if sys.platform.startswith("win"):
current_user = ''
else:
current_user = '-' + str(getpass.getuser())
conf_dir = osp.join(str(tempfile.gettempdir()),
... | python | def get_clean_conf_dir():
"""
Return the path to a temp clean configuration dir, for tests and safe mode.
"""
if sys.platform.startswith("win"):
current_user = ''
else:
current_user = '-' + str(getpass.getuser())
conf_dir = osp.join(str(tempfile.gettempdir()),
... | [
"def",
"get_clean_conf_dir",
"(",
")",
":",
"if",
"sys",
".",
"platform",
".",
"startswith",
"(",
"\"win\"",
")",
":",
"current_user",
"=",
"''",
"else",
":",
"current_user",
"=",
"'-'",
"+",
"str",
"(",
"getpass",
".",
"getuser",
"(",
")",
")",
"conf_... | Return the path to a temp clean configuration dir, for tests and safe mode. | [
"Return",
"the",
"path",
"to",
"a",
"temp",
"clean",
"configuration",
"dir",
"for",
"tests",
"and",
"safe",
"mode",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L177-L189 | train |
spyder-ide/spyder | spyder/config/base.py | get_conf_path | def get_conf_path(filename=None):
"""Return absolute path to the config file with the specified filename."""
# Define conf_dir
if running_under_pytest() or SAFE_MODE:
# Use clean config dir if running tests or the user requests it.
conf_dir = get_clean_conf_dir()
elif sys.platform.... | python | def get_conf_path(filename=None):
"""Return absolute path to the config file with the specified filename."""
# Define conf_dir
if running_under_pytest() or SAFE_MODE:
# Use clean config dir if running tests or the user requests it.
conf_dir = get_clean_conf_dir()
elif sys.platform.... | [
"def",
"get_conf_path",
"(",
"filename",
"=",
"None",
")",
":",
"# Define conf_dir\r",
"if",
"running_under_pytest",
"(",
")",
"or",
"SAFE_MODE",
":",
"# Use clean config dir if running tests or the user requests it.\r",
"conf_dir",
"=",
"get_clean_conf_dir",
"(",
")",
"e... | Return absolute path to the config file with the specified filename. | [
"Return",
"absolute",
"path",
"to",
"the",
"config",
"file",
"with",
"the",
"specified",
"filename",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L192-L219 | train |
spyder-ide/spyder | spyder/config/base.py | get_module_path | def get_module_path(modname):
"""Return module *modname* base path"""
return osp.abspath(osp.dirname(sys.modules[modname].__file__)) | python | def get_module_path(modname):
"""Return module *modname* base path"""
return osp.abspath(osp.dirname(sys.modules[modname].__file__)) | [
"def",
"get_module_path",
"(",
"modname",
")",
":",
"return",
"osp",
".",
"abspath",
"(",
"osp",
".",
"dirname",
"(",
"sys",
".",
"modules",
"[",
"modname",
"]",
".",
"__file__",
")",
")"
] | Return module *modname* base path | [
"Return",
"module",
"*",
"modname",
"*",
"base",
"path"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L222-L224 | train |
spyder-ide/spyder | spyder/config/base.py | get_module_data_path | def get_module_data_path(modname, relpath=None, attr_name='DATAPATH'):
"""Return module *modname* data path
Note: relpath is ignored if module has an attribute named *attr_name*
Handles py2exe/cx_Freeze distributions"""
datapath = getattr(sys.modules[modname], attr_name, '')
if datapath:
... | python | def get_module_data_path(modname, relpath=None, attr_name='DATAPATH'):
"""Return module *modname* data path
Note: relpath is ignored if module has an attribute named *attr_name*
Handles py2exe/cx_Freeze distributions"""
datapath = getattr(sys.modules[modname], attr_name, '')
if datapath:
... | [
"def",
"get_module_data_path",
"(",
"modname",
",",
"relpath",
"=",
"None",
",",
"attr_name",
"=",
"'DATAPATH'",
")",
":",
"datapath",
"=",
"getattr",
"(",
"sys",
".",
"modules",
"[",
"modname",
"]",
",",
"attr_name",
",",
"''",
")",
"if",
"datapath",
":... | Return module *modname* data path
Note: relpath is ignored if module has an attribute named *attr_name*
Handles py2exe/cx_Freeze distributions | [
"Return",
"module",
"*",
"modname",
"*",
"data",
"path",
"Note",
":",
"relpath",
"is",
"ignored",
"if",
"module",
"has",
"an",
"attribute",
"named",
"*",
"attr_name",
"*",
"Handles",
"py2exe",
"/",
"cx_Freeze",
"distributions"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L227-L245 | train |
spyder-ide/spyder | spyder/config/base.py | get_module_source_path | def get_module_source_path(modname, basename=None):
"""Return module *modname* source path
If *basename* is specified, return *modname.basename* path where
*modname* is a package containing the module *basename*
*basename* is a filename (not a module name), so it must include the
file ex... | python | def get_module_source_path(modname, basename=None):
"""Return module *modname* source path
If *basename* is specified, return *modname.basename* path where
*modname* is a package containing the module *basename*
*basename* is a filename (not a module name), so it must include the
file ex... | [
"def",
"get_module_source_path",
"(",
"modname",
",",
"basename",
"=",
"None",
")",
":",
"srcpath",
"=",
"get_module_path",
"(",
"modname",
")",
"parentdir",
"=",
"osp",
".",
"join",
"(",
"srcpath",
",",
"osp",
".",
"pardir",
")",
"if",
"osp",
".",
"isfi... | Return module *modname* source path
If *basename* is specified, return *modname.basename* path where
*modname* is a package containing the module *basename*
*basename* is a filename (not a module name), so it must include the
file extension: .py or .pyw
Handles py2exe/cx_Freeze dis... | [
"Return",
"module",
"*",
"modname",
"*",
"source",
"path",
"If",
"*",
"basename",
"*",
"is",
"specified",
"return",
"*",
"modname",
".",
"basename",
"*",
"path",
"where",
"*",
"modname",
"*",
"is",
"a",
"package",
"containing",
"the",
"module",
"*",
"bas... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L248-L266 | train |
spyder-ide/spyder | spyder/config/base.py | get_image_path | def get_image_path(name, default="not_found.png"):
"""Return image absolute path"""
for img_path in IMG_PATH:
full_path = osp.join(img_path, name)
if osp.isfile(full_path):
return osp.abspath(full_path)
if default is not None:
img_path = osp.join(get_module_path('s... | python | def get_image_path(name, default="not_found.png"):
"""Return image absolute path"""
for img_path in IMG_PATH:
full_path = osp.join(img_path, name)
if osp.isfile(full_path):
return osp.abspath(full_path)
if default is not None:
img_path = osp.join(get_module_path('s... | [
"def",
"get_image_path",
"(",
"name",
",",
"default",
"=",
"\"not_found.png\"",
")",
":",
"for",
"img_path",
"in",
"IMG_PATH",
":",
"full_path",
"=",
"osp",
".",
"join",
"(",
"img_path",
",",
"name",
")",
"if",
"osp",
".",
"isfile",
"(",
"full_path",
")"... | Return image absolute path | [
"Return",
"image",
"absolute",
"path"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L289-L297 | train |
spyder-ide/spyder | spyder/config/base.py | get_available_translations | def get_available_translations():
"""
List available translations for spyder based on the folders found in the
locale folder. This function checks if LANGUAGE_CODES contain the same
information that is found in the 'locale' folder to ensure that when a new
language is added, LANGUAGE_CODES is u... | python | def get_available_translations():
"""
List available translations for spyder based on the folders found in the
locale folder. This function checks if LANGUAGE_CODES contain the same
information that is found in the 'locale' folder to ensure that when a new
language is added, LANGUAGE_CODES is u... | [
"def",
"get_available_translations",
"(",
")",
":",
"locale_path",
"=",
"get_module_data_path",
"(",
"\"spyder\"",
",",
"relpath",
"=",
"\"locale\"",
",",
"attr_name",
"=",
"'LOCALEPATH'",
")",
"listdir",
"=",
"os",
".",
"listdir",
"(",
"locale_path",
")",
"lang... | List available translations for spyder based on the folders found in the
locale folder. This function checks if LANGUAGE_CODES contain the same
information that is found in the 'locale' folder to ensure that when a new
language is added, LANGUAGE_CODES is updated. | [
"List",
"available",
"translations",
"for",
"spyder",
"based",
"on",
"the",
"folders",
"found",
"in",
"the",
"locale",
"folder",
".",
"This",
"function",
"checks",
"if",
"LANGUAGE_CODES",
"contain",
"the",
"same",
"information",
"that",
"is",
"found",
"in",
"t... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L322-L346 | train |
spyder-ide/spyder | spyder/config/base.py | get_interface_language | def get_interface_language():
"""
If Spyder has a translation available for the locale language, it will
return the version provided by Spyder adjusted for language subdifferences,
otherwise it will return DEFAULT_LANGUAGE.
Example:
1.) Spyder provides ('en', 'de', 'fr', 'es' 'hu' and '... | python | def get_interface_language():
"""
If Spyder has a translation available for the locale language, it will
return the version provided by Spyder adjusted for language subdifferences,
otherwise it will return DEFAULT_LANGUAGE.
Example:
1.) Spyder provides ('en', 'de', 'fr', 'es' 'hu' and '... | [
"def",
"get_interface_language",
"(",
")",
":",
"# Solves issue #3627\r",
"try",
":",
"locale_language",
"=",
"locale",
".",
"getdefaultlocale",
"(",
")",
"[",
"0",
"]",
"except",
"ValueError",
":",
"locale_language",
"=",
"DEFAULT_LANGUAGE",
"# Tests expect English a... | If Spyder has a translation available for the locale language, it will
return the version provided by Spyder adjusted for language subdifferences,
otherwise it will return DEFAULT_LANGUAGE.
Example:
1.) Spyder provides ('en', 'de', 'fr', 'es' 'hu' and 'pt_BR'), if the
locale is either 'en_US... | [
"If",
"Spyder",
"has",
"a",
"translation",
"available",
"for",
"the",
"locale",
"language",
"it",
"will",
"return",
"the",
"version",
"provided",
"by",
"Spyder",
"adjusted",
"for",
"language",
"subdifferences",
"otherwise",
"it",
"will",
"return",
"DEFAULT_LANGUAG... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L349-L386 | train |
spyder-ide/spyder | spyder/config/base.py | load_lang_conf | def load_lang_conf():
"""
Load language setting from language config file if it exists, otherwise
try to use the local settings if Spyder provides a translation, or
return the default if no translation provided.
"""
if osp.isfile(LANG_FILE):
with open(LANG_FILE, 'r') as f:
... | python | def load_lang_conf():
"""
Load language setting from language config file if it exists, otherwise
try to use the local settings if Spyder provides a translation, or
return the default if no translation provided.
"""
if osp.isfile(LANG_FILE):
with open(LANG_FILE, 'r') as f:
... | [
"def",
"load_lang_conf",
"(",
")",
":",
"if",
"osp",
".",
"isfile",
"(",
"LANG_FILE",
")",
":",
"with",
"open",
"(",
"LANG_FILE",
",",
"'r'",
")",
"as",
"f",
":",
"lang",
"=",
"f",
".",
"read",
"(",
")",
"else",
":",
"lang",
"=",
"get_interface_lan... | Load language setting from language config file if it exists, otherwise
try to use the local settings if Spyder provides a translation, or
return the default if no translation provided. | [
"Load",
"language",
"setting",
"from",
"language",
"config",
"file",
"if",
"it",
"exists",
"otherwise",
"try",
"to",
"use",
"the",
"local",
"settings",
"if",
"Spyder",
"provides",
"a",
"translation",
"or",
"return",
"the",
"default",
"if",
"no",
"translation",... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L401-L419 | train |
spyder-ide/spyder | spyder/config/base.py | get_translation | def get_translation(modname, dirname=None):
"""Return translation callback for module *modname*"""
if dirname is None:
dirname = modname
def translate_dumb(x):
"""Dumb function to not use translations."""
if not is_unicode(x):
return to_text_string(x, "utf-8")
... | python | def get_translation(modname, dirname=None):
"""Return translation callback for module *modname*"""
if dirname is None:
dirname = modname
def translate_dumb(x):
"""Dumb function to not use translations."""
if not is_unicode(x):
return to_text_string(x, "utf-8")
... | [
"def",
"get_translation",
"(",
"modname",
",",
"dirname",
"=",
"None",
")",
":",
"if",
"dirname",
"is",
"None",
":",
"dirname",
"=",
"modname",
"def",
"translate_dumb",
"(",
"x",
")",
":",
"\"\"\"Dumb function to not use translations.\"\"\"",
"if",
"not",
"is_un... | Return translation callback for module *modname* | [
"Return",
"translation",
"callback",
"for",
"module",
"*",
"modname",
"*"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L422-L464 | train |
spyder-ide/spyder | spyder/config/base.py | reset_config_files | def reset_config_files():
"""Remove all config files"""
print("*** Reset Spyder settings to defaults ***", file=STDERR)
for fname in SAVED_CONFIG_FILES:
cfg_fname = get_conf_path(fname)
if osp.isfile(cfg_fname) or osp.islink(cfg_fname):
os.remove(cfg_fname)
elif os... | python | def reset_config_files():
"""Remove all config files"""
print("*** Reset Spyder settings to defaults ***", file=STDERR)
for fname in SAVED_CONFIG_FILES:
cfg_fname = get_conf_path(fname)
if osp.isfile(cfg_fname) or osp.islink(cfg_fname):
os.remove(cfg_fname)
elif os... | [
"def",
"reset_config_files",
"(",
")",
":",
"print",
"(",
"\"*** Reset Spyder settings to defaults ***\"",
",",
"file",
"=",
"STDERR",
")",
"for",
"fname",
"in",
"SAVED_CONFIG_FILES",
":",
"cfg_fname",
"=",
"get_conf_path",
"(",
"fname",
")",
"if",
"osp",
".",
"... | Remove all config files | [
"Remove",
"all",
"config",
"files"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/config/base.py#L512-L523 | train |
spyder-ide/spyder | spyder/plugins/explorer/plugin.py | Explorer.register_plugin | def register_plugin(self):
"""Register plugin in Spyder's main window"""
ipyconsole = self.main.ipyconsole
treewidget = self.fileexplorer.treewidget
self.main.add_dockwidget(self)
self.fileexplorer.sig_open_file.connect(self.main.open_file)
self.register_widget_sh... | python | def register_plugin(self):
"""Register plugin in Spyder's main window"""
ipyconsole = self.main.ipyconsole
treewidget = self.fileexplorer.treewidget
self.main.add_dockwidget(self)
self.fileexplorer.sig_open_file.connect(self.main.open_file)
self.register_widget_sh... | [
"def",
"register_plugin",
"(",
"self",
")",
":",
"ipyconsole",
"=",
"self",
".",
"main",
".",
"ipyconsole",
"treewidget",
"=",
"self",
".",
"fileexplorer",
".",
"treewidget",
"self",
".",
"main",
".",
"add_dockwidget",
"(",
"self",
")",
"self",
".",
"filee... | 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/explorer/plugin.py#L70-L106 | train |
spyder-ide/spyder | spyder/plugins/explorer/plugin.py | Explorer.refresh_plugin | def refresh_plugin(self, new_path=None, force_current=True):
"""Refresh explorer widget"""
self.fileexplorer.treewidget.update_history(new_path)
self.fileexplorer.treewidget.refresh(new_path,
force_current=force_current) | python | def refresh_plugin(self, new_path=None, force_current=True):
"""Refresh explorer widget"""
self.fileexplorer.treewidget.update_history(new_path)
self.fileexplorer.treewidget.refresh(new_path,
force_current=force_current) | [
"def",
"refresh_plugin",
"(",
"self",
",",
"new_path",
"=",
"None",
",",
"force_current",
"=",
"True",
")",
":",
"self",
".",
"fileexplorer",
".",
"treewidget",
".",
"update_history",
"(",
"new_path",
")",
"self",
".",
"fileexplorer",
".",
"treewidget",
".",... | Refresh explorer widget | [
"Refresh",
"explorer",
"widget"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/explorer/plugin.py#L108-L112 | train |
spyder-ide/spyder | spyder/py3compat.py | is_type_text_string | def is_type_text_string(obj):
"""Return True if `obj` is type text string, False if it is anything else,
like an instance of a class that extends the basestring class."""
if PY2:
# Python 2
return type(obj) in [str, unicode]
else:
# Python 3
return type(obj) in [s... | python | def is_type_text_string(obj):
"""Return True if `obj` is type text string, False if it is anything else,
like an instance of a class that extends the basestring class."""
if PY2:
# Python 2
return type(obj) in [str, unicode]
else:
# Python 3
return type(obj) in [s... | [
"def",
"is_type_text_string",
"(",
"obj",
")",
":",
"if",
"PY2",
":",
"# Python 2\r",
"return",
"type",
"(",
"obj",
")",
"in",
"[",
"str",
",",
"unicode",
"]",
"else",
":",
"# Python 3\r",
"return",
"type",
"(",
"obj",
")",
"in",
"[",
"str",
",",
"by... | Return True if `obj` is type text string, False if it is anything else,
like an instance of a class that extends the basestring class. | [
"Return",
"True",
"if",
"obj",
"is",
"type",
"text",
"string",
"False",
"if",
"it",
"is",
"anything",
"else",
"like",
"an",
"instance",
"of",
"a",
"class",
"that",
"extends",
"the",
"basestring",
"class",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/py3compat.py#L87-L95 | train |
spyder-ide/spyder | spyder/py3compat.py | to_binary_string | def to_binary_string(obj, encoding=None):
"""Convert `obj` to binary string (bytes in Python 3, str in Python 2)"""
if PY2:
# Python 2
if encoding is None:
return str(obj)
else:
return obj.encode(encoding)
else:
# Python 3
return byte... | python | def to_binary_string(obj, encoding=None):
"""Convert `obj` to binary string (bytes in Python 3, str in Python 2)"""
if PY2:
# Python 2
if encoding is None:
return str(obj)
else:
return obj.encode(encoding)
else:
# Python 3
return byte... | [
"def",
"to_binary_string",
"(",
"obj",
",",
"encoding",
"=",
"None",
")",
":",
"if",
"PY2",
":",
"# Python 2\r",
"if",
"encoding",
"is",
"None",
":",
"return",
"str",
"(",
"obj",
")",
"else",
":",
"return",
"obj",
".",
"encode",
"(",
"encoding",
")",
... | Convert `obj` to binary string (bytes in Python 3, str in Python 2) | [
"Convert",
"obj",
"to",
"binary",
"string",
"(",
"bytes",
"in",
"Python",
"3",
"str",
"in",
"Python",
"2",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/py3compat.py#L150-L160 | train |
spyder-ide/spyder | spyder/plugins/onlinehelp/onlinehelp.py | OnlineHelp.save_history | def save_history(self):
"""Save history to a text file in user home directory"""
open(self.LOG_PATH, 'w').write("\n".join( \
[to_text_string(self.pydocbrowser.url_combo.itemText(index))
for index in range(self.pydocbrowser.url_combo.count())])) | python | def save_history(self):
"""Save history to a text file in user home directory"""
open(self.LOG_PATH, 'w').write("\n".join( \
[to_text_string(self.pydocbrowser.url_combo.itemText(index))
for index in range(self.pydocbrowser.url_combo.count())])) | [
"def",
"save_history",
"(",
"self",
")",
":",
"open",
"(",
"self",
".",
"LOG_PATH",
",",
"'w'",
")",
".",
"write",
"(",
"\"\\n\"",
".",
"join",
"(",
"[",
"to_text_string",
"(",
"self",
".",
"pydocbrowser",
".",
"url_combo",
".",
"itemText",
"(",
"index... | Save history to a text file in user home directory | [
"Save",
"history",
"to",
"a",
"text",
"file",
"in",
"user",
"home",
"directory"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/onlinehelp/onlinehelp.py#L57-L61 | train |
spyder-ide/spyder | spyder/plugins/onlinehelp/onlinehelp.py | OnlineHelp.visibility_changed | def visibility_changed(self, enable):
"""DockWidget visibility has changed"""
super(SpyderPluginWidget, self).visibility_changed(enable)
if enable and not self.pydocbrowser.is_server_running():
self.pydocbrowser.initialize() | python | def visibility_changed(self, enable):
"""DockWidget visibility has changed"""
super(SpyderPluginWidget, self).visibility_changed(enable)
if enable and not self.pydocbrowser.is_server_running():
self.pydocbrowser.initialize() | [
"def",
"visibility_changed",
"(",
"self",
",",
"enable",
")",
":",
"super",
"(",
"SpyderPluginWidget",
",",
"self",
")",
".",
"visibility_changed",
"(",
"enable",
")",
"if",
"enable",
"and",
"not",
"self",
".",
"pydocbrowser",
".",
"is_server_running",
"(",
... | DockWidget visibility has changed | [
"DockWidget",
"visibility",
"has",
"changed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/onlinehelp/onlinehelp.py#L64-L68 | train |
spyder-ide/spyder | spyder/plugins/onlinehelp/onlinehelp.py | OnlineHelp.get_focus_widget | def get_focus_widget(self):
"""
Return the widget to give focus to when
this plugin's dockwidget is raised on top-level
"""
self.pydocbrowser.url_combo.lineEdit().selectAll()
return self.pydocbrowser.url_combo | python | def get_focus_widget(self):
"""
Return the widget to give focus to when
this plugin's dockwidget is raised on top-level
"""
self.pydocbrowser.url_combo.lineEdit().selectAll()
return self.pydocbrowser.url_combo | [
"def",
"get_focus_widget",
"(",
"self",
")",
":",
"self",
".",
"pydocbrowser",
".",
"url_combo",
".",
"lineEdit",
"(",
")",
".",
"selectAll",
"(",
")",
"return",
"self",
".",
"pydocbrowser",
".",
"url_combo"
] | Return the widget to give focus to when
this plugin's dockwidget is raised on top-level | [
"Return",
"the",
"widget",
"to",
"give",
"focus",
"to",
"when",
"this",
"plugin",
"s",
"dockwidget",
"is",
"raised",
"on",
"top",
"-",
"level"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/onlinehelp/onlinehelp.py#L75-L81 | train |
spyder-ide/spyder | spyder/plugins/onlinehelp/onlinehelp.py | OnlineHelp.closing_plugin | def closing_plugin(self, cancelable=False):
"""Perform actions before parent main window is closed"""
self.save_history()
self.set_option('zoom_factor',
self.pydocbrowser.webview.get_zoom_factor())
return True | python | def closing_plugin(self, cancelable=False):
"""Perform actions before parent main window is closed"""
self.save_history()
self.set_option('zoom_factor',
self.pydocbrowser.webview.get_zoom_factor())
return True | [
"def",
"closing_plugin",
"(",
"self",
",",
"cancelable",
"=",
"False",
")",
":",
"self",
".",
"save_history",
"(",
")",
"self",
".",
"set_option",
"(",
"'zoom_factor'",
",",
"self",
".",
"pydocbrowser",
".",
"webview",
".",
"get_zoom_factor",
"(",
")",
")"... | 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/onlinehelp/onlinehelp.py#L83-L88 | train |
spyder-ide/spyder | spyder/widgets/pathmanager.py | PathManager.synchronize | def synchronize(self):
"""
Synchronize Spyder's path list with PYTHONPATH environment variable
Only apply to: current user, on Windows platforms
"""
answer = QMessageBox.question(self, _("Synchronize"),
_("This will synchronize Spyder's path list with "
... | python | def synchronize(self):
"""
Synchronize Spyder's path list with PYTHONPATH environment variable
Only apply to: current user, on Windows platforms
"""
answer = QMessageBox.question(self, _("Synchronize"),
_("This will synchronize Spyder's path list with "
... | [
"def",
"synchronize",
"(",
"self",
")",
":",
"answer",
"=",
"QMessageBox",
".",
"question",
"(",
"self",
",",
"_",
"(",
"\"Synchronize\"",
")",
",",
"_",
"(",
"\"This will synchronize Spyder's path list with \"",
"\"<b>PYTHONPATH</b> environment variable for current user,... | Synchronize Spyder's path list with PYTHONPATH environment variable
Only apply to: current user, on Windows platforms | [
"Synchronize",
"Spyder",
"s",
"path",
"list",
"with",
"PYTHONPATH",
"environment",
"variable",
"Only",
"apply",
"to",
":",
"current",
"user",
"on",
"Windows",
"platforms"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/pathmanager.py#L151-L183 | train |
spyder-ide/spyder | spyder/widgets/pathmanager.py | PathManager.update_list | def update_list(self):
"""Update path list"""
self.listwidget.clear()
for name in self.pathlist+self.ro_pathlist:
item = QListWidgetItem(name)
item.setIcon(ima.icon('DirClosedIcon'))
if name in self.ro_pathlist:
item.setFlags(Qt.NoItemFl... | python | def update_list(self):
"""Update path list"""
self.listwidget.clear()
for name in self.pathlist+self.ro_pathlist:
item = QListWidgetItem(name)
item.setIcon(ima.icon('DirClosedIcon'))
if name in self.ro_pathlist:
item.setFlags(Qt.NoItemFl... | [
"def",
"update_list",
"(",
"self",
")",
":",
"self",
".",
"listwidget",
".",
"clear",
"(",
")",
"for",
"name",
"in",
"self",
".",
"pathlist",
"+",
"self",
".",
"ro_pathlist",
":",
"item",
"=",
"QListWidgetItem",
"(",
"name",
")",
"item",
".",
"setIcon"... | Update path list | [
"Update",
"path",
"list"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/pathmanager.py#L204-L220 | train |
spyder-ide/spyder | spyder/widgets/pathmanager.py | PathManager.refresh | def refresh(self, row=None):
"""Refresh widget"""
for widget in self.selection_widgets:
widget.setEnabled(self.listwidget.currentItem() is not None)
not_empty = self.listwidget.count() > 0
if self.sync_button is not None:
self.sync_button.setEnabled(not_empt... | python | def refresh(self, row=None):
"""Refresh widget"""
for widget in self.selection_widgets:
widget.setEnabled(self.listwidget.currentItem() is not None)
not_empty = self.listwidget.count() > 0
if self.sync_button is not None:
self.sync_button.setEnabled(not_empt... | [
"def",
"refresh",
"(",
"self",
",",
"row",
"=",
"None",
")",
":",
"for",
"widget",
"in",
"self",
".",
"selection_widgets",
":",
"widget",
".",
"setEnabled",
"(",
"self",
".",
"listwidget",
".",
"currentItem",
"(",
")",
"is",
"not",
"None",
")",
"not_em... | Refresh widget | [
"Refresh",
"widget"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/pathmanager.py#L222-L228 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | EditTabNamePopup.eventFilter | def eventFilter(self, widget, event):
"""Catch clicks outside the object and ESC key press."""
if ((event.type() == QEvent.MouseButtonPress and
not self.geometry().contains(event.globalPos())) or
(event.type() == QEvent.KeyPress and
event.key() == Q... | python | def eventFilter(self, widget, event):
"""Catch clicks outside the object and ESC key press."""
if ((event.type() == QEvent.MouseButtonPress and
not self.geometry().contains(event.globalPos())) or
(event.type() == QEvent.KeyPress and
event.key() == Q... | [
"def",
"eventFilter",
"(",
"self",
",",
"widget",
",",
"event",
")",
":",
"if",
"(",
"(",
"event",
".",
"type",
"(",
")",
"==",
"QEvent",
".",
"MouseButtonPress",
"and",
"not",
"self",
".",
"geometry",
"(",
")",
".",
"contains",
"(",
"event",
".",
... | Catch clicks outside the object and ESC key press. | [
"Catch",
"clicks",
"outside",
"the",
"object",
"and",
"ESC",
"key",
"press",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L77-L89 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | EditTabNamePopup.edit_tab | def edit_tab(self, index):
"""Activate the edit tab."""
# Sets focus, shows cursor
self.setFocus(True)
# Updates tab index
self.tab_index = index
# Gets tab size and shrinks to avoid overlapping tab borders
rect = self.main.tabRect(index)
rec... | python | def edit_tab(self, index):
"""Activate the edit tab."""
# Sets focus, shows cursor
self.setFocus(True)
# Updates tab index
self.tab_index = index
# Gets tab size and shrinks to avoid overlapping tab borders
rect = self.main.tabRect(index)
rec... | [
"def",
"edit_tab",
"(",
"self",
",",
"index",
")",
":",
"# Sets focus, shows cursor\r",
"self",
".",
"setFocus",
"(",
"True",
")",
"# Updates tab index\r",
"self",
".",
"tab_index",
"=",
"index",
"# Gets tab size and shrinks to avoid overlapping tab borders\r",
"rect",
... | Activate the edit tab. | [
"Activate",
"the",
"edit",
"tab",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L91-L121 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | EditTabNamePopup.edit_finished | def edit_finished(self):
"""On clean exit, update tab name."""
# Hides editor
self.hide()
if isinstance(self.tab_index, int) and self.tab_index >= 0:
# We are editing a valid tab, update name
tab_text = to_text_string(self.text())
self.main.se... | python | def edit_finished(self):
"""On clean exit, update tab name."""
# Hides editor
self.hide()
if isinstance(self.tab_index, int) and self.tab_index >= 0:
# We are editing a valid tab, update name
tab_text = to_text_string(self.text())
self.main.se... | [
"def",
"edit_finished",
"(",
"self",
")",
":",
"# Hides editor\r",
"self",
".",
"hide",
"(",
")",
"if",
"isinstance",
"(",
"self",
".",
"tab_index",
",",
"int",
")",
"and",
"self",
".",
"tab_index",
">=",
"0",
":",
"# We are editing a valid tab, update name\r"... | On clean exit, update tab name. | [
"On",
"clean",
"exit",
"update",
"tab",
"name",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L123-L132 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | TabBar.mousePressEvent | def mousePressEvent(self, event):
"""Reimplement Qt method"""
if event.button() == Qt.LeftButton:
self.__drag_start_pos = QPoint(event.pos())
QTabBar.mousePressEvent(self, event) | python | def mousePressEvent(self, event):
"""Reimplement Qt method"""
if event.button() == Qt.LeftButton:
self.__drag_start_pos = QPoint(event.pos())
QTabBar.mousePressEvent(self, event) | [
"def",
"mousePressEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"event",
".",
"button",
"(",
")",
"==",
"Qt",
".",
"LeftButton",
":",
"self",
".",
"__drag_start_pos",
"=",
"QPoint",
"(",
"event",
".",
"pos",
"(",
")",
")",
"QTabBar",
".",
"mouse... | Reimplement Qt method | [
"Reimplement",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L164-L168 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | TabBar.dragEnterEvent | def dragEnterEvent(self, event):
"""Override Qt method"""
mimeData = event.mimeData()
formats = list(mimeData.formats())
if "parent-id" in formats and \
int(mimeData.data("parent-id")) == id(self.ancestor):
event.acceptProposedAction()
QTabBar.dra... | python | def dragEnterEvent(self, event):
"""Override Qt method"""
mimeData = event.mimeData()
formats = list(mimeData.formats())
if "parent-id" in formats and \
int(mimeData.data("parent-id")) == id(self.ancestor):
event.acceptProposedAction()
QTabBar.dra... | [
"def",
"dragEnterEvent",
"(",
"self",
",",
"event",
")",
":",
"mimeData",
"=",
"event",
".",
"mimeData",
"(",
")",
"formats",
"=",
"list",
"(",
"mimeData",
".",
"formats",
"(",
")",
")",
"if",
"\"parent-id\"",
"in",
"formats",
"and",
"int",
"(",
"mimeD... | Override Qt method | [
"Override",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L197-L206 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | TabBar.dropEvent | def dropEvent(self, event):
"""Override Qt method"""
mimeData = event.mimeData()
index_from = int(mimeData.data("source-index"))
index_to = self.tabAt(event.pos())
if index_to == -1:
index_to = self.count()
if int(mimeData.data("tabbar-id")) != id(self)... | python | def dropEvent(self, event):
"""Override Qt method"""
mimeData = event.mimeData()
index_from = int(mimeData.data("source-index"))
index_to = self.tabAt(event.pos())
if index_to == -1:
index_to = self.count()
if int(mimeData.data("tabbar-id")) != id(self)... | [
"def",
"dropEvent",
"(",
"self",
",",
"event",
")",
":",
"mimeData",
"=",
"event",
".",
"mimeData",
"(",
")",
"index_from",
"=",
"int",
"(",
"mimeData",
".",
"data",
"(",
"\"source-index\"",
")",
")",
"index_to",
"=",
"self",
".",
"tabAt",
"(",
"event"... | Override Qt method | [
"Override",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L208-L228 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | TabBar.mouseDoubleClickEvent | def mouseDoubleClickEvent(self, event):
"""Override Qt method to trigger the tab name editor."""
if self.rename_tabs is True and \
event.buttons() == Qt.MouseButtons(Qt.LeftButton):
# Tab index
index = self.tabAt(event.pos())
if index >= 0:
... | python | def mouseDoubleClickEvent(self, event):
"""Override Qt method to trigger the tab name editor."""
if self.rename_tabs is True and \
event.buttons() == Qt.MouseButtons(Qt.LeftButton):
# Tab index
index = self.tabAt(event.pos())
if index >= 0:
... | [
"def",
"mouseDoubleClickEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"self",
".",
"rename_tabs",
"is",
"True",
"and",
"event",
".",
"buttons",
"(",
")",
"==",
"Qt",
".",
"MouseButtons",
"(",
"Qt",
".",
"LeftButton",
")",
":",
"# Tab index\r",
"inde... | Override Qt method to trigger the tab name editor. | [
"Override",
"Qt",
"method",
"to",
"trigger",
"the",
"tab",
"name",
"editor",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L230-L241 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | BaseTabs.update_browse_tabs_menu | def update_browse_tabs_menu(self):
"""Update browse tabs menu"""
self.browse_tabs_menu.clear()
names = []
dirnames = []
for index in range(self.count()):
if self.menu_use_tooltips:
text = to_text_string(self.tabToolTip(index))
else:... | python | def update_browse_tabs_menu(self):
"""Update browse tabs menu"""
self.browse_tabs_menu.clear()
names = []
dirnames = []
for index in range(self.count()):
if self.menu_use_tooltips:
text = to_text_string(self.tabToolTip(index))
else:... | [
"def",
"update_browse_tabs_menu",
"(",
"self",
")",
":",
"self",
".",
"browse_tabs_menu",
".",
"clear",
"(",
")",
"names",
"=",
"[",
"]",
"dirnames",
"=",
"[",
"]",
"for",
"index",
"in",
"range",
"(",
"self",
".",
"count",
"(",
")",
")",
":",
"if",
... | Update browse tabs menu | [
"Update",
"browse",
"tabs",
"menu"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L288-L322 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | BaseTabs.set_corner_widgets | def set_corner_widgets(self, corner_widgets):
"""
Set tabs corner widgets
corner_widgets: dictionary of (corner, widgets)
corner: Qt.TopLeftCorner or Qt.TopRightCorner
widgets: list of widgets (may contains integers to add spacings)
"""
assert isinstance(co... | python | def set_corner_widgets(self, corner_widgets):
"""
Set tabs corner widgets
corner_widgets: dictionary of (corner, widgets)
corner: Qt.TopLeftCorner or Qt.TopRightCorner
widgets: list of widgets (may contains integers to add spacings)
"""
assert isinstance(co... | [
"def",
"set_corner_widgets",
"(",
"self",
",",
"corner_widgets",
")",
":",
"assert",
"isinstance",
"(",
"corner_widgets",
",",
"dict",
")",
"assert",
"all",
"(",
"key",
"in",
"(",
"Qt",
".",
"TopLeftCorner",
",",
"Qt",
".",
"TopRightCorner",
")",
"for",
"k... | Set tabs corner widgets
corner_widgets: dictionary of (corner, widgets)
corner: Qt.TopLeftCorner or Qt.TopRightCorner
widgets: list of widgets (may contains integers to add spacings) | [
"Set",
"tabs",
"corner",
"widgets",
"corner_widgets",
":",
"dictionary",
"of",
"(",
"corner",
"widgets",
")",
"corner",
":",
"Qt",
".",
"TopLeftCorner",
"or",
"Qt",
".",
"TopRightCorner",
"widgets",
":",
"list",
"of",
"widgets",
"(",
"may",
"contains",
"inte... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L324-L350 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | BaseTabs.contextMenuEvent | def contextMenuEvent(self, event):
"""Override Qt method"""
self.setCurrentIndex(self.tabBar().tabAt(event.pos()))
if self.menu:
self.menu.popup(event.globalPos()) | python | def contextMenuEvent(self, event):
"""Override Qt method"""
self.setCurrentIndex(self.tabBar().tabAt(event.pos()))
if self.menu:
self.menu.popup(event.globalPos()) | [
"def",
"contextMenuEvent",
"(",
"self",
",",
"event",
")",
":",
"self",
".",
"setCurrentIndex",
"(",
"self",
".",
"tabBar",
"(",
")",
".",
"tabAt",
"(",
"event",
".",
"pos",
"(",
")",
")",
")",
"if",
"self",
".",
"menu",
":",
"self",
".",
"menu",
... | Override Qt method | [
"Override",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L356-L360 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | BaseTabs.mousePressEvent | def mousePressEvent(self, event):
"""Override Qt method"""
if event.button() == Qt.MidButton:
index = self.tabBar().tabAt(event.pos())
if index >= 0:
self.sig_close_tab.emit(index)
event.accept()
return
QTabWidget.mo... | python | def mousePressEvent(self, event):
"""Override Qt method"""
if event.button() == Qt.MidButton:
index = self.tabBar().tabAt(event.pos())
if index >= 0:
self.sig_close_tab.emit(index)
event.accept()
return
QTabWidget.mo... | [
"def",
"mousePressEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"event",
".",
"button",
"(",
")",
"==",
"Qt",
".",
"MidButton",
":",
"index",
"=",
"self",
".",
"tabBar",
"(",
")",
".",
"tabAt",
"(",
"event",
".",
"pos",
"(",
")",
")",
"if",
... | Override Qt method | [
"Override",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L362-L370 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | BaseTabs.keyPressEvent | def keyPressEvent(self, event):
"""Override Qt method"""
ctrl = event.modifiers() & Qt.ControlModifier
key = event.key()
handled = False
if ctrl and self.count() > 0:
index = self.currentIndex()
if key == Qt.Key_PageUp:
if index > 0... | python | def keyPressEvent(self, event):
"""Override Qt method"""
ctrl = event.modifiers() & Qt.ControlModifier
key = event.key()
handled = False
if ctrl and self.count() > 0:
index = self.currentIndex()
if key == Qt.Key_PageUp:
if index > 0... | [
"def",
"keyPressEvent",
"(",
"self",
",",
"event",
")",
":",
"ctrl",
"=",
"event",
".",
"modifiers",
"(",
")",
"&",
"Qt",
".",
"ControlModifier",
"key",
"=",
"event",
".",
"key",
"(",
")",
"handled",
"=",
"False",
"if",
"ctrl",
"and",
"self",
".",
... | Override Qt method | [
"Override",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L372-L392 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | BaseTabs.tab_navigate | def tab_navigate(self, delta=1):
"""Ctrl+Tab"""
if delta > 0 and self.currentIndex() == self.count()-1:
index = delta-1
elif delta < 0 and self.currentIndex() == 0:
index = self.count()+delta
else:
index = self.currentIndex()+delta
self... | python | def tab_navigate(self, delta=1):
"""Ctrl+Tab"""
if delta > 0 and self.currentIndex() == self.count()-1:
index = delta-1
elif delta < 0 and self.currentIndex() == 0:
index = self.count()+delta
else:
index = self.currentIndex()+delta
self... | [
"def",
"tab_navigate",
"(",
"self",
",",
"delta",
"=",
"1",
")",
":",
"if",
"delta",
">",
"0",
"and",
"self",
".",
"currentIndex",
"(",
")",
"==",
"self",
".",
"count",
"(",
")",
"-",
"1",
":",
"index",
"=",
"delta",
"-",
"1",
"elif",
"delta",
... | Ctrl+Tab | [
"Ctrl",
"+",
"Tab"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L394-L402 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | BaseTabs.set_close_function | def set_close_function(self, func):
"""Setting Tabs close function
None -> tabs are not closable"""
state = func is not None
if state:
self.sig_close_tab.connect(func)
try:
# Assuming Qt >= 4.5
QTabWidget.setTabsClosable(self, state)
... | python | def set_close_function(self, func):
"""Setting Tabs close function
None -> tabs are not closable"""
state = func is not None
if state:
self.sig_close_tab.connect(func)
try:
# Assuming Qt >= 4.5
QTabWidget.setTabsClosable(self, state)
... | [
"def",
"set_close_function",
"(",
"self",
",",
"func",
")",
":",
"state",
"=",
"func",
"is",
"not",
"None",
"if",
"state",
":",
"self",
".",
"sig_close_tab",
".",
"connect",
"(",
"func",
")",
"try",
":",
"# Assuming Qt >= 4.5\r",
"QTabWidget",
".",
"setTab... | Setting Tabs close function
None -> tabs are not closable | [
"Setting",
"Tabs",
"close",
"function",
"None",
"-",
">",
"tabs",
"are",
"not",
"closable"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L404-L419 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | Tabs.move_tab | def move_tab(self, index_from, index_to):
"""Move tab inside a tabwidget"""
self.move_data.emit(index_from, index_to)
tip, text = self.tabToolTip(index_from), self.tabText(index_from)
icon, widget = self.tabIcon(index_from), self.widget(index_from)
current_widget = self.cu... | python | def move_tab(self, index_from, index_to):
"""Move tab inside a tabwidget"""
self.move_data.emit(index_from, index_to)
tip, text = self.tabToolTip(index_from), self.tabText(index_from)
icon, widget = self.tabIcon(index_from), self.widget(index_from)
current_widget = self.cu... | [
"def",
"move_tab",
"(",
"self",
",",
"index_from",
",",
"index_to",
")",
":",
"self",
".",
"move_data",
".",
"emit",
"(",
"index_from",
",",
"index_to",
")",
"tip",
",",
"text",
"=",
"self",
".",
"tabToolTip",
"(",
"index_from",
")",
",",
"self",
".",
... | Move tab inside a tabwidget | [
"Move",
"tab",
"inside",
"a",
"tabwidget"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L454-L467 | train |
spyder-ide/spyder | spyder/widgets/tabs.py | Tabs.move_tab_from_another_tabwidget | def move_tab_from_another_tabwidget(self, tabwidget_from,
index_from, index_to):
"""Move tab from a tabwidget to another"""
# We pass self object IDs as QString objs, because otherwise it would
# depend on the platform: long for 64bit, i... | python | def move_tab_from_another_tabwidget(self, tabwidget_from,
index_from, index_to):
"""Move tab from a tabwidget to another"""
# We pass self object IDs as QString objs, because otherwise it would
# depend on the platform: long for 64bit, i... | [
"def",
"move_tab_from_another_tabwidget",
"(",
"self",
",",
"tabwidget_from",
",",
"index_from",
",",
"index_to",
")",
":",
"# We pass self object IDs as QString objs, because otherwise it would \r",
"# depend on the platform: long for 64bit, int for 32bit. Replacing \r",
"# by long all ... | Move tab from a tabwidget to another | [
"Move",
"tab",
"from",
"a",
"tabwidget",
"to",
"another"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/tabs.py#L470-L479 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | get_run_configuration | def get_run_configuration(fname):
"""Return script *fname* run configuration"""
configurations = _get_run_configurations()
for filename, options in configurations:
if fname == filename:
runconf = RunConfiguration()
runconf.set(options)
return runconf | python | def get_run_configuration(fname):
"""Return script *fname* run configuration"""
configurations = _get_run_configurations()
for filename, options in configurations:
if fname == filename:
runconf = RunConfiguration()
runconf.set(options)
return runconf | [
"def",
"get_run_configuration",
"(",
"fname",
")",
":",
"configurations",
"=",
"_get_run_configurations",
"(",
")",
"for",
"filename",
",",
"options",
"in",
"configurations",
":",
"if",
"fname",
"==",
"filename",
":",
"runconf",
"=",
"RunConfiguration",
"(",
")"... | Return script *fname* run configuration | [
"Return",
"script",
"*",
"fname",
"*",
"run",
"configuration"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L150-L157 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | RunConfigOptions.select_directory | def select_directory(self):
"""Select directory"""
basedir = to_text_string(self.wd_edit.text())
if not osp.isdir(basedir):
basedir = getcwd_or_home()
directory = getexistingdirectory(self, _("Select directory"), basedir)
if directory:
self.wd_edit.... | python | def select_directory(self):
"""Select directory"""
basedir = to_text_string(self.wd_edit.text())
if not osp.isdir(basedir):
basedir = getcwd_or_home()
directory = getexistingdirectory(self, _("Select directory"), basedir)
if directory:
self.wd_edit.... | [
"def",
"select_directory",
"(",
"self",
")",
":",
"basedir",
"=",
"to_text_string",
"(",
"self",
".",
"wd_edit",
".",
"text",
"(",
")",
")",
"if",
"not",
"osp",
".",
"isdir",
"(",
"basedir",
")",
":",
"basedir",
"=",
"getcwd_or_home",
"(",
")",
"direct... | Select directory | [
"Select",
"directory"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L263-L271 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | BaseRunConfigDialog.add_widgets | def add_widgets(self, *widgets_or_spacings):
"""Add widgets/spacing to dialog vertical layout"""
layout = self.layout()
for widget_or_spacing in widgets_or_spacings:
if isinstance(widget_or_spacing, int):
layout.addSpacing(widget_or_spacing)
else:
... | python | def add_widgets(self, *widgets_or_spacings):
"""Add widgets/spacing to dialog vertical layout"""
layout = self.layout()
for widget_or_spacing in widgets_or_spacings:
if isinstance(widget_or_spacing, int):
layout.addSpacing(widget_or_spacing)
else:
... | [
"def",
"add_widgets",
"(",
"self",
",",
"*",
"widgets_or_spacings",
")",
":",
"layout",
"=",
"self",
".",
"layout",
"(",
")",
"for",
"widget_or_spacing",
"in",
"widgets_or_spacings",
":",
"if",
"isinstance",
"(",
"widget_or_spacing",
",",
"int",
")",
":",
"l... | Add widgets/spacing to dialog vertical layout | [
"Add",
"widgets",
"/",
"spacing",
"to",
"dialog",
"vertical",
"layout"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L342-L349 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | BaseRunConfigDialog.add_button_box | def add_button_box(self, stdbtns):
"""Create dialog button box and add it to the dialog layout"""
bbox = QDialogButtonBox(stdbtns)
run_btn = bbox.addButton(_("Run"), QDialogButtonBox.AcceptRole)
run_btn.clicked.connect(self.run_btn_clicked)
bbox.accepted.connect(self.accept)... | python | def add_button_box(self, stdbtns):
"""Create dialog button box and add it to the dialog layout"""
bbox = QDialogButtonBox(stdbtns)
run_btn = bbox.addButton(_("Run"), QDialogButtonBox.AcceptRole)
run_btn.clicked.connect(self.run_btn_clicked)
bbox.accepted.connect(self.accept)... | [
"def",
"add_button_box",
"(",
"self",
",",
"stdbtns",
")",
":",
"bbox",
"=",
"QDialogButtonBox",
"(",
"stdbtns",
")",
"run_btn",
"=",
"bbox",
".",
"addButton",
"(",
"_",
"(",
"\"Run\"",
")",
",",
"QDialogButtonBox",
".",
"AcceptRole",
")",
"run_btn",
".",
... | Create dialog button box and add it to the dialog layout | [
"Create",
"dialog",
"button",
"box",
"and",
"add",
"it",
"to",
"the",
"dialog",
"layout"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L351-L361 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | RunConfigOneDialog.setup | def setup(self, fname):
"""Setup Run Configuration dialog with filename *fname*"""
self.filename = fname
self.runconfigoptions = RunConfigOptions(self)
self.runconfigoptions.set(RunConfiguration(fname).get())
self.add_widgets(self.runconfigoptions)
self.add_button_b... | python | def setup(self, fname):
"""Setup Run Configuration dialog with filename *fname*"""
self.filename = fname
self.runconfigoptions = RunConfigOptions(self)
self.runconfigoptions.set(RunConfiguration(fname).get())
self.add_widgets(self.runconfigoptions)
self.add_button_b... | [
"def",
"setup",
"(",
"self",
",",
"fname",
")",
":",
"self",
".",
"filename",
"=",
"fname",
"self",
".",
"runconfigoptions",
"=",
"RunConfigOptions",
"(",
"self",
")",
"self",
".",
"runconfigoptions",
".",
"set",
"(",
"RunConfiguration",
"(",
"fname",
")",... | Setup Run Configuration dialog with filename *fname* | [
"Setup",
"Run",
"Configuration",
"dialog",
"with",
"filename",
"*",
"fname",
"*"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L387-L394 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | RunConfigOneDialog.accept | def accept(self):
"""Reimplement Qt method"""
if not self.runconfigoptions.is_valid():
return
configurations = _get_run_configurations()
configurations.insert(0, (self.filename, self.runconfigoptions.get()))
_set_run_configurations(configurations)
QDial... | python | def accept(self):
"""Reimplement Qt method"""
if not self.runconfigoptions.is_valid():
return
configurations = _get_run_configurations()
configurations.insert(0, (self.filename, self.runconfigoptions.get()))
_set_run_configurations(configurations)
QDial... | [
"def",
"accept",
"(",
"self",
")",
":",
"if",
"not",
"self",
".",
"runconfigoptions",
".",
"is_valid",
"(",
")",
":",
"return",
"configurations",
"=",
"_get_run_configurations",
"(",
")",
"configurations",
".",
"insert",
"(",
"0",
",",
"(",
"self",
".",
... | Reimplement Qt method | [
"Reimplement",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L397-L404 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | RunConfigDialog.setup | def setup(self, fname):
"""Setup Run Configuration dialog with filename *fname*"""
combo_label = QLabel(_("Select a run configuration:"))
self.combo = QComboBox()
self.combo.setMaxVisibleItems(20)
self.combo.setSizeAdjustPolicy(QComboBox.AdjustToMinimumContentsLength)
... | python | def setup(self, fname):
"""Setup Run Configuration dialog with filename *fname*"""
combo_label = QLabel(_("Select a run configuration:"))
self.combo = QComboBox()
self.combo.setMaxVisibleItems(20)
self.combo.setSizeAdjustPolicy(QComboBox.AdjustToMinimumContentsLength)
... | [
"def",
"setup",
"(",
"self",
",",
"fname",
")",
":",
"combo_label",
"=",
"QLabel",
"(",
"_",
"(",
"\"Select a run configuration:\"",
")",
")",
"self",
".",
"combo",
"=",
"QComboBox",
"(",
")",
"self",
".",
"combo",
".",
"setMaxVisibleItems",
"(",
"20",
"... | Setup Run Configuration dialog with filename *fname* | [
"Setup",
"Run",
"Configuration",
"dialog",
"with",
"filename",
"*",
"fname",
"*"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L424-L455 | train |
spyder-ide/spyder | spyder/preferences/runconfig.py | RunConfigDialog.accept | def accept(self):
"""Reimplement Qt method"""
configurations = []
for index in range(self.stack.count()):
filename = to_text_string(self.combo.itemText(index))
runconfigoptions = self.stack.widget(index)
if index == self.stack.currentIndex() and\
... | python | def accept(self):
"""Reimplement Qt method"""
configurations = []
for index in range(self.stack.count()):
filename = to_text_string(self.combo.itemText(index))
runconfigoptions = self.stack.widget(index)
if index == self.stack.currentIndex() and\
... | [
"def",
"accept",
"(",
"self",
")",
":",
"configurations",
"=",
"[",
"]",
"for",
"index",
"in",
"range",
"(",
"self",
".",
"stack",
".",
"count",
"(",
")",
")",
":",
"filename",
"=",
"to_text_string",
"(",
"self",
".",
"combo",
".",
"itemText",
"(",
... | Reimplement Qt method | [
"Reimplement",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/runconfig.py#L457-L469 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/linenumber.py | LineNumberArea.paintEvent | def paintEvent(self, event):
"""Override Qt method.
Painting line number area
"""
painter = QPainter(self)
painter.fillRect(event.rect(), self.editor.sideareas_color)
# This is needed to make that the font size of line numbers
# be the same as the text one when z... | python | def paintEvent(self, event):
"""Override Qt method.
Painting line number area
"""
painter = QPainter(self)
painter.fillRect(event.rect(), self.editor.sideareas_color)
# This is needed to make that the font size of line numbers
# be the same as the text one when z... | [
"def",
"paintEvent",
"(",
"self",
",",
"event",
")",
":",
"painter",
"=",
"QPainter",
"(",
"self",
")",
"painter",
".",
"fillRect",
"(",
"event",
".",
"rect",
"(",
")",
",",
"self",
".",
"editor",
".",
"sideareas_color",
")",
"# This is needed to make that... | Override Qt method.
Painting line number area | [
"Override",
"Qt",
"method",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/linenumber.py#L55-L108 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/linenumber.py | LineNumberArea.mouseMoveEvent | def mouseMoveEvent(self, event):
"""Override Qt method.
Show code analisis, if left button pressed select lines.
"""
line_number = self.editor.get_linenumber_from_mouse_event(event)
block = self.editor.document().findBlockByNumber(line_number-1)
data = block.userData()
... | python | def mouseMoveEvent(self, event):
"""Override Qt method.
Show code analisis, if left button pressed select lines.
"""
line_number = self.editor.get_linenumber_from_mouse_event(event)
block = self.editor.document().findBlockByNumber(line_number-1)
data = block.userData()
... | [
"def",
"mouseMoveEvent",
"(",
"self",
",",
"event",
")",
":",
"line_number",
"=",
"self",
".",
"editor",
".",
"get_linenumber_from_mouse_event",
"(",
"event",
")",
"block",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",
"findBlockByNumber",
"(",... | Override Qt method.
Show code analisis, if left button pressed select lines. | [
"Override",
"Qt",
"method",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/linenumber.py#L114-L134 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/linenumber.py | LineNumberArea.mousePressEvent | def mousePressEvent(self, event):
"""Override Qt method
Select line, and starts selection
"""
line_number = self.editor.get_linenumber_from_mouse_event(event)
self._pressed = line_number
self._released = line_number
self.editor.select_lines(self._pressed,
... | python | def mousePressEvent(self, event):
"""Override Qt method
Select line, and starts selection
"""
line_number = self.editor.get_linenumber_from_mouse_event(event)
self._pressed = line_number
self._released = line_number
self.editor.select_lines(self._pressed,
... | [
"def",
"mousePressEvent",
"(",
"self",
",",
"event",
")",
":",
"line_number",
"=",
"self",
".",
"editor",
".",
"get_linenumber_from_mouse_event",
"(",
"event",
")",
"self",
".",
"_pressed",
"=",
"line_number",
"self",
".",
"_released",
"=",
"line_number",
"sel... | Override Qt method
Select line, and starts selection | [
"Override",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/linenumber.py#L136-L145 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/linenumber.py | LineNumberArea.compute_width | def compute_width(self):
"""Compute and return line number area width"""
if not self._enabled:
return 0
digits = 1
maxb = max(1, self.editor.blockCount())
while maxb >= 10:
maxb /= 10
digits += 1
if self._margin:
margin = 3+... | python | def compute_width(self):
"""Compute and return line number area width"""
if not self._enabled:
return 0
digits = 1
maxb = max(1, self.editor.blockCount())
while maxb >= 10:
maxb /= 10
digits += 1
if self._margin:
margin = 3+... | [
"def",
"compute_width",
"(",
"self",
")",
":",
"if",
"not",
"self",
".",
"_enabled",
":",
"return",
"0",
"digits",
"=",
"1",
"maxb",
"=",
"max",
"(",
"1",
",",
"self",
".",
"editor",
".",
"blockCount",
"(",
")",
")",
"while",
"maxb",
">=",
"10",
... | Compute and return line number area width | [
"Compute",
"and",
"return",
"line",
"number",
"area",
"width"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/linenumber.py#L159-L172 | train |
spyder-ide/spyder | spyder/plugins/editor/panels/linenumber.py | LineNumberArea.setup_margins | def setup_margins(self, linenumbers=True, markers=True):
"""
Setup margin settings
(except font, now set in editor.set_font)
"""
self._margin = linenumbers
self._markers_margin = markers
self.set_enabled(linenumbers or markers) | python | def setup_margins(self, linenumbers=True, markers=True):
"""
Setup margin settings
(except font, now set in editor.set_font)
"""
self._margin = linenumbers
self._markers_margin = markers
self.set_enabled(linenumbers or markers) | [
"def",
"setup_margins",
"(",
"self",
",",
"linenumbers",
"=",
"True",
",",
"markers",
"=",
"True",
")",
":",
"self",
".",
"_margin",
"=",
"linenumbers",
"self",
".",
"_markers_margin",
"=",
"markers",
"self",
".",
"set_enabled",
"(",
"linenumbers",
"or",
"... | Setup margin settings
(except font, now set in editor.set_font) | [
"Setup",
"margin",
"settings",
"(",
"except",
"font",
"now",
"set",
"in",
"editor",
".",
"set_font",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/linenumber.py#L180-L187 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | process_python_symbol_data | def process_python_symbol_data(oedata):
"""Returns a list with line number, definition name, fold and token."""
symbol_list = []
for key in oedata:
val = oedata[key]
if val and key != 'found_cell_separators':
if val.is_class_or_function():
symbol_list.append((key,... | python | def process_python_symbol_data(oedata):
"""Returns a list with line number, definition name, fold and token."""
symbol_list = []
for key in oedata:
val = oedata[key]
if val and key != 'found_cell_separators':
if val.is_class_or_function():
symbol_list.append((key,... | [
"def",
"process_python_symbol_data",
"(",
"oedata",
")",
":",
"symbol_list",
"=",
"[",
"]",
"for",
"key",
"in",
"oedata",
":",
"val",
"=",
"oedata",
"[",
"key",
"]",
"if",
"val",
"and",
"key",
"!=",
"'found_cell_separators'",
":",
"if",
"val",
".",
"is_c... | Returns a list with line number, definition name, fold and token. | [
"Returns",
"a",
"list",
"with",
"line",
"number",
"definition",
"name",
"fold",
"and",
"token",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L32-L41 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | get_python_symbol_icons | def get_python_symbol_icons(oedata):
"""Return a list of icons for oedata of a python file."""
class_icon = ima.icon('class')
method_icon = ima.icon('method')
function_icon = ima.icon('function')
private_icon = ima.icon('private1')
super_private_icon = ima.icon('private2')
symbols = process... | python | def get_python_symbol_icons(oedata):
"""Return a list of icons for oedata of a python file."""
class_icon = ima.icon('class')
method_icon = ima.icon('method')
function_icon = ima.icon('function')
private_icon = ima.icon('private1')
super_private_icon = ima.icon('private2')
symbols = process... | [
"def",
"get_python_symbol_icons",
"(",
"oedata",
")",
":",
"class_icon",
"=",
"ima",
".",
"icon",
"(",
"'class'",
")",
"method_icon",
"=",
"ima",
".",
"icon",
"(",
"'method'",
")",
"function_icon",
"=",
"ima",
".",
"icon",
"(",
"'function'",
")",
"private_... | Return a list of icons for oedata of a python file. | [
"Return",
"a",
"list",
"of",
"icons",
"for",
"oedata",
"of",
"a",
"python",
"file",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L44-L92 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | shorten_paths | def shorten_paths(path_list, is_unsaved):
"""
Takes a list of paths and tries to "intelligently" shorten them all. The
aim is to make it clear to the user where the paths differ, as that is
likely what they care about. Note that this operates on a list of paths
not on individual paths.
If the p... | python | def shorten_paths(path_list, is_unsaved):
"""
Takes a list of paths and tries to "intelligently" shorten them all. The
aim is to make it clear to the user where the paths differ, as that is
likely what they care about. Note that this operates on a list of paths
not on individual paths.
If the p... | [
"def",
"shorten_paths",
"(",
"path_list",
",",
"is_unsaved",
")",
":",
"# TODO: at the end, if the path is too long, should do a more dumb kind of",
"# shortening, but not completely dumb.",
"# Convert the path strings to a list of tokens and start building the",
"# new_path using the drive",
... | Takes a list of paths and tries to "intelligently" shorten them all. The
aim is to make it clear to the user where the paths differ, as that is
likely what they care about. Note that this operates on a list of paths
not on individual paths.
If the path ends in an actual file name, it will be trimmed of... | [
"Takes",
"a",
"list",
"of",
"paths",
"and",
"tries",
"to",
"intelligently",
"shorten",
"them",
"all",
".",
"The",
"aim",
"is",
"to",
"make",
"it",
"clear",
"to",
"the",
"user",
"where",
"the",
"paths",
"differ",
"as",
"that",
"is",
"likely",
"what",
"t... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L95-L190 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FilesFilterLine.focusOutEvent | def focusOutEvent(self, event):
"""
Detect when the focus goes out of this widget.
This is used to make the file switcher leave focus on the
last selected file by the user.
"""
self.clicked_outside = True
return super(QLineEdit, self).focusOutEvent(event) | python | def focusOutEvent(self, event):
"""
Detect when the focus goes out of this widget.
This is used to make the file switcher leave focus on the
last selected file by the user.
"""
self.clicked_outside = True
return super(QLineEdit, self).focusOutEvent(event) | [
"def",
"focusOutEvent",
"(",
"self",
",",
"event",
")",
":",
"self",
".",
"clicked_outside",
"=",
"True",
"return",
"super",
"(",
"QLineEdit",
",",
"self",
")",
".",
"focusOutEvent",
"(",
"event",
")"
] | Detect when the focus goes out of this widget.
This is used to make the file switcher leave focus on the
last selected file by the user. | [
"Detect",
"when",
"the",
"focus",
"goes",
"out",
"of",
"this",
"widget",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L218-L226 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FileSwitcher.save_initial_state | def save_initial_state(self):
"""Save initial cursors and initial active widget."""
paths = self.paths
self.initial_widget = self.get_widget()
self.initial_cursors = {}
for i, editor in enumerate(self.widgets):
if editor is self.initial_widget:
self.i... | python | def save_initial_state(self):
"""Save initial cursors and initial active widget."""
paths = self.paths
self.initial_widget = self.get_widget()
self.initial_cursors = {}
for i, editor in enumerate(self.widgets):
if editor is self.initial_widget:
self.i... | [
"def",
"save_initial_state",
"(",
"self",
")",
":",
"paths",
"=",
"self",
".",
"paths",
"self",
".",
"initial_widget",
"=",
"self",
".",
"get_widget",
"(",
")",
"self",
".",
"initial_cursors",
"=",
"{",
"}",
"for",
"i",
",",
"editor",
"in",
"enumerate",
... | Save initial cursors and initial active widget. | [
"Save",
"initial",
"cursors",
"and",
"initial",
"active",
"widget",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L380-L394 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FileSwitcher.restore_initial_state | def restore_initial_state(self):
"""Restores initial cursors and initial active editor."""
self.list.clear()
self.is_visible = False
widgets = self.widgets_by_path
if not self.edit.clicked_outside:
for path in self.initial_cursors:
cursor = self.initi... | python | def restore_initial_state(self):
"""Restores initial cursors and initial active editor."""
self.list.clear()
self.is_visible = False
widgets = self.widgets_by_path
if not self.edit.clicked_outside:
for path in self.initial_cursors:
cursor = self.initi... | [
"def",
"restore_initial_state",
"(",
"self",
")",
":",
"self",
".",
"list",
".",
"clear",
"(",
")",
"self",
".",
"is_visible",
"=",
"False",
"widgets",
"=",
"self",
".",
"widgets_by_path",
"if",
"not",
"self",
".",
"edit",
".",
"clicked_outside",
":",
"f... | Restores initial cursors and initial active editor. | [
"Restores",
"initial",
"cursors",
"and",
"initial",
"active",
"editor",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L401-L415 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FileSwitcher.set_dialog_position | def set_dialog_position(self):
"""Positions the file switcher dialog."""
parent = self.parent()
geo = parent.geometry()
width = self.list.width() # This has been set in setup
left = parent.geometry().width()/2 - width/2
# Note: the +1 pixel on the top makes it look bette... | python | def set_dialog_position(self):
"""Positions the file switcher dialog."""
parent = self.parent()
geo = parent.geometry()
width = self.list.width() # This has been set in setup
left = parent.geometry().width()/2 - width/2
# Note: the +1 pixel on the top makes it look bette... | [
"def",
"set_dialog_position",
"(",
"self",
")",
":",
"parent",
"=",
"self",
".",
"parent",
"(",
")",
"geo",
"=",
"parent",
".",
"geometry",
"(",
")",
"width",
"=",
"self",
".",
"list",
".",
"width",
"(",
")",
"# This has been set in setup",
"left",
"=",
... | Positions the file switcher dialog. | [
"Positions",
"the",
"file",
"switcher",
"dialog",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L417-L436 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FileSwitcher.get_item_size | def get_item_size(self, content):
"""
Get the max size (width and height) for the elements of a list of
strings as a QLabel.
"""
strings = []
if content:
for rich_text in content:
label = QLabel(rich_text)
label.setTextFormat(Qt... | python | def get_item_size(self, content):
"""
Get the max size (width and height) for the elements of a list of
strings as a QLabel.
"""
strings = []
if content:
for rich_text in content:
label = QLabel(rich_text)
label.setTextFormat(Qt... | [
"def",
"get_item_size",
"(",
"self",
",",
"content",
")",
":",
"strings",
"=",
"[",
"]",
"if",
"content",
":",
"for",
"rich_text",
"in",
"content",
":",
"label",
"=",
"QLabel",
"(",
"rich_text",
")",
"label",
".",
"setTextFormat",
"(",
"Qt",
".",
"Plai... | Get the max size (width and height) for the elements of a list of
strings as a QLabel. | [
"Get",
"the",
"max",
"size",
"(",
"width",
"and",
"height",
")",
"for",
"the",
"elements",
"of",
"a",
"list",
"of",
"strings",
"as",
"a",
"QLabel",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L438-L451 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FileSwitcher.fix_size | def fix_size(self, content):
"""
Adjusts the width and height of the file switcher
based on the relative size of the parent and content.
"""
# Update size of dialog based on relative size of the parent
if content:
width, height = self.get_item_size(content)
... | python | def fix_size(self, content):
"""
Adjusts the width and height of the file switcher
based on the relative size of the parent and content.
"""
# Update size of dialog based on relative size of the parent
if content:
width, height = self.get_item_size(content)
... | [
"def",
"fix_size",
"(",
"self",
",",
"content",
")",
":",
"# Update size of dialog based on relative size of the parent",
"if",
"content",
":",
"width",
",",
"height",
"=",
"self",
".",
"get_item_size",
"(",
"content",
")",
"# Width",
"parent",
"=",
"self",
".",
... | Adjusts the width and height of the file switcher
based on the relative size of the parent and content. | [
"Adjusts",
"the",
"width",
"and",
"height",
"of",
"the",
"file",
"switcher",
"based",
"on",
"the",
"relative",
"size",
"of",
"the",
"parent",
"and",
"content",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L453-L478 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FileSwitcher.select_row | def select_row(self, steps):
"""Select row in list widget based on a number of steps with direction.
Steps can be positive (next rows) or negative (previous rows).
"""
row = self.current_row() + steps
if 0 <= row < self.count():
self.set_current_row(row) | python | def select_row(self, steps):
"""Select row in list widget based on a number of steps with direction.
Steps can be positive (next rows) or negative (previous rows).
"""
row = self.current_row() + steps
if 0 <= row < self.count():
self.set_current_row(row) | [
"def",
"select_row",
"(",
"self",
",",
"steps",
")",
":",
"row",
"=",
"self",
".",
"current_row",
"(",
")",
"+",
"steps",
"if",
"0",
"<=",
"row",
"<",
"self",
".",
"count",
"(",
")",
":",
"self",
".",
"set_current_row",
"(",
"row",
")"
] | Select row in list widget based on a number of steps with direction.
Steps can be positive (next rows) or negative (previous rows). | [
"Select",
"row",
"in",
"list",
"widget",
"based",
"on",
"a",
"number",
"of",
"steps",
"with",
"direction",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L493-L500 | train |
spyder-ide/spyder | spyder/widgets/fileswitcher.py | FileSwitcher.previous_row | def previous_row(self):
"""Select previous row in list widget."""
if self.mode == self.SYMBOL_MODE:
self.select_row(-1)
return
prev_row = self.current_row() - 1
if prev_row >= 0:
title = self.list.item(prev_row).text()
else:
title =... | python | def previous_row(self):
"""Select previous row in list widget."""
if self.mode == self.SYMBOL_MODE:
self.select_row(-1)
return
prev_row = self.current_row() - 1
if prev_row >= 0:
title = self.list.item(prev_row).text()
else:
title =... | [
"def",
"previous_row",
"(",
"self",
")",
":",
"if",
"self",
".",
"mode",
"==",
"self",
".",
"SYMBOL_MODE",
":",
"self",
".",
"select_row",
"(",
"-",
"1",
")",
"return",
"prev_row",
"=",
"self",
".",
"current_row",
"(",
")",
"-",
"1",
"if",
"prev_row"... | Select previous row in list widget. | [
"Select",
"previous",
"row",
"in",
"list",
"widget",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/fileswitcher.py#L502-L518 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.