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/utils/qthelpers.py | create_bookmark_action | def create_bookmark_action(parent, url, title, icon=None, shortcut=None):
"""Create bookmark action"""
@Slot()
def open_url():
return programs.start_file(url)
return create_action( parent, title, shortcut=shortcut, icon=icon,
triggered=open_url) | python | def create_bookmark_action(parent, url, title, icon=None, shortcut=None):
"""Create bookmark action"""
@Slot()
def open_url():
return programs.start_file(url)
return create_action( parent, title, shortcut=shortcut, icon=icon,
triggered=open_url) | [
"def",
"create_bookmark_action",
"(",
"parent",
",",
"url",
",",
"title",
",",
"icon",
"=",
"None",
",",
"shortcut",
"=",
"None",
")",
":",
"@",
"Slot",
"(",
")",
"def",
"open_url",
"(",
")",
":",
"return",
"programs",
".",
"start_file",
"(",
"url",
... | Create bookmark action | [
"Create",
"bookmark",
"action"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L335-L343 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | create_module_bookmark_actions | def create_module_bookmark_actions(parent, bookmarks):
"""
Create bookmark actions depending on module installation:
bookmarks = ((module_name, url, title), ...)
"""
actions = []
for key, url, title in bookmarks:
# Create actions for scientific distros only if Spyder is installed
... | python | def create_module_bookmark_actions(parent, bookmarks):
"""
Create bookmark actions depending on module installation:
bookmarks = ((module_name, url, title), ...)
"""
actions = []
for key, url, title in bookmarks:
# Create actions for scientific distros only if Spyder is installed
... | [
"def",
"create_module_bookmark_actions",
"(",
"parent",
",",
"bookmarks",
")",
":",
"actions",
"=",
"[",
"]",
"for",
"key",
",",
"url",
",",
"title",
"in",
"bookmarks",
":",
"# Create actions for scientific distros only if Spyder is installed\r",
"# under them\r",
"crea... | Create bookmark actions depending on module installation:
bookmarks = ((module_name, url, title), ...) | [
"Create",
"bookmark",
"actions",
"depending",
"on",
"module",
"installation",
":",
"bookmarks",
"=",
"((",
"module_name",
"url",
"title",
")",
"...",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L346-L362 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | create_program_action | def create_program_action(parent, text, name, icon=None, nt_name=None):
"""Create action to run a program"""
if is_text_string(icon):
icon = get_icon(icon)
if os.name == 'nt' and nt_name is not None:
name = nt_name
path = programs.find_program(name)
if path is not None:
... | python | def create_program_action(parent, text, name, icon=None, nt_name=None):
"""Create action to run a program"""
if is_text_string(icon):
icon = get_icon(icon)
if os.name == 'nt' and nt_name is not None:
name = nt_name
path = programs.find_program(name)
if path is not None:
... | [
"def",
"create_program_action",
"(",
"parent",
",",
"text",
",",
"name",
",",
"icon",
"=",
"None",
",",
"nt_name",
"=",
"None",
")",
":",
"if",
"is_text_string",
"(",
"icon",
")",
":",
"icon",
"=",
"get_icon",
"(",
"icon",
")",
"if",
"os",
".",
"name... | Create action to run a program | [
"Create",
"action",
"to",
"run",
"a",
"program"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L365-L374 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | create_python_script_action | def create_python_script_action(parent, text, icon, package, module, args=[]):
"""Create action to run a GUI based Python script"""
if is_text_string(icon):
icon = get_icon(icon)
if programs.python_script_exists(package, module):
return create_action(parent, text, icon=icon,
... | python | def create_python_script_action(parent, text, icon, package, module, args=[]):
"""Create action to run a GUI based Python script"""
if is_text_string(icon):
icon = get_icon(icon)
if programs.python_script_exists(package, module):
return create_action(parent, text, icon=icon,
... | [
"def",
"create_python_script_action",
"(",
"parent",
",",
"text",
",",
"icon",
",",
"package",
",",
"module",
",",
"args",
"=",
"[",
"]",
")",
":",
"if",
"is_text_string",
"(",
"icon",
")",
":",
"icon",
"=",
"get_icon",
"(",
"icon",
")",
"if",
"program... | Create action to run a GUI based Python script | [
"Create",
"action",
"to",
"run",
"a",
"GUI",
"based",
"Python",
"script"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L377-L384 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | get_filetype_icon | def get_filetype_icon(fname):
"""Return file type icon"""
ext = osp.splitext(fname)[1]
if ext.startswith('.'):
ext = ext[1:]
return get_icon( "%s.png" % ext, ima.icon('FileIcon') ) | python | def get_filetype_icon(fname):
"""Return file type icon"""
ext = osp.splitext(fname)[1]
if ext.startswith('.'):
ext = ext[1:]
return get_icon( "%s.png" % ext, ima.icon('FileIcon') ) | [
"def",
"get_filetype_icon",
"(",
"fname",
")",
":",
"ext",
"=",
"osp",
".",
"splitext",
"(",
"fname",
")",
"[",
"1",
"]",
"if",
"ext",
".",
"startswith",
"(",
"'.'",
")",
":",
"ext",
"=",
"ext",
"[",
"1",
":",
"]",
"return",
"get_icon",
"(",
"\"%... | Return file type icon | [
"Return",
"file",
"type",
"icon"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L423-L428 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | show_std_icons | def show_std_icons():
"""
Show all standard Icons
"""
app = qapplication()
dialog = ShowStdIcons(None)
dialog.show()
sys.exit(app.exec_()) | python | def show_std_icons():
"""
Show all standard Icons
"""
app = qapplication()
dialog = ShowStdIcons(None)
dialog.show()
sys.exit(app.exec_()) | [
"def",
"show_std_icons",
"(",
")",
":",
"app",
"=",
"qapplication",
"(",
")",
"dialog",
"=",
"ShowStdIcons",
"(",
"None",
")",
"dialog",
".",
"show",
"(",
")",
"sys",
".",
"exit",
"(",
"app",
".",
"exec_",
"(",
")",
")"
] | Show all standard Icons | [
"Show",
"all",
"standard",
"Icons"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L501-L508 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | calc_tools_spacing | def calc_tools_spacing(tools_layout):
"""
Return a spacing (int) or None if we don't have the appropriate metrics
to calculate the spacing.
We're trying to adapt the spacing below the tools_layout spacing so that
the main_widget has the same vertical position as the editor widgets
(which... | python | def calc_tools_spacing(tools_layout):
"""
Return a spacing (int) or None if we don't have the appropriate metrics
to calculate the spacing.
We're trying to adapt the spacing below the tools_layout spacing so that
the main_widget has the same vertical position as the editor widgets
(which... | [
"def",
"calc_tools_spacing",
"(",
"tools_layout",
")",
":",
"metrics",
"=",
"{",
"# (tabbar_height, offset)\r",
"'nt.fusion'",
":",
"(",
"32",
",",
"0",
")",
",",
"'nt.windowsvista'",
":",
"(",
"21",
",",
"3",
")",
",",
"'nt.windowsxp'",
":",
"(",
"24",
",... | Return a spacing (int) or None if we don't have the appropriate metrics
to calculate the spacing.
We're trying to adapt the spacing below the tools_layout spacing so that
the main_widget has the same vertical position as the editor widgets
(which have tabs above).
The required spacing is
... | [
"Return",
"a",
"spacing",
"(",
"int",
")",
"or",
"None",
"if",
"we",
"don",
"t",
"have",
"the",
"appropriate",
"metrics",
"to",
"calculate",
"the",
"spacing",
".",
"We",
"re",
"trying",
"to",
"adapt",
"the",
"spacing",
"below",
"the",
"tools_layout",
"sp... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L511-L548 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | create_plugin_layout | def create_plugin_layout(tools_layout, main_widget=None):
"""
Returns a layout for a set of controls above a main widget. This is a
standard layout for many plugin panes (even though, it's currently
more often applied not to the pane itself but with in the one widget
contained in the pane.
... | python | def create_plugin_layout(tools_layout, main_widget=None):
"""
Returns a layout for a set of controls above a main widget. This is a
standard layout for many plugin panes (even though, it's currently
more often applied not to the pane itself but with in the one widget
contained in the pane.
... | [
"def",
"create_plugin_layout",
"(",
"tools_layout",
",",
"main_widget",
"=",
"None",
")",
":",
"layout",
"=",
"QVBoxLayout",
"(",
")",
"layout",
".",
"setContentsMargins",
"(",
"0",
",",
"0",
",",
"0",
",",
"0",
")",
"spacing",
"=",
"calc_tools_spacing",
"... | Returns a layout for a set of controls above a main widget. This is a
standard layout for many plugin panes (even though, it's currently
more often applied not to the pane itself but with in the one widget
contained in the pane.
tools_layout: a layout containing the top toolbar
main_widget: t... | [
"Returns",
"a",
"layout",
"for",
"a",
"set",
"of",
"controls",
"above",
"a",
"main",
"widget",
".",
"This",
"is",
"a",
"standard",
"layout",
"for",
"many",
"plugin",
"panes",
"(",
"even",
"though",
"it",
"s",
"currently",
"more",
"often",
"applied",
"not... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L551-L571 | train |
spyder-ide/spyder | spyder/utils/qthelpers.py | DialogManager.show | def show(self, dialog):
"""Generic method to show a non-modal dialog and keep reference
to the Qt C++ object"""
for dlg in list(self.dialogs.values()):
if to_text_string(dlg.windowTitle()) \
== to_text_string(dialog.windowTitle()):
dlg.show()
... | python | def show(self, dialog):
"""Generic method to show a non-modal dialog and keep reference
to the Qt C++ object"""
for dlg in list(self.dialogs.values()):
if to_text_string(dlg.windowTitle()) \
== to_text_string(dialog.windowTitle()):
dlg.show()
... | [
"def",
"show",
"(",
"self",
",",
"dialog",
")",
":",
"for",
"dlg",
"in",
"list",
"(",
"self",
".",
"dialogs",
".",
"values",
"(",
")",
")",
":",
"if",
"to_text_string",
"(",
"dlg",
".",
"windowTitle",
"(",
")",
")",
"==",
"to_text_string",
"(",
"di... | Generic method to show a non-modal dialog and keep reference
to the Qt C++ object | [
"Generic",
"method",
"to",
"show",
"a",
"non",
"-",
"modal",
"dialog",
"and",
"keep",
"reference",
"to",
"the",
"Qt",
"C",
"++",
"object"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/qthelpers.py#L396-L411 | train |
spyder-ide/spyder | spyder/dependencies.py | add | def add(modname, features, required_version, installed_version=None,
optional=False):
"""Add Spyder dependency"""
global DEPENDENCIES
for dependency in DEPENDENCIES:
if dependency.modname == modname:
raise ValueError("Dependency has already been registered: %s"\
... | python | def add(modname, features, required_version, installed_version=None,
optional=False):
"""Add Spyder dependency"""
global DEPENDENCIES
for dependency in DEPENDENCIES:
if dependency.modname == modname:
raise ValueError("Dependency has already been registered: %s"\
... | [
"def",
"add",
"(",
"modname",
",",
"features",
",",
"required_version",
",",
"installed_version",
"=",
"None",
",",
"optional",
"=",
"False",
")",
":",
"global",
"DEPENDENCIES",
"for",
"dependency",
"in",
"DEPENDENCIES",
":",
"if",
"dependency",
".",
"modname"... | Add Spyder dependency | [
"Add",
"Spyder",
"dependency"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/dependencies.py#L66-L75 | train |
spyder-ide/spyder | spyder/dependencies.py | check | def check(modname):
"""Check if required dependency is installed"""
for dependency in DEPENDENCIES:
if dependency.modname == modname:
return dependency.check()
else:
raise RuntimeError("Unkwown dependency %s" % modname) | python | def check(modname):
"""Check if required dependency is installed"""
for dependency in DEPENDENCIES:
if dependency.modname == modname:
return dependency.check()
else:
raise RuntimeError("Unkwown dependency %s" % modname) | [
"def",
"check",
"(",
"modname",
")",
":",
"for",
"dependency",
"in",
"DEPENDENCIES",
":",
"if",
"dependency",
".",
"modname",
"==",
"modname",
":",
"return",
"dependency",
".",
"check",
"(",
")",
"else",
":",
"raise",
"RuntimeError",
"(",
"\"Unkwown dependen... | Check if required dependency is installed | [
"Check",
"if",
"required",
"dependency",
"is",
"installed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/dependencies.py#L78-L84 | train |
spyder-ide/spyder | spyder/dependencies.py | status | def status(deps=DEPENDENCIES, linesep=os.linesep):
"""Return a status of dependencies"""
maxwidth = 0
col1 = []
col2 = []
for dependency in deps:
title1 = dependency.modname
title1 += ' ' + dependency.required_version
col1.append(title1)
maxwidth = max([maxwi... | python | def status(deps=DEPENDENCIES, linesep=os.linesep):
"""Return a status of dependencies"""
maxwidth = 0
col1 = []
col2 = []
for dependency in deps:
title1 = dependency.modname
title1 += ' ' + dependency.required_version
col1.append(title1)
maxwidth = max([maxwi... | [
"def",
"status",
"(",
"deps",
"=",
"DEPENDENCIES",
",",
"linesep",
"=",
"os",
".",
"linesep",
")",
":",
"maxwidth",
"=",
"0",
"col1",
"=",
"[",
"]",
"col2",
"=",
"[",
"]",
"for",
"dependency",
"in",
"deps",
":",
"title1",
"=",
"dependency",
".",
"m... | Return a status of dependencies | [
"Return",
"a",
"status",
"of",
"dependencies"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/dependencies.py#L87-L101 | train |
spyder-ide/spyder | spyder/dependencies.py | missing_dependencies | def missing_dependencies():
"""Return the status of missing dependencies (if any)"""
missing_deps = []
for dependency in DEPENDENCIES:
if not dependency.check() and not dependency.optional:
missing_deps.append(dependency)
if missing_deps:
return status(deps=missing_dep... | python | def missing_dependencies():
"""Return the status of missing dependencies (if any)"""
missing_deps = []
for dependency in DEPENDENCIES:
if not dependency.check() and not dependency.optional:
missing_deps.append(dependency)
if missing_deps:
return status(deps=missing_dep... | [
"def",
"missing_dependencies",
"(",
")",
":",
"missing_deps",
"=",
"[",
"]",
"for",
"dependency",
"in",
"DEPENDENCIES",
":",
"if",
"not",
"dependency",
".",
"check",
"(",
")",
"and",
"not",
"dependency",
".",
"optional",
":",
"missing_deps",
".",
"append",
... | Return the status of missing dependencies (if any) | [
"Return",
"the",
"status",
"of",
"missing",
"dependencies",
"(",
"if",
"any",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/dependencies.py#L104-L113 | train |
spyder-ide/spyder | spyder/dependencies.py | Dependency.check | def check(self):
"""Check if dependency is installed"""
return programs.is_module_installed(self.modname,
self.required_version,
self.installed_version) | python | def check(self):
"""Check if dependency is installed"""
return programs.is_module_installed(self.modname,
self.required_version,
self.installed_version) | [
"def",
"check",
"(",
"self",
")",
":",
"return",
"programs",
".",
"is_module_installed",
"(",
"self",
".",
"modname",
",",
"self",
".",
"required_version",
",",
"self",
".",
"installed_version",
")"
] | Check if dependency is installed | [
"Check",
"if",
"dependency",
"is",
"installed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/dependencies.py#L42-L46 | train |
spyder-ide/spyder | spyder/dependencies.py | Dependency.get_installed_version | def get_installed_version(self):
"""Return dependency status (string)"""
if self.check():
return '%s (%s)' % (self.installed_version, self.OK)
else:
return '%s (%s)' % (self.installed_version, self.NOK) | python | def get_installed_version(self):
"""Return dependency status (string)"""
if self.check():
return '%s (%s)' % (self.installed_version, self.OK)
else:
return '%s (%s)' % (self.installed_version, self.NOK) | [
"def",
"get_installed_version",
"(",
"self",
")",
":",
"if",
"self",
".",
"check",
"(",
")",
":",
"return",
"'%s (%s)'",
"%",
"(",
"self",
".",
"installed_version",
",",
"self",
".",
"OK",
")",
"else",
":",
"return",
"'%s (%s)'",
"%",
"(",
"self",
".",... | Return dependency status (string) | [
"Return",
"dependency",
"status",
"(",
"string",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/dependencies.py#L48-L53 | train |
spyder-ide/spyder | spyder/otherplugins.py | get_spyderplugins_mods | def get_spyderplugins_mods(io=False):
"""Import modules from plugins package and return the list"""
# Create user directory
user_plugin_path = osp.join(get_conf_path(), USER_PLUGIN_DIR)
if not osp.isdir(user_plugin_path):
os.makedirs(user_plugin_path)
modlist, modnames = [], []
... | python | def get_spyderplugins_mods(io=False):
"""Import modules from plugins package and return the list"""
# Create user directory
user_plugin_path = osp.join(get_conf_path(), USER_PLUGIN_DIR)
if not osp.isdir(user_plugin_path):
os.makedirs(user_plugin_path)
modlist, modnames = [], []
... | [
"def",
"get_spyderplugins_mods",
"(",
"io",
"=",
"False",
")",
":",
"# Create user directory\r",
"user_plugin_path",
"=",
"osp",
".",
"join",
"(",
"get_conf_path",
"(",
")",
",",
"USER_PLUGIN_DIR",
")",
"if",
"not",
"osp",
".",
"isdir",
"(",
"user_plugin_path",
... | Import modules from plugins package and return the list | [
"Import",
"modules",
"from",
"plugins",
"package",
"and",
"return",
"the",
"list"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/otherplugins.py#L31-L43 | train |
spyder-ide/spyder | spyder/otherplugins.py | _get_spyderplugins | def _get_spyderplugins(plugin_path, is_io, modnames, modlist):
"""Scan the directory `plugin_path` for plugin packages and loads them."""
if not osp.isdir(plugin_path):
return
for name in os.listdir(plugin_path):
# This is needed in order to register the spyder_io_hdf5 plugin.
... | python | def _get_spyderplugins(plugin_path, is_io, modnames, modlist):
"""Scan the directory `plugin_path` for plugin packages and loads them."""
if not osp.isdir(plugin_path):
return
for name in os.listdir(plugin_path):
# This is needed in order to register the spyder_io_hdf5 plugin.
... | [
"def",
"_get_spyderplugins",
"(",
"plugin_path",
",",
"is_io",
",",
"modnames",
",",
"modlist",
")",
":",
"if",
"not",
"osp",
".",
"isdir",
"(",
"plugin_path",
")",
":",
"return",
"for",
"name",
"in",
"os",
".",
"listdir",
"(",
"plugin_path",
")",
":",
... | Scan the directory `plugin_path` for plugin packages and loads them. | [
"Scan",
"the",
"directory",
"plugin_path",
"for",
"plugin",
"packages",
"and",
"loads",
"them",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/otherplugins.py#L46-L69 | train |
spyder-ide/spyder | spyder/otherplugins.py | _import_plugin | def _import_plugin(module_name, plugin_path, modnames, modlist):
"""Import the plugin `module_name` from `plugin_path`, add it to `modlist`
and adds its name to `modnames`.
"""
if module_name in modnames:
return
try:
# First add a mock module with the LOCALEPATH attribute so t... | python | def _import_plugin(module_name, plugin_path, modnames, modlist):
"""Import the plugin `module_name` from `plugin_path`, add it to `modlist`
and adds its name to `modnames`.
"""
if module_name in modnames:
return
try:
# First add a mock module with the LOCALEPATH attribute so t... | [
"def",
"_import_plugin",
"(",
"module_name",
",",
"plugin_path",
",",
"modnames",
",",
"modlist",
")",
":",
"if",
"module_name",
"in",
"modnames",
":",
"return",
"try",
":",
"# First add a mock module with the LOCALEPATH attribute so that the\r",
"# helper method can find t... | Import the plugin `module_name` from `plugin_path`, add it to `modlist`
and adds its name to `modnames`. | [
"Import",
"the",
"plugin",
"module_name",
"from",
"plugin_path",
"add",
"it",
"to",
"modlist",
"and",
"adds",
"its",
"name",
"to",
"modnames",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/otherplugins.py#L72-L98 | train |
spyder-ide/spyder | spyder/otherplugins.py | _import_module_from_path | def _import_module_from_path(module_name, plugin_path):
"""Imports `module_name` from `plugin_path`.
Return None if no module is found.
"""
module = None
try:
if PY2:
info = imp.find_module(module_name, [plugin_path])
if info:
module = imp.l... | python | def _import_module_from_path(module_name, plugin_path):
"""Imports `module_name` from `plugin_path`.
Return None if no module is found.
"""
module = None
try:
if PY2:
info = imp.find_module(module_name, [plugin_path])
if info:
module = imp.l... | [
"def",
"_import_module_from_path",
"(",
"module_name",
",",
"plugin_path",
")",
":",
"module",
"=",
"None",
"try",
":",
"if",
"PY2",
":",
"info",
"=",
"imp",
".",
"find_module",
"(",
"module_name",
",",
"[",
"plugin_path",
"]",
")",
"if",
"info",
":",
"m... | Imports `module_name` from `plugin_path`.
Return None if no module is found. | [
"Imports",
"module_name",
"from",
"plugin_path",
".",
"Return",
"None",
"if",
"no",
"module",
"is",
"found",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/otherplugins.py#L101-L121 | train |
spyder-ide/spyder | spyder/utils/icon_manager.py | get_std_icon | def get_std_icon(name, size=None):
"""Get standard platform icon
Call 'show_std_icons()' for details"""
if not name.startswith('SP_'):
name = 'SP_' + name
icon = QWidget().style().standardIcon(getattr(QStyle, name))
if size is None:
return icon
else:
return QIcon(icon.pix... | python | def get_std_icon(name, size=None):
"""Get standard platform icon
Call 'show_std_icons()' for details"""
if not name.startswith('SP_'):
name = 'SP_' + name
icon = QWidget().style().standardIcon(getattr(QStyle, name))
if size is None:
return icon
else:
return QIcon(icon.pix... | [
"def",
"get_std_icon",
"(",
"name",
",",
"size",
"=",
"None",
")",
":",
"if",
"not",
"name",
".",
"startswith",
"(",
"'SP_'",
")",
":",
"name",
"=",
"'SP_'",
"+",
"name",
"icon",
"=",
"QWidget",
"(",
")",
".",
"style",
"(",
")",
".",
"standardIcon"... | Get standard platform icon
Call 'show_std_icons()' for details | [
"Get",
"standard",
"platform",
"icon",
"Call",
"show_std_icons",
"()",
"for",
"details"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/icon_manager.py#L346-L355 | train |
spyder-ide/spyder | spyder/utils/icon_manager.py | get_icon | def get_icon(name, default=None, resample=False):
"""Return image inside a QIcon object.
default: default image name or icon
resample: if True, manually resample icon pixmaps for usual sizes
(16, 24, 32, 48, 96, 128, 256). This is recommended for QMainWindow icons
created from SVG images on non-Win... | python | def get_icon(name, default=None, resample=False):
"""Return image inside a QIcon object.
default: default image name or icon
resample: if True, manually resample icon pixmaps for usual sizes
(16, 24, 32, 48, 96, 128, 256). This is recommended for QMainWindow icons
created from SVG images on non-Win... | [
"def",
"get_icon",
"(",
"name",
",",
"default",
"=",
"None",
",",
"resample",
"=",
"False",
")",
":",
"icon_path",
"=",
"get_image_path",
"(",
"name",
",",
"default",
"=",
"None",
")",
"if",
"icon_path",
"is",
"not",
"None",
":",
"icon",
"=",
"QIcon",
... | Return image inside a QIcon object.
default: default image name or icon
resample: if True, manually resample icon pixmaps for usual sizes
(16, 24, 32, 48, 96, 128, 256). This is recommended for QMainWindow icons
created from SVG images on non-Windows platforms due to a Qt bug (see
Issue 1314). | [
"Return",
"image",
"inside",
"a",
"QIcon",
"object",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/icon_manager.py#L358-L386 | train |
spyder-ide/spyder | spyder/utils/icon_manager.py | get_icon_by_extension | def get_icon_by_extension(fname, scale_factor):
"""Return the icon depending on the file extension"""
application_icons = {}
application_icons.update(BIN_FILES)
application_icons.update(DOCUMENT_FILES)
if osp.isdir(fname):
return icon('DirOpenIcon', scale_factor)
else:
basename =... | python | def get_icon_by_extension(fname, scale_factor):
"""Return the icon depending on the file extension"""
application_icons = {}
application_icons.update(BIN_FILES)
application_icons.update(DOCUMENT_FILES)
if osp.isdir(fname):
return icon('DirOpenIcon', scale_factor)
else:
basename =... | [
"def",
"get_icon_by_extension",
"(",
"fname",
",",
"scale_factor",
")",
":",
"application_icons",
"=",
"{",
"}",
"application_icons",
".",
"update",
"(",
"BIN_FILES",
")",
"application_icons",
".",
"update",
"(",
"DOCUMENT_FILES",
")",
"if",
"osp",
".",
"isdir",... | Return the icon depending on the file extension | [
"Return",
"the",
"icon",
"depending",
"on",
"the",
"file",
"extension"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/icon_manager.py#L409-L459 | train |
spyder-ide/spyder | spyder/plugins/editor/widgets/autosaveerror.py | AutosaveErrorDialog.accept | def accept(self):
"""
Update `show_errors` and hide dialog box.
Overrides method of `QDialogBox`.
"""
AutosaveErrorDialog.show_errors = not self.dismiss_box.isChecked()
return QDialog.accept(self) | python | def accept(self):
"""
Update `show_errors` and hide dialog box.
Overrides method of `QDialogBox`.
"""
AutosaveErrorDialog.show_errors = not self.dismiss_box.isChecked()
return QDialog.accept(self) | [
"def",
"accept",
"(",
"self",
")",
":",
"AutosaveErrorDialog",
".",
"show_errors",
"=",
"not",
"self",
".",
"dismiss_box",
".",
"isChecked",
"(",
")",
"return",
"QDialog",
".",
"accept",
"(",
"self",
")"
] | Update `show_errors` and hide dialog box.
Overrides method of `QDialogBox`. | [
"Update",
"show_errors",
"and",
"hide",
"dialog",
"box",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/autosaveerror.py#L78-L85 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.setup_common_actions | def setup_common_actions(self):
"""Setup context menu common actions"""
self.collapse_all_action = create_action(self,
text=_('Collapse all'),
icon=ima.icon('collapse'),
triggered=self.col... | python | def setup_common_actions(self):
"""Setup context menu common actions"""
self.collapse_all_action = create_action(self,
text=_('Collapse all'),
icon=ima.icon('collapse'),
triggered=self.col... | [
"def",
"setup_common_actions",
"(",
"self",
")",
":",
"self",
".",
"collapse_all_action",
"=",
"create_action",
"(",
"self",
",",
"text",
"=",
"_",
"(",
"'Collapse all'",
")",
",",
"icon",
"=",
"ima",
".",
"icon",
"(",
"'collapse'",
")",
",",
"triggered",
... | Setup context menu common actions | [
"Setup",
"context",
"menu",
"common",
"actions"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L49-L74 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.get_menu_actions | def get_menu_actions(self):
"""Returns a list of menu actions"""
items = self.selectedItems()
actions = self.get_actions_from_items(items)
if actions:
actions.append(None)
actions += self.common_actions
return actions | python | def get_menu_actions(self):
"""Returns a list of menu actions"""
items = self.selectedItems()
actions = self.get_actions_from_items(items)
if actions:
actions.append(None)
actions += self.common_actions
return actions | [
"def",
"get_menu_actions",
"(",
"self",
")",
":",
"items",
"=",
"self",
".",
"selectedItems",
"(",
")",
"actions",
"=",
"self",
".",
"get_actions_from_items",
"(",
"items",
")",
"if",
"actions",
":",
"actions",
".",
"append",
"(",
"None",
")",
"actions",
... | Returns a list of menu actions | [
"Returns",
"a",
"list",
"of",
"menu",
"actions"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L76-L83 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.item_selection_changed | def item_selection_changed(self):
"""Item selection has changed"""
is_selection = len(self.selectedItems()) > 0
self.expand_selection_action.setEnabled(is_selection)
self.collapse_selection_action.setEnabled(is_selection) | python | def item_selection_changed(self):
"""Item selection has changed"""
is_selection = len(self.selectedItems()) > 0
self.expand_selection_action.setEnabled(is_selection)
self.collapse_selection_action.setEnabled(is_selection) | [
"def",
"item_selection_changed",
"(",
"self",
")",
":",
"is_selection",
"=",
"len",
"(",
"self",
".",
"selectedItems",
"(",
")",
")",
">",
"0",
"self",
".",
"expand_selection_action",
".",
"setEnabled",
"(",
"is_selection",
")",
"self",
".",
"collapse_selectio... | Item selection has changed | [
"Item",
"selection",
"has",
"changed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L139-L143 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.get_items | def get_items(self):
"""Return items (excluding top level items)"""
itemlist = []
def add_to_itemlist(item):
for index in range(item.childCount()):
citem = item.child(index)
itemlist.append(citem)
add_to_itemlist(citem)
... | python | def get_items(self):
"""Return items (excluding top level items)"""
itemlist = []
def add_to_itemlist(item):
for index in range(item.childCount()):
citem = item.child(index)
itemlist.append(citem)
add_to_itemlist(citem)
... | [
"def",
"get_items",
"(",
"self",
")",
":",
"itemlist",
"=",
"[",
"]",
"def",
"add_to_itemlist",
"(",
"item",
")",
":",
"for",
"index",
"in",
"range",
"(",
"item",
".",
"childCount",
"(",
")",
")",
":",
"citem",
"=",
"item",
".",
"child",
"(",
"inde... | Return items (excluding top level items) | [
"Return",
"items",
"(",
"excluding",
"top",
"level",
"items",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L149-L159 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.save_expanded_state | def save_expanded_state(self):
"""Save all items expanded state"""
self.__expanded_state = {}
def add_to_state(item):
user_text = get_item_user_text(item)
self.__expanded_state[hash(user_text)] = item.isExpanded()
def browse_children(item):
add_... | python | def save_expanded_state(self):
"""Save all items expanded state"""
self.__expanded_state = {}
def add_to_state(item):
user_text = get_item_user_text(item)
self.__expanded_state[hash(user_text)] = item.isExpanded()
def browse_children(item):
add_... | [
"def",
"save_expanded_state",
"(",
"self",
")",
":",
"self",
".",
"__expanded_state",
"=",
"{",
"}",
"def",
"add_to_state",
"(",
"item",
")",
":",
"user_text",
"=",
"get_item_user_text",
"(",
"item",
")",
"self",
".",
"__expanded_state",
"[",
"hash",
"(",
... | Save all items expanded state | [
"Save",
"all",
"items",
"expanded",
"state"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L178-L192 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.restore_expanded_state | def restore_expanded_state(self):
"""Restore all items expanded state"""
if self.__expanded_state is None:
return
for item in self.get_items()+self.get_top_level_items():
user_text = get_item_user_text(item)
is_expanded = self.__expanded_state.get(hash(u... | python | def restore_expanded_state(self):
"""Restore all items expanded state"""
if self.__expanded_state is None:
return
for item in self.get_items()+self.get_top_level_items():
user_text = get_item_user_text(item)
is_expanded = self.__expanded_state.get(hash(u... | [
"def",
"restore_expanded_state",
"(",
"self",
")",
":",
"if",
"self",
".",
"__expanded_state",
"is",
"None",
":",
"return",
"for",
"item",
"in",
"self",
".",
"get_items",
"(",
")",
"+",
"self",
".",
"get_top_level_items",
"(",
")",
":",
"user_text",
"=",
... | Restore all items expanded state | [
"Restore",
"all",
"items",
"expanded",
"state"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L194-L202 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.sort_top_level_items | def sort_top_level_items(self, key):
"""Sorting tree wrt top level items"""
self.save_expanded_state()
items = sorted([self.takeTopLevelItem(0)
for index in range(self.topLevelItemCount())], key=key)
for index, item in enumerate(items):
self.inse... | python | def sort_top_level_items(self, key):
"""Sorting tree wrt top level items"""
self.save_expanded_state()
items = sorted([self.takeTopLevelItem(0)
for index in range(self.topLevelItemCount())], key=key)
for index, item in enumerate(items):
self.inse... | [
"def",
"sort_top_level_items",
"(",
"self",
",",
"key",
")",
":",
"self",
".",
"save_expanded_state",
"(",
")",
"items",
"=",
"sorted",
"(",
"[",
"self",
".",
"takeTopLevelItem",
"(",
"0",
")",
"for",
"index",
"in",
"range",
"(",
"self",
".",
"topLevelIt... | Sorting tree wrt top level items | [
"Sorting",
"tree",
"wrt",
"top",
"level",
"items"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L204-L211 | train |
spyder-ide/spyder | spyder/widgets/onecolumntree.py | OneColumnTree.contextMenuEvent | def contextMenuEvent(self, event):
"""Override Qt method"""
self.update_menu()
self.menu.popup(event.globalPos()) | python | def contextMenuEvent(self, event):
"""Override Qt method"""
self.update_menu()
self.menu.popup(event.globalPos()) | [
"def",
"contextMenuEvent",
"(",
"self",
",",
"event",
")",
":",
"self",
".",
"update_menu",
"(",
")",
"self",
".",
"menu",
".",
"popup",
"(",
"event",
".",
"globalPos",
"(",
")",
")"
] | Override Qt method | [
"Override",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/onecolumntree.py#L213-L216 | train |
spyder-ide/spyder | create_app.py | get_stdlib_modules | def get_stdlib_modules():
"""
Returns a list containing the names of all the modules available in the
standard library.
Based on the function get_root_modules from the IPython project.
Present in IPython.core.completerlib in v0.13.1
Copyright (C) 2010-2011 The IPython Development Team.... | python | def get_stdlib_modules():
"""
Returns a list containing the names of all the modules available in the
standard library.
Based on the function get_root_modules from the IPython project.
Present in IPython.core.completerlib in v0.13.1
Copyright (C) 2010-2011 The IPython Development Team.... | [
"def",
"get_stdlib_modules",
"(",
")",
":",
"modules",
"=",
"list",
"(",
"sys",
".",
"builtin_module_names",
")",
"for",
"path",
"in",
"sys",
".",
"path",
"[",
"1",
":",
"]",
":",
"if",
"'site-packages'",
"not",
"in",
"path",
":",
"modules",
"+=",
"mod... | Returns a list containing the names of all the modules available in the
standard library.
Based on the function get_root_modules from the IPython project.
Present in IPython.core.completerlib in v0.13.1
Copyright (C) 2010-2011 The IPython Development Team.
Distributed under the terms of th... | [
"Returns",
"a",
"list",
"containing",
"the",
"names",
"of",
"all",
"the",
"modules",
"available",
"in",
"the",
"standard",
"library",
".",
"Based",
"on",
"the",
"function",
"get_root_modules",
"from",
"the",
"IPython",
"project",
".",
"Present",
"in",
"IPython... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/create_app.py#L44-L64 | train |
spyder-ide/spyder | spyder/plugins/editor/api/folding.py | print_tree | def print_tree(editor, file=sys.stdout, print_blocks=False, return_list=False):
"""
Prints the editor fold tree to stdout, for debugging purpose.
:param editor: CodeEditor instance.
:param file: file handle where the tree will be printed. Default is stdout.
:param print_blocks: True to print all bl... | python | def print_tree(editor, file=sys.stdout, print_blocks=False, return_list=False):
"""
Prints the editor fold tree to stdout, for debugging purpose.
:param editor: CodeEditor instance.
:param file: file handle where the tree will be printed. Default is stdout.
:param print_blocks: True to print all bl... | [
"def",
"print_tree",
"(",
"editor",
",",
"file",
"=",
"sys",
".",
"stdout",
",",
"print_blocks",
"=",
"False",
",",
"return_list",
"=",
"False",
")",
":",
"output_list",
"=",
"[",
"]",
"block",
"=",
"editor",
".",
"document",
"(",
")",
".",
"firstBlock... | Prints the editor fold tree to stdout, for debugging purpose.
:param editor: CodeEditor instance.
:param file: file handle where the tree will be printed. Default is stdout.
:param print_blocks: True to print all blocks, False to only print blocks
that are fold triggers | [
"Prints",
"the",
"editor",
"fold",
"tree",
"to",
"stdout",
"for",
"debugging",
"purpose",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/api/folding.py#L29-L63 | train |
spyder-ide/spyder | spyder/utils/environ.py | envdict2listdict | def envdict2listdict(envdict):
"""Dict --> Dict of lists"""
sep = os.path.pathsep
for key in envdict:
if sep in envdict[key]:
envdict[key] = [path.strip() for path in envdict[key].split(sep)]
return envdict | python | def envdict2listdict(envdict):
"""Dict --> Dict of lists"""
sep = os.path.pathsep
for key in envdict:
if sep in envdict[key]:
envdict[key] = [path.strip() for path in envdict[key].split(sep)]
return envdict | [
"def",
"envdict2listdict",
"(",
"envdict",
")",
":",
"sep",
"=",
"os",
".",
"path",
".",
"pathsep",
"for",
"key",
"in",
"envdict",
":",
"if",
"sep",
"in",
"envdict",
"[",
"key",
"]",
":",
"envdict",
"[",
"key",
"]",
"=",
"[",
"path",
".",
"strip",
... | Dict --> Dict of lists | [
"Dict",
"--",
">",
"Dict",
"of",
"lists"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/environ.py#L24-L30 | train |
spyder-ide/spyder | spyder/utils/environ.py | listdict2envdict | def listdict2envdict(listdict):
"""Dict of lists --> Dict"""
for key in listdict:
if isinstance(listdict[key], list):
listdict[key] = os.path.pathsep.join(listdict[key])
return listdict | python | def listdict2envdict(listdict):
"""Dict of lists --> Dict"""
for key in listdict:
if isinstance(listdict[key], list):
listdict[key] = os.path.pathsep.join(listdict[key])
return listdict | [
"def",
"listdict2envdict",
"(",
"listdict",
")",
":",
"for",
"key",
"in",
"listdict",
":",
"if",
"isinstance",
"(",
"listdict",
"[",
"key",
"]",
",",
"list",
")",
":",
"listdict",
"[",
"key",
"]",
"=",
"os",
".",
"path",
".",
"pathsep",
".",
"join",
... | Dict of lists --> Dict | [
"Dict",
"of",
"lists",
"--",
">",
"Dict"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/environ.py#L33-L38 | train |
spyder-ide/spyder | spyder/utils/environ.py | main | def main():
"""Run Windows environment variable editor"""
from spyder.utils.qthelpers import qapplication
app = qapplication()
if os.name == 'nt':
dialog = WinUserEnvDialog()
else:
dialog = EnvDialog()
dialog.show()
app.exec_() | python | def main():
"""Run Windows environment variable editor"""
from spyder.utils.qthelpers import qapplication
app = qapplication()
if os.name == 'nt':
dialog = WinUserEnvDialog()
else:
dialog = EnvDialog()
dialog.show()
app.exec_() | [
"def",
"main",
"(",
")",
":",
"from",
"spyder",
".",
"utils",
".",
"qthelpers",
"import",
"qapplication",
"app",
"=",
"qapplication",
"(",
")",
"if",
"os",
".",
"name",
"==",
"'nt'",
":",
"dialog",
"=",
"WinUserEnvDialog",
"(",
")",
"else",
":",
"dialo... | Run Windows environment variable editor | [
"Run",
"Windows",
"environment",
"variable",
"editor"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/environ.py#L141-L150 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayInline.keyPressEvent | def keyPressEvent(self, event):
"""
Qt override.
"""
if event.key() in [Qt.Key_Enter, Qt.Key_Return]:
self._parent.process_text()
if self._parent.is_valid():
self._parent.keyPressEvent(event)
else:
QLineEdit.keyPressEve... | python | def keyPressEvent(self, event):
"""
Qt override.
"""
if event.key() in [Qt.Key_Enter, Qt.Key_Return]:
self._parent.process_text()
if self._parent.is_valid():
self._parent.keyPressEvent(event)
else:
QLineEdit.keyPressEve... | [
"def",
"keyPressEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"event",
".",
"key",
"(",
")",
"in",
"[",
"Qt",
".",
"Key_Enter",
",",
"Qt",
".",
"Key_Return",
"]",
":",
"self",
".",
"_parent",
".",
"process_text",
"(",
")",
"if",
"self",
".",
... | Qt override. | [
"Qt",
"override",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L47-L56 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayInline.event | def event(self, event):
"""
Qt override.
This is needed to be able to intercept the Tab key press event.
"""
if event.type() == QEvent.KeyPress:
if (event.key() == Qt.Key_Tab or event.key() == Qt.Key_Space):
text = self.text()
... | python | def event(self, event):
"""
Qt override.
This is needed to be able to intercept the Tab key press event.
"""
if event.type() == QEvent.KeyPress:
if (event.key() == Qt.Key_Tab or event.key() == Qt.Key_Space):
text = self.text()
... | [
"def",
"event",
"(",
"self",
",",
"event",
")",
":",
"if",
"event",
".",
"type",
"(",
")",
"==",
"QEvent",
".",
"KeyPress",
":",
"if",
"(",
"event",
".",
"key",
"(",
")",
"==",
"Qt",
".",
"Key_Tab",
"or",
"event",
".",
"key",
"(",
")",
"==",
... | Qt override.
This is needed to be able to intercept the Tab key press event. | [
"Qt",
"override",
".",
"This",
"is",
"needed",
"to",
"be",
"able",
"to",
"intercept",
"the",
"Tab",
"key",
"press",
"event",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L59-L79 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayTable.keyPressEvent | def keyPressEvent(self, event):
"""
Qt override.
"""
if event.key() in [Qt.Key_Enter, Qt.Key_Return]:
QTableWidget.keyPressEvent(self, event)
# To avoid having to enter one final tab
self.setDisabled(True)
self.setDisabled(False)
... | python | def keyPressEvent(self, event):
"""
Qt override.
"""
if event.key() in [Qt.Key_Enter, Qt.Key_Return]:
QTableWidget.keyPressEvent(self, event)
# To avoid having to enter one final tab
self.setDisabled(True)
self.setDisabled(False)
... | [
"def",
"keyPressEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"event",
".",
"key",
"(",
")",
"in",
"[",
"Qt",
".",
"Key_Enter",
",",
"Qt",
".",
"Key_Return",
"]",
":",
"QTableWidget",
".",
"keyPressEvent",
"(",
"self",
",",
"event",
")",
"# To a... | Qt override. | [
"Qt",
"override",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L93-L104 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayTable.reset_headers | def reset_headers(self):
"""
Update the column and row numbering in the headers.
"""
rows = self.rowCount()
cols = self.columnCount()
for r in range(rows):
self.setVerticalHeaderItem(r, QTableWidgetItem(str(r)))
for c in range(cols):
... | python | def reset_headers(self):
"""
Update the column and row numbering in the headers.
"""
rows = self.rowCount()
cols = self.columnCount()
for r in range(rows):
self.setVerticalHeaderItem(r, QTableWidgetItem(str(r)))
for c in range(cols):
... | [
"def",
"reset_headers",
"(",
"self",
")",
":",
"rows",
"=",
"self",
".",
"rowCount",
"(",
")",
"cols",
"=",
"self",
".",
"columnCount",
"(",
")",
"for",
"r",
"in",
"range",
"(",
"rows",
")",
":",
"self",
".",
"setVerticalHeaderItem",
"(",
"r",
",",
... | Update the column and row numbering in the headers. | [
"Update",
"the",
"column",
"and",
"row",
"numbering",
"in",
"the",
"headers",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L124-L135 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayTable.text | def text(self):
"""
Return the entered array in a parseable form.
"""
text = []
rows = self.rowCount()
cols = self.columnCount()
# handle empty table case
if rows == 2 and cols == 2:
item = self.item(0, 0)
if item is Non... | python | def text(self):
"""
Return the entered array in a parseable form.
"""
text = []
rows = self.rowCount()
cols = self.columnCount()
# handle empty table case
if rows == 2 and cols == 2:
item = self.item(0, 0)
if item is Non... | [
"def",
"text",
"(",
"self",
")",
":",
"text",
"=",
"[",
"]",
"rows",
"=",
"self",
".",
"rowCount",
"(",
")",
"cols",
"=",
"self",
".",
"columnCount",
"(",
")",
"# handle empty table case\r",
"if",
"rows",
"==",
"2",
"and",
"cols",
"==",
"2",
":",
"... | Return the entered array in a parseable form. | [
"Return",
"the",
"entered",
"array",
"in",
"a",
"parseable",
"form",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L137-L166 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayDialog.keyPressEvent | def keyPressEvent(self, event):
"""
Qt override.
"""
QToolTip.hideText()
ctrl = event.modifiers() & Qt.ControlModifier
if event.key() in [Qt.Key_Enter, Qt.Key_Return]:
if ctrl:
self.process_text(array=False)
else:
... | python | def keyPressEvent(self, event):
"""
Qt override.
"""
QToolTip.hideText()
ctrl = event.modifiers() & Qt.ControlModifier
if event.key() in [Qt.Key_Enter, Qt.Key_Return]:
if ctrl:
self.process_text(array=False)
else:
... | [
"def",
"keyPressEvent",
"(",
"self",
",",
"event",
")",
":",
"QToolTip",
".",
"hideText",
"(",
")",
"ctrl",
"=",
"event",
".",
"modifiers",
"(",
")",
"&",
"Qt",
".",
"ControlModifier",
"if",
"event",
".",
"key",
"(",
")",
"in",
"[",
"Qt",
".",
"Key... | Qt override. | [
"Qt",
"override",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L271-L285 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayDialog.event | def event(self, event):
"""
Qt Override.
Usefull when in line edit mode.
"""
if event.type() == QEvent.KeyPress and event.key() == Qt.Key_Tab:
return False
return QWidget.event(self, event) | python | def event(self, event):
"""
Qt Override.
Usefull when in line edit mode.
"""
if event.type() == QEvent.KeyPress and event.key() == Qt.Key_Tab:
return False
return QWidget.event(self, event) | [
"def",
"event",
"(",
"self",
",",
"event",
")",
":",
"if",
"event",
".",
"type",
"(",
")",
"==",
"QEvent",
".",
"KeyPress",
"and",
"event",
".",
"key",
"(",
")",
"==",
"Qt",
".",
"Key_Tab",
":",
"return",
"False",
"return",
"QWidget",
".",
"event",... | Qt Override.
Usefull when in line edit mode. | [
"Qt",
"Override",
".",
"Usefull",
"when",
"in",
"line",
"edit",
"mode",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L287-L295 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayDialog.process_text | def process_text(self, array=True):
"""
Construct the text based on the entered content in the widget.
"""
if array:
prefix = 'np.array([['
else:
prefix = 'np.matrix([['
suffix = ']])'
values = self._widget.text().strip()
... | python | def process_text(self, array=True):
"""
Construct the text based on the entered content in the widget.
"""
if array:
prefix = 'np.array([['
else:
prefix = 'np.matrix([['
suffix = ']])'
values = self._widget.text().strip()
... | [
"def",
"process_text",
"(",
"self",
",",
"array",
"=",
"True",
")",
":",
"if",
"array",
":",
"prefix",
"=",
"'np.array([['",
"else",
":",
"prefix",
"=",
"'np.matrix([['",
"suffix",
"=",
"']])'",
"values",
"=",
"self",
".",
"_widget",
".",
"text",
"(",
... | Construct the text based on the entered content in the widget. | [
"Construct",
"the",
"text",
"based",
"on",
"the",
"entered",
"content",
"in",
"the",
"widget",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L297-L369 | train |
spyder-ide/spyder | spyder/widgets/arraybuilder.py | NumpyArrayDialog.update_warning | def update_warning(self):
"""
Updates the icon and tip based on the validity of the array content.
"""
widget = self._button_warning
if not self.is_valid():
tip = _('Array dimensions not valid')
widget.setIcon(ima.icon('MessageBoxWarning'))
... | python | def update_warning(self):
"""
Updates the icon and tip based on the validity of the array content.
"""
widget = self._button_warning
if not self.is_valid():
tip = _('Array dimensions not valid')
widget.setIcon(ima.icon('MessageBoxWarning'))
... | [
"def",
"update_warning",
"(",
"self",
")",
":",
"widget",
"=",
"self",
".",
"_button_warning",
"if",
"not",
"self",
".",
"is_valid",
"(",
")",
":",
"tip",
"=",
"_",
"(",
"'Array dimensions not valid'",
")",
"widget",
".",
"setIcon",
"(",
"ima",
".",
"ico... | Updates the icon and tip based on the validity of the array content. | [
"Updates",
"the",
"icon",
"and",
"tip",
"based",
"on",
"the",
"validity",
"of",
"the",
"array",
"content",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/arraybuilder.py#L371-L382 | train |
spyder-ide/spyder | spyder/preferences/general.py | MainConfigPage._save_lang | def _save_lang(self):
"""
Get selected language setting and save to language configuration file.
"""
for combobox, (option, _default) in list(self.comboboxes.items()):
if option == 'interface_language':
data = combobox.itemData(combobox.currentIndex())
... | python | def _save_lang(self):
"""
Get selected language setting and save to language configuration file.
"""
for combobox, (option, _default) in list(self.comboboxes.items()):
if option == 'interface_language':
data = combobox.itemData(combobox.currentIndex())
... | [
"def",
"_save_lang",
"(",
"self",
")",
":",
"for",
"combobox",
",",
"(",
"option",
",",
"_default",
")",
"in",
"list",
"(",
"self",
".",
"comboboxes",
".",
"items",
"(",
")",
")",
":",
"if",
"option",
"==",
"'interface_language'",
":",
"data",
"=",
"... | Get selected language setting and save to language configuration file. | [
"Get",
"selected",
"language",
"setting",
"and",
"save",
"to",
"language",
"configuration",
"file",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/general.py#L262-L281 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/projectdialog.py | is_writable | def is_writable(path):
"""Check if path has write access"""
try:
testfile = tempfile.TemporaryFile(dir=path)
testfile.close()
except OSError as e:
if e.errno == errno.EACCES: # 13
return False
return True | python | def is_writable(path):
"""Check if path has write access"""
try:
testfile = tempfile.TemporaryFile(dir=path)
testfile.close()
except OSError as e:
if e.errno == errno.EACCES: # 13
return False
return True | [
"def",
"is_writable",
"(",
"path",
")",
":",
"try",
":",
"testfile",
"=",
"tempfile",
".",
"TemporaryFile",
"(",
"dir",
"=",
"path",
")",
"testfile",
".",
"close",
"(",
")",
"except",
"OSError",
"as",
"e",
":",
"if",
"e",
".",
"errno",
"==",
"errno",... | Check if path has write access | [
"Check",
"if",
"path",
"has",
"write",
"access"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/projectdialog.py#L35-L43 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/projectdialog.py | ProjectDialog._get_project_types | def _get_project_types(self):
"""Get all available project types."""
project_types = get_available_project_types()
projects = []
for project in project_types:
projects.append(project.PROJECT_TYPE_NAME)
return projects | python | def _get_project_types(self):
"""Get all available project types."""
project_types = get_available_project_types()
projects = []
for project in project_types:
projects.append(project.PROJECT_TYPE_NAME)
return projects | [
"def",
"_get_project_types",
"(",
"self",
")",
":",
"project_types",
"=",
"get_available_project_types",
"(",
")",
"projects",
"=",
"[",
"]",
"for",
"project",
"in",
"project_types",
":",
"projects",
".",
"append",
"(",
"project",
".",
"PROJECT_TYPE_NAME",
")",
... | Get all available project types. | [
"Get",
"all",
"available",
"project",
"types",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/projectdialog.py#L143-L151 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/projectdialog.py | ProjectDialog.select_location | def select_location(self):
"""Select directory."""
location = osp.normpath(getexistingdirectory(self,
_("Select directory"),
self.location))
if location:
if is_writable(l... | python | def select_location(self):
"""Select directory."""
location = osp.normpath(getexistingdirectory(self,
_("Select directory"),
self.location))
if location:
if is_writable(l... | [
"def",
"select_location",
"(",
"self",
")",
":",
"location",
"=",
"osp",
".",
"normpath",
"(",
"getexistingdirectory",
"(",
"self",
",",
"_",
"(",
"\"Select directory\"",
")",
",",
"self",
".",
"location",
")",
")",
"if",
"location",
":",
"if",
"is_writabl... | Select directory. | [
"Select",
"directory",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/projectdialog.py#L153-L162 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/projectdialog.py | ProjectDialog.update_location | def update_location(self, text=''):
"""Update text of location."""
self.text_project_name.setEnabled(self.radio_new_dir.isChecked())
name = self.text_project_name.text().strip()
if name and self.radio_new_dir.isChecked():
path = osp.join(self.location, name)
... | python | def update_location(self, text=''):
"""Update text of location."""
self.text_project_name.setEnabled(self.radio_new_dir.isChecked())
name = self.text_project_name.text().strip()
if name and self.radio_new_dir.isChecked():
path = osp.join(self.location, name)
... | [
"def",
"update_location",
"(",
"self",
",",
"text",
"=",
"''",
")",
":",
"self",
".",
"text_project_name",
".",
"setEnabled",
"(",
"self",
".",
"radio_new_dir",
".",
"isChecked",
"(",
")",
")",
"name",
"=",
"self",
".",
"text_project_name",
".",
"text",
... | Update text of location. | [
"Update",
"text",
"of",
"location",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/projectdialog.py#L164-L179 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/projectdialog.py | ProjectDialog.create_project | def create_project(self):
"""Create project."""
packages = ['python={0}'.format(self.combo_python_version.currentText())]
self.sig_project_creation_requested.emit(
self.text_location.text(),
self.combo_project_type.currentText(),
packages)
self.... | python | def create_project(self):
"""Create project."""
packages = ['python={0}'.format(self.combo_python_version.currentText())]
self.sig_project_creation_requested.emit(
self.text_location.text(),
self.combo_project_type.currentText(),
packages)
self.... | [
"def",
"create_project",
"(",
"self",
")",
":",
"packages",
"=",
"[",
"'python={0}'",
".",
"format",
"(",
"self",
".",
"combo_python_version",
".",
"currentText",
"(",
")",
")",
"]",
"self",
".",
"sig_project_creation_requested",
".",
"emit",
"(",
"self",
".... | Create project. | [
"Create",
"project",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/projectdialog.py#L181-L188 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.set_font | def set_font(self, font):
"""Set shell styles font"""
self.setFont(font)
self.set_pythonshell_font(font)
cursor = self.textCursor()
cursor.select(QTextCursor.Document)
charformat = QTextCharFormat()
charformat.setFontFamily(font.family())
charforma... | python | def set_font(self, font):
"""Set shell styles font"""
self.setFont(font)
self.set_pythonshell_font(font)
cursor = self.textCursor()
cursor.select(QTextCursor.Document)
charformat = QTextCharFormat()
charformat.setFontFamily(font.family())
charforma... | [
"def",
"set_font",
"(",
"self",
",",
"font",
")",
":",
"self",
".",
"setFont",
"(",
"font",
")",
"self",
".",
"set_pythonshell_font",
"(",
"font",
")",
"cursor",
"=",
"self",
".",
"textCursor",
"(",
")",
"cursor",
".",
"select",
"(",
"QTextCursor",
"."... | Set shell styles font | [
"Set",
"shell",
"styles",
"font"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L108-L117 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.setup_context_menu | def setup_context_menu(self):
"""Setup shell context menu"""
self.menu = QMenu(self)
self.cut_action = create_action(self, _("Cut"),
shortcut=keybinding('Cut'),
icon=ima.icon('editcut'),
... | python | def setup_context_menu(self):
"""Setup shell context menu"""
self.menu = QMenu(self)
self.cut_action = create_action(self, _("Cut"),
shortcut=keybinding('Cut'),
icon=ima.icon('editcut'),
... | [
"def",
"setup_context_menu",
"(",
"self",
")",
":",
"self",
".",
"menu",
"=",
"QMenu",
"(",
"self",
")",
"self",
".",
"cut_action",
"=",
"create_action",
"(",
"self",
",",
"_",
"(",
"\"Cut\"",
")",
",",
"shortcut",
"=",
"keybinding",
"(",
"'Cut'",
")",... | Setup shell context menu | [
"Setup",
"shell",
"context",
"menu"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L121-L151 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.contextMenuEvent | def contextMenuEvent(self, event):
"""Reimplement Qt method"""
state = self.has_selected_text()
self.copy_action.setEnabled(state)
self.cut_action.setEnabled(state)
self.delete_action.setEnabled(state)
self.menu.popup(event.globalPos())
event.accept() | python | def contextMenuEvent(self, event):
"""Reimplement Qt method"""
state = self.has_selected_text()
self.copy_action.setEnabled(state)
self.cut_action.setEnabled(state)
self.delete_action.setEnabled(state)
self.menu.popup(event.globalPos())
event.accept() | [
"def",
"contextMenuEvent",
"(",
"self",
",",
"event",
")",
":",
"state",
"=",
"self",
".",
"has_selected_text",
"(",
")",
"self",
".",
"copy_action",
".",
"setEnabled",
"(",
"state",
")",
"self",
".",
"cut_action",
".",
"setEnabled",
"(",
"state",
")",
"... | Reimplement Qt method | [
"Reimplement",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L153-L160 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget._select_input | def _select_input(self):
"""Select current line (without selecting console prompt)"""
line, index = self.get_position('eof')
if self.current_prompt_pos is None:
pline, pindex = line, index
else:
pline, pindex = self.current_prompt_pos
self.setSelect... | python | def _select_input(self):
"""Select current line (without selecting console prompt)"""
line, index = self.get_position('eof')
if self.current_prompt_pos is None:
pline, pindex = line, index
else:
pline, pindex = self.current_prompt_pos
self.setSelect... | [
"def",
"_select_input",
"(",
"self",
")",
":",
"line",
",",
"index",
"=",
"self",
".",
"get_position",
"(",
"'eof'",
")",
"if",
"self",
".",
"current_prompt_pos",
"is",
"None",
":",
"pline",
",",
"pindex",
"=",
"line",
",",
"index",
"else",
":",
"pline... | Select current line (without selecting console prompt) | [
"Select",
"current",
"line",
"(",
"without",
"selecting",
"console",
"prompt",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L167-L174 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget._set_input_buffer | def _set_input_buffer(self, text):
"""Set input buffer"""
if self.current_prompt_pos is not None:
self.replace_text(self.current_prompt_pos, 'eol', text)
else:
self.insert(text)
self.set_cursor_position('eof') | python | def _set_input_buffer(self, text):
"""Set input buffer"""
if self.current_prompt_pos is not None:
self.replace_text(self.current_prompt_pos, 'eol', text)
else:
self.insert(text)
self.set_cursor_position('eof') | [
"def",
"_set_input_buffer",
"(",
"self",
",",
"text",
")",
":",
"if",
"self",
".",
"current_prompt_pos",
"is",
"not",
"None",
":",
"self",
".",
"replace_text",
"(",
"self",
".",
"current_prompt_pos",
",",
"'eol'",
",",
"text",
")",
"else",
":",
"self",
"... | Set input buffer | [
"Set",
"input",
"buffer"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L185-L191 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget._get_input_buffer | def _get_input_buffer(self):
"""Return input buffer"""
input_buffer = ''
if self.current_prompt_pos is not None:
input_buffer = self.get_text(self.current_prompt_pos, 'eol')
input_buffer = input_buffer.replace(os.linesep, '\n')
return input_buffer | python | def _get_input_buffer(self):
"""Return input buffer"""
input_buffer = ''
if self.current_prompt_pos is not None:
input_buffer = self.get_text(self.current_prompt_pos, 'eol')
input_buffer = input_buffer.replace(os.linesep, '\n')
return input_buffer | [
"def",
"_get_input_buffer",
"(",
"self",
")",
":",
"input_buffer",
"=",
"''",
"if",
"self",
".",
"current_prompt_pos",
"is",
"not",
"None",
":",
"input_buffer",
"=",
"self",
".",
"get_text",
"(",
"self",
".",
"current_prompt_pos",
",",
"'eol'",
")",
"input_b... | Return input buffer | [
"Return",
"input",
"buffer"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L193-L199 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.new_prompt | def new_prompt(self, prompt):
"""
Print a new prompt and save its (line, index) position
"""
if self.get_cursor_line_column()[1] != 0:
self.write('\n')
self.write(prompt, prompt=True)
# now we update our cursor giving end of prompt
self.current... | python | def new_prompt(self, prompt):
"""
Print a new prompt and save its (line, index) position
"""
if self.get_cursor_line_column()[1] != 0:
self.write('\n')
self.write(prompt, prompt=True)
# now we update our cursor giving end of prompt
self.current... | [
"def",
"new_prompt",
"(",
"self",
",",
"prompt",
")",
":",
"if",
"self",
".",
"get_cursor_line_column",
"(",
")",
"[",
"1",
"]",
"!=",
"0",
":",
"self",
".",
"write",
"(",
"'\\n'",
")",
"self",
".",
"write",
"(",
"prompt",
",",
"prompt",
"=",
"True... | Print a new prompt and save its (line, index) position | [
"Print",
"a",
"new",
"prompt",
"and",
"save",
"its",
"(",
"line",
"index",
")",
"position"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L205-L215 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.check_selection | def check_selection(self):
"""
Check if selected text is r/w,
otherwise remove read-only parts of selection
"""
if self.current_prompt_pos is None:
self.set_cursor_position('eof')
else:
self.truncate_selection(self.current_prompt_pos) | python | def check_selection(self):
"""
Check if selected text is r/w,
otherwise remove read-only parts of selection
"""
if self.current_prompt_pos is None:
self.set_cursor_position('eof')
else:
self.truncate_selection(self.current_prompt_pos) | [
"def",
"check_selection",
"(",
"self",
")",
":",
"if",
"self",
".",
"current_prompt_pos",
"is",
"None",
":",
"self",
".",
"set_cursor_position",
"(",
"'eof'",
")",
"else",
":",
"self",
".",
"truncate_selection",
"(",
"self",
".",
"current_prompt_pos",
")"
] | Check if selected text is r/w,
otherwise remove read-only parts of selection | [
"Check",
"if",
"selected",
"text",
"is",
"r",
"/",
"w",
"otherwise",
"remove",
"read",
"-",
"only",
"parts",
"of",
"selection"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L217-L225 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.copy | def copy(self):
"""Copy text to clipboard... or keyboard interrupt"""
if self.has_selected_text():
ConsoleBaseWidget.copy(self)
elif not sys.platform == 'darwin':
self.interrupt() | python | def copy(self):
"""Copy text to clipboard... or keyboard interrupt"""
if self.has_selected_text():
ConsoleBaseWidget.copy(self)
elif not sys.platform == 'darwin':
self.interrupt() | [
"def",
"copy",
"(",
"self",
")",
":",
"if",
"self",
".",
"has_selected_text",
"(",
")",
":",
"ConsoleBaseWidget",
".",
"copy",
"(",
"self",
")",
"elif",
"not",
"sys",
".",
"platform",
"==",
"'darwin'",
":",
"self",
".",
"interrupt",
"(",
")"
] | Copy text to clipboard... or keyboard interrupt | [
"Copy",
"text",
"to",
"clipboard",
"...",
"or",
"keyboard",
"interrupt"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L230-L235 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.save_historylog | def save_historylog(self):
"""Save current history log (all text in console)"""
title = _("Save history log")
self.redirect_stdio.emit(False)
filename, _selfilter = getsavefilename(self, title,
self.historylog_filename, "%s (*.log)" % _("History logs"))
... | python | def save_historylog(self):
"""Save current history log (all text in console)"""
title = _("Save history log")
self.redirect_stdio.emit(False)
filename, _selfilter = getsavefilename(self, title,
self.historylog_filename, "%s (*.log)" % _("History logs"))
... | [
"def",
"save_historylog",
"(",
"self",
")",
":",
"title",
"=",
"_",
"(",
"\"Save history log\"",
")",
"self",
".",
"redirect_stdio",
".",
"emit",
"(",
"False",
")",
"filename",
",",
"_selfilter",
"=",
"getsavefilename",
"(",
"self",
",",
"title",
",",
"sel... | Save current history log (all text in console) | [
"Save",
"current",
"history",
"log",
"(",
"all",
"text",
"in",
"console",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L256-L271 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.on_new_line | def on_new_line(self):
"""On new input line"""
self.set_cursor_position('eof')
self.current_prompt_pos = self.get_position('cursor')
self.new_input_line = False | python | def on_new_line(self):
"""On new input line"""
self.set_cursor_position('eof')
self.current_prompt_pos = self.get_position('cursor')
self.new_input_line = False | [
"def",
"on_new_line",
"(",
"self",
")",
":",
"self",
".",
"set_cursor_position",
"(",
"'eof'",
")",
"self",
".",
"current_prompt_pos",
"=",
"self",
".",
"get_position",
"(",
"'cursor'",
")",
"self",
".",
"new_input_line",
"=",
"False"
] | On new input line | [
"On",
"new",
"input",
"line"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L283-L287 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.preprocess_keyevent | def preprocess_keyevent(self, event):
"""Pre-process keypress event:
return True if event is accepted, false otherwise"""
# Copy must be done first to be able to copy read-only text parts
# (otherwise, right below, we would remove selection
# if not on current line)
... | python | def preprocess_keyevent(self, event):
"""Pre-process keypress event:
return True if event is accepted, false otherwise"""
# Copy must be done first to be able to copy read-only text parts
# (otherwise, right below, we would remove selection
# if not on current line)
... | [
"def",
"preprocess_keyevent",
"(",
"self",
",",
"event",
")",
":",
"# Copy must be done first to be able to copy read-only text parts\r",
"# (otherwise, right below, we would remove selection\r",
"# if not on current line)\r",
"ctrl",
"=",
"event",
".",
"modifiers",
"(",
")",
"&... | Pre-process keypress event:
return True if event is accepted, false otherwise | [
"Pre",
"-",
"process",
"keypress",
"event",
":",
"return",
"True",
"if",
"event",
"is",
"accepted",
"false",
"otherwise"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L307-L328 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.postprocess_keyevent | def postprocess_keyevent(self, event):
"""Post-process keypress event:
in InternalShell, this is method is called when shell is ready"""
event, text, key, ctrl, shift = restore_keyevent(event)
# Is cursor on the last line? and after prompt?
if len(text):
... | python | def postprocess_keyevent(self, event):
"""Post-process keypress event:
in InternalShell, this is method is called when shell is ready"""
event, text, key, ctrl, shift = restore_keyevent(event)
# Is cursor on the last line? and after prompt?
if len(text):
... | [
"def",
"postprocess_keyevent",
"(",
"self",
",",
"event",
")",
":",
"event",
",",
"text",
",",
"key",
",",
"ctrl",
",",
"shift",
"=",
"restore_keyevent",
"(",
"event",
")",
"# Is cursor on the last line? and after prompt?\r",
"if",
"len",
"(",
"text",
")",
":"... | Post-process keypress event:
in InternalShell, this is method is called when shell is ready | [
"Post",
"-",
"process",
"keypress",
"event",
":",
"in",
"InternalShell",
"this",
"is",
"method",
"is",
"called",
"when",
"shell",
"is",
"ready"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L330-L457 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.load_history | def load_history(self):
"""Load history from a .py file in user home directory"""
if osp.isfile(self.history_filename):
rawhistory, _ = encoding.readlines(self.history_filename)
rawhistory = [line.replace('\n', '') for line in rawhistory]
if rawhistory[1] != self... | python | def load_history(self):
"""Load history from a .py file in user home directory"""
if osp.isfile(self.history_filename):
rawhistory, _ = encoding.readlines(self.history_filename)
rawhistory = [line.replace('\n', '') for line in rawhistory]
if rawhistory[1] != self... | [
"def",
"load_history",
"(",
"self",
")",
":",
"if",
"osp",
".",
"isfile",
"(",
"self",
".",
"history_filename",
")",
":",
"rawhistory",
",",
"_",
"=",
"encoding",
".",
"readlines",
"(",
"self",
".",
"history_filename",
")",
"rawhistory",
"=",
"[",
"line"... | Load history from a .py file in user home directory | [
"Load",
"history",
"from",
"a",
".",
"py",
"file",
"in",
"user",
"home",
"directory"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L495-L520 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.write_error | def write_error(self, text):
"""Simulate stderr"""
self.flush()
self.write(text, flush=True, error=True)
if get_debug_level():
STDERR.write(text) | python | def write_error(self, text):
"""Simulate stderr"""
self.flush()
self.write(text, flush=True, error=True)
if get_debug_level():
STDERR.write(text) | [
"def",
"write_error",
"(",
"self",
",",
"text",
")",
":",
"self",
".",
"flush",
"(",
")",
"self",
".",
"write",
"(",
"text",
",",
"flush",
"=",
"True",
",",
"error",
"=",
"True",
")",
"if",
"get_debug_level",
"(",
")",
":",
"STDERR",
".",
"write",
... | Simulate stderr | [
"Simulate",
"stderr"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L523-L528 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.write | def write(self, text, flush=False, error=False, prompt=False):
"""Simulate stdout and stderr"""
if prompt:
self.flush()
if not is_string(text):
# This test is useful to discriminate QStrings from decoded str
text = to_text_string(text)
self.__bu... | python | def write(self, text, flush=False, error=False, prompt=False):
"""Simulate stdout and stderr"""
if prompt:
self.flush()
if not is_string(text):
# This test is useful to discriminate QStrings from decoded str
text = to_text_string(text)
self.__bu... | [
"def",
"write",
"(",
"self",
",",
"text",
",",
"flush",
"=",
"False",
",",
"error",
"=",
"False",
",",
"prompt",
"=",
"False",
")",
":",
"if",
"prompt",
":",
"self",
".",
"flush",
"(",
")",
"if",
"not",
"is_string",
"(",
"text",
")",
":",
"# This... | Simulate stdout and stderr | [
"Simulate",
"stdout",
"and",
"stderr"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L530-L545 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.flush | def flush(self, error=False, prompt=False):
"""Flush buffer, write text to console"""
# Fix for Issue 2452
if PY3:
try:
text = "".join(self.__buffer)
except TypeError:
text = b"".join(self.__buffer)
try:
... | python | def flush(self, error=False, prompt=False):
"""Flush buffer, write text to console"""
# Fix for Issue 2452
if PY3:
try:
text = "".join(self.__buffer)
except TypeError:
text = b"".join(self.__buffer)
try:
... | [
"def",
"flush",
"(",
"self",
",",
"error",
"=",
"False",
",",
"prompt",
"=",
"False",
")",
":",
"# Fix for Issue 2452 \r",
"if",
"PY3",
":",
"try",
":",
"text",
"=",
"\"\"",
".",
"join",
"(",
"self",
".",
"__buffer",
")",
"except",
"TypeError",
":",
... | Flush buffer, write text to console | [
"Flush",
"buffer",
"write",
"text",
"to",
"console"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L547-L567 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.insert_text | def insert_text(self, text, at_end=False, error=False, prompt=False):
"""
Insert text at the current cursor position
or at the end of the command line
"""
if at_end:
# Insert text at the end of the command line
self.append_text_to_shell(text, error,... | python | def insert_text(self, text, at_end=False, error=False, prompt=False):
"""
Insert text at the current cursor position
or at the end of the command line
"""
if at_end:
# Insert text at the end of the command line
self.append_text_to_shell(text, error,... | [
"def",
"insert_text",
"(",
"self",
",",
"text",
",",
"at_end",
"=",
"False",
",",
"error",
"=",
"False",
",",
"prompt",
"=",
"False",
")",
":",
"if",
"at_end",
":",
"# Insert text at the end of the command line\r",
"self",
".",
"append_text_to_shell",
"(",
"te... | Insert text at the current cursor position
or at the end of the command line | [
"Insert",
"text",
"at",
"the",
"current",
"cursor",
"position",
"or",
"at",
"the",
"end",
"of",
"the",
"command",
"line"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L571-L581 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | ShellBaseWidget.dropEvent | def dropEvent(self, event):
"""Drag and Drop - Drop event"""
if (event.mimeData().hasFormat("text/plain")):
text = to_text_string(event.mimeData().text())
if self.new_input_line:
self.on_new_line()
self.insert_text(text, at_end=True)
... | python | def dropEvent(self, event):
"""Drag and Drop - Drop event"""
if (event.mimeData().hasFormat("text/plain")):
text = to_text_string(event.mimeData().text())
if self.new_input_line:
self.on_new_line()
self.insert_text(text, at_end=True)
... | [
"def",
"dropEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"(",
"event",
".",
"mimeData",
"(",
")",
".",
"hasFormat",
"(",
"\"text/plain\"",
")",
")",
":",
"text",
"=",
"to_text_string",
"(",
"event",
".",
"mimeData",
"(",
")",
".",
"text",
"(",
... | Drag and Drop - Drop event | [
"Drag",
"and",
"Drop",
"-",
"Drop",
"event"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L607-L618 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.setup_context_menu | def setup_context_menu(self):
"""Reimplements ShellBaseWidget method"""
ShellBaseWidget.setup_context_menu(self)
self.copy_without_prompts_action = create_action(self,
_("Copy without prompts"),
icon=ima.icon('copywop... | python | def setup_context_menu(self):
"""Reimplements ShellBaseWidget method"""
ShellBaseWidget.setup_context_menu(self)
self.copy_without_prompts_action = create_action(self,
_("Copy without prompts"),
icon=ima.icon('copywop... | [
"def",
"setup_context_menu",
"(",
"self",
")",
":",
"ShellBaseWidget",
".",
"setup_context_menu",
"(",
"self",
")",
"self",
".",
"copy_without_prompts_action",
"=",
"create_action",
"(",
"self",
",",
"_",
"(",
"\"Copy without prompts\"",
")",
",",
"icon",
"=",
"... | Reimplements ShellBaseWidget method | [
"Reimplements",
"ShellBaseWidget",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L672-L693 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.contextMenuEvent | def contextMenuEvent(self, event):
"""Reimplements ShellBaseWidget method"""
state = self.has_selected_text()
self.copy_without_prompts_action.setEnabled(state)
ShellBaseWidget.contextMenuEvent(self, event) | python | def contextMenuEvent(self, event):
"""Reimplements ShellBaseWidget method"""
state = self.has_selected_text()
self.copy_without_prompts_action.setEnabled(state)
ShellBaseWidget.contextMenuEvent(self, event) | [
"def",
"contextMenuEvent",
"(",
"self",
",",
"event",
")",
":",
"state",
"=",
"self",
".",
"has_selected_text",
"(",
")",
"self",
".",
"copy_without_prompts_action",
".",
"setEnabled",
"(",
"state",
")",
"ShellBaseWidget",
".",
"contextMenuEvent",
"(",
"self",
... | Reimplements ShellBaseWidget method | [
"Reimplements",
"ShellBaseWidget",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L695-L699 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.copy_without_prompts | def copy_without_prompts(self):
"""Copy text to clipboard without prompts"""
text = self.get_selected_text()
lines = text.split(os.linesep)
for index, line in enumerate(lines):
if line.startswith('>>> ') or line.startswith('... '):
lines[index] = line[4:... | python | def copy_without_prompts(self):
"""Copy text to clipboard without prompts"""
text = self.get_selected_text()
lines = text.split(os.linesep)
for index, line in enumerate(lines):
if line.startswith('>>> ') or line.startswith('... '):
lines[index] = line[4:... | [
"def",
"copy_without_prompts",
"(",
"self",
")",
":",
"text",
"=",
"self",
".",
"get_selected_text",
"(",
")",
"lines",
"=",
"text",
".",
"split",
"(",
"os",
".",
"linesep",
")",
"for",
"index",
",",
"line",
"in",
"enumerate",
"(",
"lines",
")",
":",
... | Copy text to clipboard without prompts | [
"Copy",
"text",
"to",
"clipboard",
"without",
"prompts"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L702-L710 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.postprocess_keyevent | def postprocess_keyevent(self, event):
"""Process keypress event"""
ShellBaseWidget.postprocess_keyevent(self, event)
if QToolTip.isVisible():
_event, _text, key, _ctrl, _shift = restore_keyevent(event)
self.hide_tooltip_if_necessary(key) | python | def postprocess_keyevent(self, event):
"""Process keypress event"""
ShellBaseWidget.postprocess_keyevent(self, event)
if QToolTip.isVisible():
_event, _text, key, _ctrl, _shift = restore_keyevent(event)
self.hide_tooltip_if_necessary(key) | [
"def",
"postprocess_keyevent",
"(",
"self",
",",
"event",
")",
":",
"ShellBaseWidget",
".",
"postprocess_keyevent",
"(",
"self",
",",
"event",
")",
"if",
"QToolTip",
".",
"isVisible",
"(",
")",
":",
"_event",
",",
"_text",
",",
"key",
",",
"_ctrl",
",",
... | Process keypress event | [
"Process",
"keypress",
"event"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L714-L719 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget._key_backspace | def _key_backspace(self, cursor_position):
"""Action for Backspace key"""
if self.has_selected_text():
self.check_selection()
self.remove_selected_text()
elif self.current_prompt_pos == cursor_position:
# Avoid deleting prompt
return
... | python | def _key_backspace(self, cursor_position):
"""Action for Backspace key"""
if self.has_selected_text():
self.check_selection()
self.remove_selected_text()
elif self.current_prompt_pos == cursor_position:
# Avoid deleting prompt
return
... | [
"def",
"_key_backspace",
"(",
"self",
",",
"cursor_position",
")",
":",
"if",
"self",
".",
"has_selected_text",
"(",
")",
":",
"self",
".",
"check_selection",
"(",
")",
"self",
".",
"remove_selected_text",
"(",
")",
"elif",
"self",
".",
"current_prompt_pos",
... | Action for Backspace key | [
"Action",
"for",
"Backspace",
"key"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L726-L739 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget._key_tab | def _key_tab(self):
"""Action for TAB key"""
if self.is_cursor_on_last_line():
empty_line = not self.get_current_line_to_cursor().strip()
if empty_line:
self.stdkey_tab()
else:
self.show_code_completion() | python | def _key_tab(self):
"""Action for TAB key"""
if self.is_cursor_on_last_line():
empty_line = not self.get_current_line_to_cursor().strip()
if empty_line:
self.stdkey_tab()
else:
self.show_code_completion() | [
"def",
"_key_tab",
"(",
"self",
")",
":",
"if",
"self",
".",
"is_cursor_on_last_line",
"(",
")",
":",
"empty_line",
"=",
"not",
"self",
".",
"get_current_line_to_cursor",
"(",
")",
".",
"strip",
"(",
")",
"if",
"empty_line",
":",
"self",
".",
"stdkey_tab",... | Action for TAB key | [
"Action",
"for",
"TAB",
"key"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L741-L748 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget._key_question | def _key_question(self, text):
"""Action for '?'"""
if self.get_current_line_to_cursor():
last_obj = self.get_last_obj()
if last_obj and not last_obj.isdigit():
self.show_object_info(last_obj)
self.insert_text(text)
# In case calltip and com... | python | def _key_question(self, text):
"""Action for '?'"""
if self.get_current_line_to_cursor():
last_obj = self.get_last_obj()
if last_obj and not last_obj.isdigit():
self.show_object_info(last_obj)
self.insert_text(text)
# In case calltip and com... | [
"def",
"_key_question",
"(",
"self",
",",
"text",
")",
":",
"if",
"self",
".",
"get_current_line_to_cursor",
"(",
")",
":",
"last_obj",
"=",
"self",
".",
"get_last_obj",
"(",
")",
"if",
"last_obj",
"and",
"not",
"last_obj",
".",
"isdigit",
"(",
")",
":",... | Action for '? | [
"Action",
"for",
"?"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L768-L777 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget._key_parenleft | def _key_parenleft(self, text):
"""Action for '('"""
self.hide_completion_widget()
if self.get_current_line_to_cursor():
last_obj = self.get_last_obj()
if last_obj and not last_obj.isdigit():
self.insert_text(text)
self.show_object_i... | python | def _key_parenleft(self, text):
"""Action for '('"""
self.hide_completion_widget()
if self.get_current_line_to_cursor():
last_obj = self.get_last_obj()
if last_obj and not last_obj.isdigit():
self.insert_text(text)
self.show_object_i... | [
"def",
"_key_parenleft",
"(",
"self",
",",
"text",
")",
":",
"self",
".",
"hide_completion_widget",
"(",
")",
"if",
"self",
".",
"get_current_line_to_cursor",
"(",
")",
":",
"last_obj",
"=",
"self",
".",
"get_last_obj",
"(",
")",
"if",
"last_obj",
"and",
"... | Action for '( | [
"Action",
"for",
"("
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L779-L788 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget._key_period | def _key_period(self, text):
"""Action for '.'"""
self.insert_text(text)
if self.codecompletion_auto:
# Enable auto-completion only if last token isn't a float
last_obj = self.get_last_obj()
if last_obj and not last_obj.isdigit():
self.s... | python | def _key_period(self, text):
"""Action for '.'"""
self.insert_text(text)
if self.codecompletion_auto:
# Enable auto-completion only if last token isn't a float
last_obj = self.get_last_obj()
if last_obj and not last_obj.isdigit():
self.s... | [
"def",
"_key_period",
"(",
"self",
",",
"text",
")",
":",
"self",
".",
"insert_text",
"(",
"text",
")",
"if",
"self",
".",
"codecompletion_auto",
":",
"# Enable auto-completion only if last token isn't a float\r",
"last_obj",
"=",
"self",
".",
"get_last_obj",
"(",
... | Action for '. | [
"Action",
"for",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L790-L797 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.paste | def paste(self):
"""Reimplemented slot to handle multiline paste action"""
text = to_text_string(QApplication.clipboard().text())
if len(text.splitlines()) > 1:
# Multiline paste
if self.new_input_line:
self.on_new_line()
self.remove_sel... | python | def paste(self):
"""Reimplemented slot to handle multiline paste action"""
text = to_text_string(QApplication.clipboard().text())
if len(text.splitlines()) > 1:
# Multiline paste
if self.new_input_line:
self.on_new_line()
self.remove_sel... | [
"def",
"paste",
"(",
"self",
")",
":",
"text",
"=",
"to_text_string",
"(",
"QApplication",
".",
"clipboard",
"(",
")",
".",
"text",
"(",
")",
")",
"if",
"len",
"(",
"text",
".",
"splitlines",
"(",
")",
")",
">",
"1",
":",
"# Multiline paste\r",
"if",... | Reimplemented slot to handle multiline paste action | [
"Reimplemented",
"slot",
"to",
"handle",
"multiline",
"paste",
"action"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L801-L816 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.show_completion_list | def show_completion_list(self, completions, completion_text=""):
"""Display the possible completions"""
if not completions:
return
if not isinstance(completions[0], tuple):
completions = [(c, '') for c in completions]
if len(completions) == 1 and completions... | python | def show_completion_list(self, completions, completion_text=""):
"""Display the possible completions"""
if not completions:
return
if not isinstance(completions[0], tuple):
completions = [(c, '') for c in completions]
if len(completions) == 1 and completions... | [
"def",
"show_completion_list",
"(",
"self",
",",
"completions",
",",
"completion_text",
"=",
"\"\"",
")",
":",
"if",
"not",
"completions",
":",
"return",
"if",
"not",
"isinstance",
"(",
"completions",
"[",
"0",
"]",
",",
"tuple",
")",
":",
"completions",
"... | Display the possible completions | [
"Display",
"the",
"possible",
"completions"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L858-L875 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.show_code_completion | def show_code_completion(self):
"""Display a completion list based on the current line"""
# Note: unicode conversion is needed only for ExternalShellBase
text = to_text_string(self.get_current_line_to_cursor())
last_obj = self.get_last_obj()
if not text:
return
... | python | def show_code_completion(self):
"""Display a completion list based on the current line"""
# Note: unicode conversion is needed only for ExternalShellBase
text = to_text_string(self.get_current_line_to_cursor())
last_obj = self.get_last_obj()
if not text:
return
... | [
"def",
"show_code_completion",
"(",
"self",
")",
":",
"# Note: unicode conversion is needed only for ExternalShellBase\r",
"text",
"=",
"to_text_string",
"(",
"self",
".",
"get_current_line_to_cursor",
"(",
")",
")",
"last_obj",
"=",
"self",
".",
"get_last_obj",
"(",
")... | Display a completion list based on the current line | [
"Display",
"a",
"completion",
"list",
"based",
"on",
"the",
"current",
"line"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L877-L924 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/shell.py | PythonShellWidget.drop_pathlist | def drop_pathlist(self, pathlist):
"""Drop path list"""
if pathlist:
files = ["r'%s'" % path for path in pathlist]
if len(files) == 1:
text = files[0]
else:
text = "[" + ", ".join(files) + "]"
if self.new_input_line:... | python | def drop_pathlist(self, pathlist):
"""Drop path list"""
if pathlist:
files = ["r'%s'" % path for path in pathlist]
if len(files) == 1:
text = files[0]
else:
text = "[" + ", ".join(files) + "]"
if self.new_input_line:... | [
"def",
"drop_pathlist",
"(",
"self",
",",
"pathlist",
")",
":",
"if",
"pathlist",
":",
"files",
"=",
"[",
"\"r'%s'\"",
"%",
"path",
"for",
"path",
"in",
"pathlist",
"]",
"if",
"len",
"(",
"files",
")",
"==",
"1",
":",
"text",
"=",
"files",
"[",
"0"... | Drop path list | [
"Drop",
"path",
"list"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/shell.py#L934-L945 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/utils/kernelspec.py | SpyderKernelSpec.argv | def argv(self):
"""Command to start kernels"""
# Python interpreter used to start kernels
if CONF.get('main_interpreter', 'default'):
pyexec = get_python_executable()
else:
# Avoid IPython adding the virtualenv on which Spyder is running
# to the kerne... | python | def argv(self):
"""Command to start kernels"""
# Python interpreter used to start kernels
if CONF.get('main_interpreter', 'default'):
pyexec = get_python_executable()
else:
# Avoid IPython adding the virtualenv on which Spyder is running
# to the kerne... | [
"def",
"argv",
"(",
"self",
")",
":",
"# Python interpreter used to start kernels",
"if",
"CONF",
".",
"get",
"(",
"'main_interpreter'",
",",
"'default'",
")",
":",
"pyexec",
"=",
"get_python_executable",
"(",
")",
"else",
":",
"# Avoid IPython adding the virtualenv o... | Command to start kernels | [
"Command",
"to",
"start",
"kernels"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/utils/kernelspec.py#L41-L73 | train |
spyder-ide/spyder | spyder/plugins/ipythonconsole/utils/kernelspec.py | SpyderKernelSpec.env | def env(self):
"""Env vars for kernels"""
# Add our PYTHONPATH to the kernel
pathlist = CONF.get('main', 'spyder_pythonpath', default=[])
default_interpreter = CONF.get('main_interpreter', 'default')
pypath = add_pathlist_to_PYTHONPATH([], pathlist, ipyconsole=True,
... | python | def env(self):
"""Env vars for kernels"""
# Add our PYTHONPATH to the kernel
pathlist = CONF.get('main', 'spyder_pythonpath', default=[])
default_interpreter = CONF.get('main_interpreter', 'default')
pypath = add_pathlist_to_PYTHONPATH([], pathlist, ipyconsole=True,
... | [
"def",
"env",
"(",
"self",
")",
":",
"# Add our PYTHONPATH to the kernel",
"pathlist",
"=",
"CONF",
".",
"get",
"(",
"'main'",
",",
"'spyder_pythonpath'",
",",
"default",
"=",
"[",
"]",
")",
"default_interpreter",
"=",
"CONF",
".",
"get",
"(",
"'main_interpret... | Env vars for kernels | [
"Env",
"vars",
"for",
"kernels"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/utils/kernelspec.py#L76-L166 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/explorer.py | ExplorerTreeWidget.setup_common_actions | def setup_common_actions(self):
"""Setup context menu common actions"""
actions = FilteredDirView.setup_common_actions(self)
# Toggle horizontal scrollbar
hscrollbar_action = create_action(self, _("Show horizontal scrollbar"),
toggled=self... | python | def setup_common_actions(self):
"""Setup context menu common actions"""
actions = FilteredDirView.setup_common_actions(self)
# Toggle horizontal scrollbar
hscrollbar_action = create_action(self, _("Show horizontal scrollbar"),
toggled=self... | [
"def",
"setup_common_actions",
"(",
"self",
")",
":",
"actions",
"=",
"FilteredDirView",
".",
"setup_common_actions",
"(",
"self",
")",
"# Toggle horizontal scrollbar\r",
"hscrollbar_action",
"=",
"create_action",
"(",
"self",
",",
"_",
"(",
"\"Show horizontal scrollbar... | Setup context menu common actions | [
"Setup",
"context",
"menu",
"common",
"actions"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/explorer.py#L46-L56 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/explorer.py | ExplorerTreeWidget.toggle_hscrollbar | def toggle_hscrollbar(self, checked):
"""Toggle horizontal scrollbar"""
self.parent_widget.sig_option_changed.emit('show_hscrollbar', checked)
self.show_hscrollbar = checked
self.header().setStretchLastSection(not checked)
self.header().setHorizontalScrollMode(QAbstractItemV... | python | def toggle_hscrollbar(self, checked):
"""Toggle horizontal scrollbar"""
self.parent_widget.sig_option_changed.emit('show_hscrollbar', checked)
self.show_hscrollbar = checked
self.header().setStretchLastSection(not checked)
self.header().setHorizontalScrollMode(QAbstractItemV... | [
"def",
"toggle_hscrollbar",
"(",
"self",
",",
"checked",
")",
":",
"self",
".",
"parent_widget",
".",
"sig_option_changed",
".",
"emit",
"(",
"'show_hscrollbar'",
",",
"checked",
")",
"self",
".",
"show_hscrollbar",
"=",
"checked",
"self",
".",
"header",
"(",
... | Toggle horizontal scrollbar | [
"Toggle",
"horizontal",
"scrollbar"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/explorer.py#L60-L69 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/explorer.py | ExplorerTreeWidget.dragMoveEvent | def dragMoveEvent(self, event):
"""Reimplement Qt method"""
index = self.indexAt(event.pos())
if index:
dst = self.get_filename(index)
if osp.isdir(dst):
event.acceptProposedAction()
else:
event.ignore()
else:
... | python | def dragMoveEvent(self, event):
"""Reimplement Qt method"""
index = self.indexAt(event.pos())
if index:
dst = self.get_filename(index)
if osp.isdir(dst):
event.acceptProposedAction()
else:
event.ignore()
else:
... | [
"def",
"dragMoveEvent",
"(",
"self",
",",
"event",
")",
":",
"index",
"=",
"self",
".",
"indexAt",
"(",
"event",
".",
"pos",
"(",
")",
")",
"if",
"index",
":",
"dst",
"=",
"self",
".",
"get_filename",
"(",
"index",
")",
"if",
"osp",
".",
"isdir",
... | Reimplement Qt method | [
"Reimplement",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/explorer.py#L72-L82 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/explorer.py | ExplorerTreeWidget.dropEvent | def dropEvent(self, event):
"""Reimplement Qt method"""
event.ignore()
action = event.dropAction()
if action not in (Qt.MoveAction, Qt.CopyAction):
return
# QTreeView must not remove the source items even in MoveAction mode:
# event.setDropAction(Qt.C... | python | def dropEvent(self, event):
"""Reimplement Qt method"""
event.ignore()
action = event.dropAction()
if action not in (Qt.MoveAction, Qt.CopyAction):
return
# QTreeView must not remove the source items even in MoveAction mode:
# event.setDropAction(Qt.C... | [
"def",
"dropEvent",
"(",
"self",
",",
"event",
")",
":",
"event",
".",
"ignore",
"(",
")",
"action",
"=",
"event",
".",
"dropAction",
"(",
")",
"if",
"action",
"not",
"in",
"(",
"Qt",
".",
"MoveAction",
",",
"Qt",
".",
"CopyAction",
")",
":",
"retu... | Reimplement Qt method | [
"Reimplement",
"Qt",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/explorer.py#L84-L152 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/explorer.py | ExplorerTreeWidget.delete | def delete(self, fnames=None):
"""Delete files"""
if fnames is None:
fnames = self.get_selected_filenames()
multiple = len(fnames) > 1
yes_to_all = None
for fname in fnames:
if fname == self.proxymodel.path_list[0]:
self.sig_delete_... | python | def delete(self, fnames=None):
"""Delete files"""
if fnames is None:
fnames = self.get_selected_filenames()
multiple = len(fnames) > 1
yes_to_all = None
for fname in fnames:
if fname == self.proxymodel.path_list[0]:
self.sig_delete_... | [
"def",
"delete",
"(",
"self",
",",
"fnames",
"=",
"None",
")",
":",
"if",
"fnames",
"is",
"None",
":",
"fnames",
"=",
"self",
".",
"get_selected_filenames",
"(",
")",
"multiple",
"=",
"len",
"(",
"fnames",
")",
">",
"1",
"yes_to_all",
"=",
"None",
"f... | Delete files | [
"Delete",
"files"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/explorer.py#L154-L167 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/explorer.py | ProjectExplorerWidget.set_project_dir | def set_project_dir(self, directory):
"""Set the project directory"""
if directory is not None:
self.treewidget.set_root_path(osp.dirname(directory))
self.treewidget.set_folder_names([osp.basename(directory)])
self.treewidget.setup_project_view()
try:
... | python | def set_project_dir(self, directory):
"""Set the project directory"""
if directory is not None:
self.treewidget.set_root_path(osp.dirname(directory))
self.treewidget.set_folder_names([osp.basename(directory)])
self.treewidget.setup_project_view()
try:
... | [
"def",
"set_project_dir",
"(",
"self",
",",
"directory",
")",
":",
"if",
"directory",
"is",
"not",
"None",
":",
"self",
".",
"treewidget",
".",
"set_root_path",
"(",
"osp",
".",
"dirname",
"(",
"directory",
")",
")",
"self",
".",
"treewidget",
".",
"set_... | Set the project directory | [
"Set",
"the",
"project",
"directory"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/explorer.py#L208-L218 | train |
spyder-ide/spyder | spyder/plugins/projects/widgets/explorer.py | ProjectExplorerWidget.setup_project | def setup_project(self, directory):
"""Setup project"""
self.emptywidget.hide()
self.treewidget.show()
# Setup the directory shown by the tree
self.set_project_dir(directory) | python | def setup_project(self, directory):
"""Setup project"""
self.emptywidget.hide()
self.treewidget.show()
# Setup the directory shown by the tree
self.set_project_dir(directory) | [
"def",
"setup_project",
"(",
"self",
",",
"directory",
")",
":",
"self",
".",
"emptywidget",
".",
"hide",
"(",
")",
"self",
".",
"treewidget",
".",
"show",
"(",
")",
"# Setup the directory shown by the tree\r",
"self",
".",
"set_project_dir",
"(",
"directory",
... | Setup project | [
"Setup",
"project"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/projects/widgets/explorer.py#L225-L231 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.start_interpreter | def start_interpreter(self, namespace):
"""Start Python interpreter"""
self.clear()
if self.interpreter is not None:
self.interpreter.closing()
self.interpreter = Interpreter(namespace, self.exitfunc,
SysOutput, WidgetPro... | python | def start_interpreter(self, namespace):
"""Start Python interpreter"""
self.clear()
if self.interpreter is not None:
self.interpreter.closing()
self.interpreter = Interpreter(namespace, self.exitfunc,
SysOutput, WidgetPro... | [
"def",
"start_interpreter",
"(",
"self",
",",
"namespace",
")",
":",
"self",
".",
"clear",
"(",
")",
"if",
"self",
".",
"interpreter",
"is",
"not",
"None",
":",
"self",
".",
"interpreter",
".",
"closing",
"(",
")",
"self",
".",
"interpreter",
"=",
"Int... | Start Python interpreter | [
"Start",
"Python",
"interpreter"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L180-L210 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.exit_interpreter | def exit_interpreter(self):
"""Exit interpreter"""
self.interpreter.exit_flag = True
if self.multithreaded:
self.interpreter.stdin_write.write(to_binary_string('\n'))
self.interpreter.restore_stds() | python | def exit_interpreter(self):
"""Exit interpreter"""
self.interpreter.exit_flag = True
if self.multithreaded:
self.interpreter.stdin_write.write(to_binary_string('\n'))
self.interpreter.restore_stds() | [
"def",
"exit_interpreter",
"(",
"self",
")",
":",
"self",
".",
"interpreter",
".",
"exit_flag",
"=",
"True",
"if",
"self",
".",
"multithreaded",
":",
"self",
".",
"interpreter",
".",
"stdin_write",
".",
"write",
"(",
"to_binary_string",
"(",
"'\\n'",
")",
... | Exit interpreter | [
"Exit",
"interpreter"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L212-L217 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.stdout_avail | def stdout_avail(self):
"""Data is available in stdout, let's empty the queue and write it!"""
data = self.interpreter.stdout_write.empty_queue()
if data:
self.write(data) | python | def stdout_avail(self):
"""Data is available in stdout, let's empty the queue and write it!"""
data = self.interpreter.stdout_write.empty_queue()
if data:
self.write(data) | [
"def",
"stdout_avail",
"(",
"self",
")",
":",
"data",
"=",
"self",
".",
"interpreter",
".",
"stdout_write",
".",
"empty_queue",
"(",
")",
"if",
"data",
":",
"self",
".",
"write",
"(",
"data",
")"
] | Data is available in stdout, let's empty the queue and write it! | [
"Data",
"is",
"available",
"in",
"stdout",
"let",
"s",
"empty",
"the",
"queue",
"and",
"write",
"it!"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L226-L230 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.stderr_avail | def stderr_avail(self):
"""Data is available in stderr, let's empty the queue and write it!"""
data = self.interpreter.stderr_write.empty_queue()
if data:
self.write(data, error=True)
self.flush(error=True) | python | def stderr_avail(self):
"""Data is available in stderr, let's empty the queue and write it!"""
data = self.interpreter.stderr_write.empty_queue()
if data:
self.write(data, error=True)
self.flush(error=True) | [
"def",
"stderr_avail",
"(",
"self",
")",
":",
"data",
"=",
"self",
".",
"interpreter",
".",
"stderr_write",
".",
"empty_queue",
"(",
")",
"if",
"data",
":",
"self",
".",
"write",
"(",
"data",
",",
"error",
"=",
"True",
")",
"self",
".",
"flush",
"(",... | Data is available in stderr, let's empty the queue and write it! | [
"Data",
"is",
"available",
"in",
"stderr",
"let",
"s",
"empty",
"the",
"queue",
"and",
"write",
"it!"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L232-L237 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.wait_input | def wait_input(self, prompt=''):
"""Wait for input (raw_input support)"""
self.new_prompt(prompt)
self.setFocus()
self.input_mode = True
self.input_loop = QEventLoop()
self.input_loop.exec_()
self.input_loop = None | python | def wait_input(self, prompt=''):
"""Wait for input (raw_input support)"""
self.new_prompt(prompt)
self.setFocus()
self.input_mode = True
self.input_loop = QEventLoop()
self.input_loop.exec_()
self.input_loop = None | [
"def",
"wait_input",
"(",
"self",
",",
"prompt",
"=",
"''",
")",
":",
"self",
".",
"new_prompt",
"(",
"prompt",
")",
"self",
".",
"setFocus",
"(",
")",
"self",
".",
"input_mode",
"=",
"True",
"self",
".",
"input_loop",
"=",
"QEventLoop",
"(",
")",
"s... | Wait for input (raw_input support) | [
"Wait",
"for",
"input",
"(",
"raw_input",
"support",
")"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L241-L248 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.end_input | def end_input(self, cmd):
"""End of wait_input mode"""
self.input_mode = False
self.input_loop.exit()
self.interpreter.widget_proxy.end_input(cmd) | python | def end_input(self, cmd):
"""End of wait_input mode"""
self.input_mode = False
self.input_loop.exit()
self.interpreter.widget_proxy.end_input(cmd) | [
"def",
"end_input",
"(",
"self",
",",
"cmd",
")",
":",
"self",
".",
"input_mode",
"=",
"False",
"self",
".",
"input_loop",
".",
"exit",
"(",
")",
"self",
".",
"interpreter",
".",
"widget_proxy",
".",
"end_input",
"(",
"cmd",
")"
] | End of wait_input mode | [
"End",
"of",
"wait_input",
"mode"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L250-L254 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.setup_context_menu | def setup_context_menu(self):
"""Reimplement PythonShellWidget method"""
PythonShellWidget.setup_context_menu(self)
self.help_action = create_action(self, _("Help..."),
icon=ima.icon('DialogHelpButton'),
triggered=self.help)
sel... | python | def setup_context_menu(self):
"""Reimplement PythonShellWidget method"""
PythonShellWidget.setup_context_menu(self)
self.help_action = create_action(self, _("Help..."),
icon=ima.icon('DialogHelpButton'),
triggered=self.help)
sel... | [
"def",
"setup_context_menu",
"(",
"self",
")",
":",
"PythonShellWidget",
".",
"setup_context_menu",
"(",
"self",
")",
"self",
".",
"help_action",
"=",
"create_action",
"(",
"self",
",",
"_",
"(",
"\"Help...\"",
")",
",",
"icon",
"=",
"ima",
".",
"icon",
"(... | Reimplement PythonShellWidget method | [
"Reimplement",
"PythonShellWidget",
"method"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L258-L264 | train |
spyder-ide/spyder | spyder/plugins/console/widgets/internalshell.py | InternalShell.help | def help(self):
"""Help on Spyder console"""
QMessageBox.about(self, _("Help"),
"""<b>%s</b>
<p><i>%s</i><br> edit foobar.py
<p><i>%s</i><br> xedit foobar.py
<p><i>%s</i><br> run foobar... | python | def help(self):
"""Help on Spyder console"""
QMessageBox.about(self, _("Help"),
"""<b>%s</b>
<p><i>%s</i><br> edit foobar.py
<p><i>%s</i><br> xedit foobar.py
<p><i>%s</i><br> run foobar... | [
"def",
"help",
"(",
"self",
")",
":",
"QMessageBox",
".",
"about",
"(",
"self",
",",
"_",
"(",
"\"Help\"",
")",
",",
"\"\"\"<b>%s</b>\r\n <p><i>%s</i><br> edit foobar.py\r\n <p><i>%s</i><br> xedit foobar.py\r\n ... | Help on Spyder console | [
"Help",
"on",
"Spyder",
"console"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/console/widgets/internalshell.py#L267-L285 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.