partition stringclasses 3
values | func_name stringlengths 1 134 | docstring stringlengths 1 46.9k | path stringlengths 4 223 | original_string stringlengths 75 104k | code stringlengths 75 104k | docstring_tokens listlengths 1 1.97k | repo stringlengths 7 55 | language stringclasses 1
value | url stringlengths 87 315 | code_tokens listlengths 19 28.4k | sha stringlengths 40 40 |
|---|---|---|---|---|---|---|---|---|---|---|---|
test | InteractiveShellApp._run_cmd_line_code | Run code or file specified at the command-line | environment/lib/python2.7/site-packages/IPython/core/shellapp.py | def _run_cmd_line_code(self):
"""Run code or file specified at the command-line"""
if self.code_to_run:
line = self.code_to_run
try:
self.log.info("Running code given at command line (c=): %s" %
line)
self.shell.run_ce... | def _run_cmd_line_code(self):
"""Run code or file specified at the command-line"""
if self.code_to_run:
line = self.code_to_run
try:
self.log.info("Running code given at command line (c=): %s" %
line)
self.shell.run_ce... | [
"Run",
"code",
"or",
"file",
"specified",
"at",
"the",
"command",
"-",
"line"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/core/shellapp.py#L326-L347 | [
"def",
"_run_cmd_line_code",
"(",
"self",
")",
":",
"if",
"self",
".",
"code_to_run",
":",
"line",
"=",
"self",
".",
"code_to_run",
"try",
":",
"self",
".",
"log",
".",
"info",
"(",
"\"Running code given at command line (c=): %s\"",
"%",
"line",
")",
"self",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | InteractiveShellApp._run_module | Run module specified at the command-line. | environment/lib/python2.7/site-packages/IPython/core/shellapp.py | def _run_module(self):
"""Run module specified at the command-line."""
if self.module_to_run:
# Make sure that the module gets a proper sys.argv as if it were
# run using `python -m`.
save_argv = sys.argv
sys.argv = [sys.executable] + self.extra_args
... | def _run_module(self):
"""Run module specified at the command-line."""
if self.module_to_run:
# Make sure that the module gets a proper sys.argv as if it were
# run using `python -m`.
save_argv = sys.argv
sys.argv = [sys.executable] + self.extra_args
... | [
"Run",
"module",
"specified",
"at",
"the",
"command",
"-",
"line",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/core/shellapp.py#L349-L360 | [
"def",
"_run_module",
"(",
"self",
")",
":",
"if",
"self",
".",
"module_to_run",
":",
"# Make sure that the module gets a proper sys.argv as if it were",
"# run using `python -m`.",
"save_argv",
"=",
"sys",
".",
"argv",
"sys",
".",
"argv",
"=",
"[",
"sys",
".",
"exe... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | generic | Create a simple generic function | environment/lib/python2.7/site-packages/IPython/external/simplegeneric/_simplegeneric.py | def generic(func):
"""Create a simple generic function"""
_sentinel = object()
def _by_class(*args, **kw):
cls = args[0].__class__
for t in type(cls.__name__, (cls,object), {}).__mro__:
f = _gbt(t, _sentinel)
if f is not _sentinel:
return f(*args, **... | def generic(func):
"""Create a simple generic function"""
_sentinel = object()
def _by_class(*args, **kw):
cls = args[0].__class__
for t in type(cls.__name__, (cls,object), {}).__mro__:
f = _gbt(t, _sentinel)
if f is not _sentinel:
return f(*args, **... | [
"Create",
"a",
"simple",
"generic",
"function"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/external/simplegeneric/_simplegeneric.py#L23-L101 | [
"def",
"generic",
"(",
"func",
")",
":",
"_sentinel",
"=",
"object",
"(",
")",
"def",
"_by_class",
"(",
"*",
"args",
",",
"*",
"*",
"kw",
")",
":",
"cls",
"=",
"args",
"[",
"0",
"]",
".",
"__class__",
"for",
"t",
"in",
"type",
"(",
"cls",
".",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | data_filename | Return the path to a data file of ours.
The file is searched for on `STATIC_PATH`, and the first place it's found,
is returned.
Each directory in `STATIC_PATH` is searched as-is, and also, if `pkgdir`
is provided, at that subdirectory. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def data_filename(fname, pkgdir=""):
"""Return the path to a data file of ours.
The file is searched for on `STATIC_PATH`, and the first place it's found,
is returned.
Each directory in `STATIC_PATH` is searched as-is, and also, if `pkgdir`
is provided, at that subdirectory.
"""
for stati... | def data_filename(fname, pkgdir=""):
"""Return the path to a data file of ours.
The file is searched for on `STATIC_PATH`, and the first place it's found,
is returned.
Each directory in `STATIC_PATH` is searched as-is, and also, if `pkgdir`
is provided, at that subdirectory.
"""
for stati... | [
"Return",
"the",
"path",
"to",
"a",
"data",
"file",
"of",
"ours",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L23-L41 | [
"def",
"data_filename",
"(",
"fname",
",",
"pkgdir",
"=",
"\"\"",
")",
":",
"for",
"static_dir",
"in",
"STATIC_PATH",
":",
"static_filename",
"=",
"os",
".",
"path",
".",
"join",
"(",
"static_dir",
",",
"fname",
")",
"if",
"os",
".",
"path",
".",
"exis... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | data | Return the contents of a data file of ours. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def data(fname):
"""Return the contents of a data file of ours."""
data_file = open(data_filename(fname))
try:
return data_file.read()
finally:
data_file.close() | def data(fname):
"""Return the contents of a data file of ours."""
data_file = open(data_filename(fname))
try:
return data_file.read()
finally:
data_file.close() | [
"Return",
"the",
"contents",
"of",
"a",
"data",
"file",
"of",
"ours",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L44-L50 | [
"def",
"data",
"(",
"fname",
")",
":",
"data_file",
"=",
"open",
"(",
"data_filename",
"(",
"fname",
")",
")",
"try",
":",
"return",
"data_file",
".",
"read",
"(",
")",
"finally",
":",
"data_file",
".",
"close",
"(",
")"
] | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | escape | HTML-escape the text in `t`. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def escape(t):
"""HTML-escape the text in `t`."""
return (t
# Convert HTML special chars into HTML entities.
.replace("&", "&").replace("<", "<").replace(">", ">")
.replace("'", "'").replace('"', """)
# Convert runs of spaces: "......" -> " ... | def escape(t):
"""HTML-escape the text in `t`."""
return (t
# Convert HTML special chars into HTML entities.
.replace("&", "&").replace("<", "<").replace(">", ">")
.replace("'", "'").replace('"', """)
# Convert runs of spaces: "......" -> " ... | [
"HTML",
"-",
"escape",
"the",
"text",
"in",
"t",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L375-L386 | [
"def",
"escape",
"(",
"t",
")",
":",
"return",
"(",
"t",
"# Convert HTML special chars into HTML entities.",
".",
"replace",
"(",
"\"&\"",
",",
"\"&\"",
")",
".",
"replace",
"(",
"\"<\"",
",",
"\"<\"",
")",
".",
"replace",
"(",
"\">\"",
",",
"\">\"... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlReporter.report | Generate an HTML report for `morfs`.
`morfs` is a list of modules or filenames. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def report(self, morfs):
"""Generate an HTML report for `morfs`.
`morfs` is a list of modules or filenames.
"""
assert self.config.html_dir, "must give a directory for html reporting"
# Read the status data.
self.status.read(self.config.html_dir)
# Check that ... | def report(self, morfs):
"""Generate an HTML report for `morfs`.
`morfs` is a list of modules or filenames.
"""
assert self.config.html_dir, "must give a directory for html reporting"
# Read the status data.
self.status.read(self.config.html_dir)
# Check that ... | [
"Generate",
"an",
"HTML",
"report",
"for",
"morfs",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L89-L123 | [
"def",
"report",
"(",
"self",
",",
"morfs",
")",
":",
"assert",
"self",
".",
"config",
".",
"html_dir",
",",
"\"must give a directory for html reporting\"",
"# Read the status data.",
"self",
".",
"status",
".",
"read",
"(",
"self",
".",
"config",
".",
"html_dir... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlReporter.make_local_static_report_files | Make local instances of static files for HTML report. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def make_local_static_report_files(self):
"""Make local instances of static files for HTML report."""
# The files we provide must always be copied.
for static, pkgdir in self.STATIC_FILES:
shutil.copyfile(
data_filename(static, pkgdir),
os.path.join(se... | def make_local_static_report_files(self):
"""Make local instances of static files for HTML report."""
# The files we provide must always be copied.
for static, pkgdir in self.STATIC_FILES:
shutil.copyfile(
data_filename(static, pkgdir),
os.path.join(se... | [
"Make",
"local",
"instances",
"of",
"static",
"files",
"for",
"HTML",
"report",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L125-L139 | [
"def",
"make_local_static_report_files",
"(",
"self",
")",
":",
"# The files we provide must always be copied.",
"for",
"static",
",",
"pkgdir",
"in",
"self",
".",
"STATIC_FILES",
":",
"shutil",
".",
"copyfile",
"(",
"data_filename",
"(",
"static",
",",
"pkgdir",
")... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlReporter.write_html | Write `html` to `fname`, properly encoded. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def write_html(self, fname, html):
"""Write `html` to `fname`, properly encoded."""
fout = open(fname, "wb")
try:
fout.write(html.encode('ascii', 'xmlcharrefreplace'))
finally:
fout.close() | def write_html(self, fname, html):
"""Write `html` to `fname`, properly encoded."""
fout = open(fname, "wb")
try:
fout.write(html.encode('ascii', 'xmlcharrefreplace'))
finally:
fout.close() | [
"Write",
"html",
"to",
"fname",
"properly",
"encoded",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L141-L147 | [
"def",
"write_html",
"(",
"self",
",",
"fname",
",",
"html",
")",
":",
"fout",
"=",
"open",
"(",
"fname",
",",
"\"wb\"",
")",
"try",
":",
"fout",
".",
"write",
"(",
"html",
".",
"encode",
"(",
"'ascii'",
",",
"'xmlcharrefreplace'",
")",
")",
"finally... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlReporter.file_hash | Compute a hash that changes if the file needs to be re-reported. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def file_hash(self, source, cu):
"""Compute a hash that changes if the file needs to be re-reported."""
m = Hasher()
m.update(source)
self.coverage.data.add_to_hash(cu.filename, m)
return m.digest() | def file_hash(self, source, cu):
"""Compute a hash that changes if the file needs to be re-reported."""
m = Hasher()
m.update(source)
self.coverage.data.add_to_hash(cu.filename, m)
return m.digest() | [
"Compute",
"a",
"hash",
"that",
"changes",
"if",
"the",
"file",
"needs",
"to",
"be",
"re",
"-",
"reported",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L149-L154 | [
"def",
"file_hash",
"(",
"self",
",",
"source",
",",
"cu",
")",
":",
"m",
"=",
"Hasher",
"(",
")",
"m",
".",
"update",
"(",
"source",
")",
"self",
".",
"coverage",
".",
"data",
".",
"add_to_hash",
"(",
"cu",
".",
"filename",
",",
"m",
")",
"retur... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlReporter.html_file | Generate an HTML file for one source file. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def html_file(self, cu, analysis):
"""Generate an HTML file for one source file."""
source_file = cu.source_file()
try:
source = source_file.read()
finally:
source_file.close()
# Find out if the file on disk is already correct.
flat_rootname = cu.... | def html_file(self, cu, analysis):
"""Generate an HTML file for one source file."""
source_file = cu.source_file()
try:
source = source_file.read()
finally:
source_file.close()
# Find out if the file on disk is already correct.
flat_rootname = cu.... | [
"Generate",
"an",
"HTML",
"file",
"for",
"one",
"source",
"file",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L156-L266 | [
"def",
"html_file",
"(",
"self",
",",
"cu",
",",
"analysis",
")",
":",
"source_file",
"=",
"cu",
".",
"source_file",
"(",
")",
"try",
":",
"source",
"=",
"source_file",
".",
"read",
"(",
")",
"finally",
":",
"source_file",
".",
"close",
"(",
")",
"# ... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlReporter.index_file | Write the index.html file for this report. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def index_file(self):
"""Write the index.html file for this report."""
index_tmpl = Templite(
data("index.html"), self.template_globals
)
self.totals = sum([f['nums'] for f in self.files])
html = index_tmpl.render({
'arcs': self.arcs,
'ex... | def index_file(self):
"""Write the index.html file for this report."""
index_tmpl = Templite(
data("index.html"), self.template_globals
)
self.totals = sum([f['nums'] for f in self.files])
html = index_tmpl.render({
'arcs': self.arcs,
'ex... | [
"Write",
"the",
"index",
".",
"html",
"file",
"for",
"this",
"report",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L268-L291 | [
"def",
"index_file",
"(",
"self",
")",
":",
"index_tmpl",
"=",
"Templite",
"(",
"data",
"(",
"\"index.html\"",
")",
",",
"self",
".",
"template_globals",
")",
"self",
".",
"totals",
"=",
"sum",
"(",
"[",
"f",
"[",
"'nums'",
"]",
"for",
"f",
"in",
"se... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlStatus.read | Read the last status in `directory`. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def read(self, directory):
"""Read the last status in `directory`."""
usable = False
try:
status_file = os.path.join(directory, self.STATUS_FILE)
fstatus = open(status_file, "rb")
try:
status = pickle.load(fstatus)
finally:
... | def read(self, directory):
"""Read the last status in `directory`."""
usable = False
try:
status_file = os.path.join(directory, self.STATUS_FILE)
fstatus = open(status_file, "rb")
try:
status = pickle.load(fstatus)
finally:
... | [
"Read",
"the",
"last",
"status",
"in",
"directory",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L308-L331 | [
"def",
"read",
"(",
"self",
",",
"directory",
")",
":",
"usable",
"=",
"False",
"try",
":",
"status_file",
"=",
"os",
".",
"path",
".",
"join",
"(",
"directory",
",",
"self",
".",
"STATUS_FILE",
")",
"fstatus",
"=",
"open",
"(",
"status_file",
",",
"... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | HtmlStatus.write | Write the current status to `directory`. | virtualEnvironment/lib/python2.7/site-packages/coverage/html.py | def write(self, directory):
"""Write the current status to `directory`."""
status_file = os.path.join(directory, self.STATUS_FILE)
status = {
'format': self.STATUS_FORMAT,
'version': coverage.__version__,
'settings': self.settings,
'files': self.fi... | def write(self, directory):
"""Write the current status to `directory`."""
status_file = os.path.join(directory, self.STATUS_FILE)
status = {
'format': self.STATUS_FORMAT,
'version': coverage.__version__,
'settings': self.settings,
'files': self.fi... | [
"Write",
"the",
"current",
"status",
"to",
"directory",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L333-L346 | [
"def",
"write",
"(",
"self",
",",
"directory",
")",
":",
"status_file",
"=",
"os",
".",
"path",
".",
"join",
"(",
"directory",
",",
"self",
".",
"STATUS_FILE",
")",
"status",
"=",
"{",
"'format'",
":",
"self",
".",
"STATUS_FORMAT",
",",
"'version'",
":... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | uniq_stable | uniq_stable(elems) -> list
Return from an iterable, a list of all the unique elements in the input,
but maintaining the order in which they first appear.
A naive solution to this problem which just makes a dictionary with the
elements as keys fails to respect the stability condition, since
diction... | environment/lib/python2.7/site-packages/IPython/utils/data.py | def uniq_stable(elems):
"""uniq_stable(elems) -> list
Return from an iterable, a list of all the unique elements in the input,
but maintaining the order in which they first appear.
A naive solution to this problem which just makes a dictionary with the
elements as keys fails to respect the stabili... | def uniq_stable(elems):
"""uniq_stable(elems) -> list
Return from an iterable, a list of all the unique elements in the input,
but maintaining the order in which they first appear.
A naive solution to this problem which just makes a dictionary with the
elements as keys fails to respect the stabili... | [
"uniq_stable",
"(",
"elems",
")",
"-",
">",
"list"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L22-L42 | [
"def",
"uniq_stable",
"(",
"elems",
")",
":",
"unique",
"=",
"[",
"]",
"unique_dict",
"=",
"{",
"}",
"for",
"nn",
"in",
"elems",
":",
"if",
"nn",
"not",
"in",
"unique_dict",
":",
"unique",
".",
"append",
"(",
"nn",
")",
"unique_dict",
"[",
"nn",
"]... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | sort_compare | Sort and compare two lists.
By default it does it in place, thus modifying the lists. Use inplace = 0
to avoid that (at the cost of temporary copy creation). | environment/lib/python2.7/site-packages/IPython/utils/data.py | def sort_compare(lst1, lst2, inplace=1):
"""Sort and compare two lists.
By default it does it in place, thus modifying the lists. Use inplace = 0
to avoid that (at the cost of temporary copy creation)."""
if not inplace:
lst1 = lst1[:]
lst2 = lst2[:]
lst1.sort(); lst2.sort()
ret... | def sort_compare(lst1, lst2, inplace=1):
"""Sort and compare two lists.
By default it does it in place, thus modifying the lists. Use inplace = 0
to avoid that (at the cost of temporary copy creation)."""
if not inplace:
lst1 = lst1[:]
lst2 = lst2[:]
lst1.sort(); lst2.sort()
ret... | [
"Sort",
"and",
"compare",
"two",
"lists",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L45-L54 | [
"def",
"sort_compare",
"(",
"lst1",
",",
"lst2",
",",
"inplace",
"=",
"1",
")",
":",
"if",
"not",
"inplace",
":",
"lst1",
"=",
"lst1",
"[",
":",
"]",
"lst2",
"=",
"lst2",
"[",
":",
"]",
"lst1",
".",
"sort",
"(",
")",
"lst2",
".",
"sort",
"(",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | list2dict | Takes a list of (key,value) pairs and turns it into a dict. | environment/lib/python2.7/site-packages/IPython/utils/data.py | def list2dict(lst):
"""Takes a list of (key,value) pairs and turns it into a dict."""
dic = {}
for k,v in lst: dic[k] = v
return dic | def list2dict(lst):
"""Takes a list of (key,value) pairs and turns it into a dict."""
dic = {}
for k,v in lst: dic[k] = v
return dic | [
"Takes",
"a",
"list",
"of",
"(",
"key",
"value",
")",
"pairs",
"and",
"turns",
"it",
"into",
"a",
"dict",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L57-L62 | [
"def",
"list2dict",
"(",
"lst",
")",
":",
"dic",
"=",
"{",
"}",
"for",
"k",
",",
"v",
"in",
"lst",
":",
"dic",
"[",
"k",
"]",
"=",
"v",
"return",
"dic"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | list2dict2 | Takes a list and turns it into a dict.
Much slower than list2dict, but more versatile. This version can take
lists with sublists of arbitrary length (including sclars). | environment/lib/python2.7/site-packages/IPython/utils/data.py | def list2dict2(lst, default=''):
"""Takes a list and turns it into a dict.
Much slower than list2dict, but more versatile. This version can take
lists with sublists of arbitrary length (including sclars)."""
dic = {}
for elem in lst:
if type(elem) in (types.ListType,types.TupleType):
... | def list2dict2(lst, default=''):
"""Takes a list and turns it into a dict.
Much slower than list2dict, but more versatile. This version can take
lists with sublists of arbitrary length (including sclars)."""
dic = {}
for elem in lst:
if type(elem) in (types.ListType,types.TupleType):
... | [
"Takes",
"a",
"list",
"and",
"turns",
"it",
"into",
"a",
"dict",
".",
"Much",
"slower",
"than",
"list2dict",
"but",
"more",
"versatile",
".",
"This",
"version",
"can",
"take",
"lists",
"with",
"sublists",
"of",
"arbitrary",
"length",
"(",
"including",
"scl... | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L65-L84 | [
"def",
"list2dict2",
"(",
"lst",
",",
"default",
"=",
"''",
")",
":",
"dic",
"=",
"{",
"}",
"for",
"elem",
"in",
"lst",
":",
"if",
"type",
"(",
"elem",
")",
"in",
"(",
"types",
".",
"ListType",
",",
"types",
".",
"TupleType",
")",
":",
"size",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | get_slice | Get a slice of a sequence with variable step. Specify start,stop,step. | environment/lib/python2.7/site-packages/IPython/utils/data.py | def get_slice(seq, start=0, stop=None, step=1):
"""Get a slice of a sequence with variable step. Specify start,stop,step."""
if stop == None:
stop = len(seq)
item = lambda i: seq[i]
return map(item,xrange(start,stop,step)) | def get_slice(seq, start=0, stop=None, step=1):
"""Get a slice of a sequence with variable step. Specify start,stop,step."""
if stop == None:
stop = len(seq)
item = lambda i: seq[i]
return map(item,xrange(start,stop,step)) | [
"Get",
"a",
"slice",
"of",
"a",
"sequence",
"with",
"variable",
"step",
".",
"Specify",
"start",
"stop",
"step",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L93-L98 | [
"def",
"get_slice",
"(",
"seq",
",",
"start",
"=",
"0",
",",
"stop",
"=",
"None",
",",
"step",
"=",
"1",
")",
":",
"if",
"stop",
"==",
"None",
":",
"stop",
"=",
"len",
"(",
"seq",
")",
"item",
"=",
"lambda",
"i",
":",
"seq",
"[",
"i",
"]",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | chop | Chop a sequence into chunks of the given size. | environment/lib/python2.7/site-packages/IPython/utils/data.py | def chop(seq, size):
"""Chop a sequence into chunks of the given size."""
chunk = lambda i: seq[i:i+size]
return map(chunk,xrange(0,len(seq),size)) | def chop(seq, size):
"""Chop a sequence into chunks of the given size."""
chunk = lambda i: seq[i:i+size]
return map(chunk,xrange(0,len(seq),size)) | [
"Chop",
"a",
"sequence",
"into",
"chunks",
"of",
"the",
"given",
"size",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L101-L104 | [
"def",
"chop",
"(",
"seq",
",",
"size",
")",
":",
"chunk",
"=",
"lambda",
"i",
":",
"seq",
"[",
"i",
":",
"i",
"+",
"size",
"]",
"return",
"map",
"(",
"chunk",
",",
"xrange",
"(",
"0",
",",
"len",
"(",
"seq",
")",
",",
"size",
")",
")"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | read_config | Read configuration from setup.cfg. | virtualEnvironment/lib/python2.7/site-packages/check_manifest.py | def read_config():
"""Read configuration from setup.cfg."""
# XXX modifies global state, which is kind of evil
config = ConfigParser.ConfigParser()
config.read(['setup.cfg'])
if not config.has_section('check-manifest'):
return
if (config.has_option('check-manifest', 'ignore-default-rules... | def read_config():
"""Read configuration from setup.cfg."""
# XXX modifies global state, which is kind of evil
config = ConfigParser.ConfigParser()
config.read(['setup.cfg'])
if not config.has_section('check-manifest'):
return
if (config.has_option('check-manifest', 'ignore-default-rules... | [
"Read",
"configuration",
"from",
"setup",
".",
"cfg",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/check_manifest.py#L462-L475 | [
"def",
"read_config",
"(",
")",
":",
"# XXX modifies global state, which is kind of evil",
"config",
"=",
"ConfigParser",
".",
"ConfigParser",
"(",
")",
"config",
".",
"read",
"(",
"[",
"'setup.cfg'",
"]",
")",
"if",
"not",
"config",
".",
"has_section",
"(",
"'c... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | read_manifest | Read existing configuration from MANIFEST.in.
We use that to ignore anything the MANIFEST.in ignores. | virtualEnvironment/lib/python2.7/site-packages/check_manifest.py | def read_manifest():
"""Read existing configuration from MANIFEST.in.
We use that to ignore anything the MANIFEST.in ignores.
"""
# XXX modifies global state, which is kind of evil
if not os.path.isfile('MANIFEST.in'):
return
with open('MANIFEST.in') as manifest:
contents = mani... | def read_manifest():
"""Read existing configuration from MANIFEST.in.
We use that to ignore anything the MANIFEST.in ignores.
"""
# XXX modifies global state, which is kind of evil
if not os.path.isfile('MANIFEST.in'):
return
with open('MANIFEST.in') as manifest:
contents = mani... | [
"Read",
"existing",
"configuration",
"from",
"MANIFEST",
".",
"in",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/check_manifest.py#L478-L490 | [
"def",
"read_manifest",
"(",
")",
":",
"# XXX modifies global state, which is kind of evil",
"if",
"not",
"os",
".",
"path",
".",
"isfile",
"(",
"'MANIFEST.in'",
")",
":",
"return",
"with",
"open",
"(",
"'MANIFEST.in'",
")",
"as",
"manifest",
":",
"contents",
"=... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | _glob_to_regexp | Compile a glob pattern into a regexp.
We need to do this because fnmatch allows * to match /, which we
don't want. E.g. an MANIFEST.in exclude of 'dirname/*css' should
match 'dirname/foo.css' but not 'dirname/subdir/bar.css'. | virtualEnvironment/lib/python2.7/site-packages/check_manifest.py | def _glob_to_regexp(pat):
"""Compile a glob pattern into a regexp.
We need to do this because fnmatch allows * to match /, which we
don't want. E.g. an MANIFEST.in exclude of 'dirname/*css' should
match 'dirname/foo.css' but not 'dirname/subdir/bar.css'.
"""
pat = fnmatch.translate(pat)
# ... | def _glob_to_regexp(pat):
"""Compile a glob pattern into a regexp.
We need to do this because fnmatch allows * to match /, which we
don't want. E.g. an MANIFEST.in exclude of 'dirname/*css' should
match 'dirname/foo.css' but not 'dirname/subdir/bar.css'.
"""
pat = fnmatch.translate(pat)
# ... | [
"Compile",
"a",
"glob",
"pattern",
"into",
"a",
"regexp",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/check_manifest.py#L493-L505 | [
"def",
"_glob_to_regexp",
"(",
"pat",
")",
":",
"pat",
"=",
"fnmatch",
".",
"translate",
"(",
"pat",
")",
"# Note that distutils in Python 2.6 has a buggy glob_to_re in",
"# distutils.filelist -- it converts '*.cfg' to '[^/]*cfg' instead",
"# of '[^\\\\]*cfg' on Windows.",
"sep",
... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | file_matches | Does this filename match any of the patterns? | virtualEnvironment/lib/python2.7/site-packages/check_manifest.py | def file_matches(filename, patterns):
"""Does this filename match any of the patterns?"""
return any(fnmatch.fnmatch(filename, pat) for pat in patterns) | def file_matches(filename, patterns):
"""Does this filename match any of the patterns?"""
return any(fnmatch.fnmatch(filename, pat) for pat in patterns) | [
"Does",
"this",
"filename",
"match",
"any",
"of",
"the",
"patterns?"
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/check_manifest.py#L580-L582 | [
"def",
"file_matches",
"(",
"filename",
",",
"patterns",
")",
":",
"return",
"any",
"(",
"fnmatch",
".",
"fnmatch",
"(",
"filename",
",",
"pat",
")",
"for",
"pat",
"in",
"patterns",
")"
] | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | Git.get_versioned_files | List all files versioned by git in the current directory. | virtualEnvironment/lib/python2.7/site-packages/check_manifest.py | def get_versioned_files():
"""List all files versioned by git in the current directory."""
# Git for Windows uses UTF-8 instead of the locale encoding.
# Regular Git on sane POSIX systems uses the locale encoding
encoding = 'UTF-8' if sys.platform == 'win32' else None
output = ru... | def get_versioned_files():
"""List all files versioned by git in the current directory."""
# Git for Windows uses UTF-8 instead of the locale encoding.
# Regular Git on sane POSIX systems uses the locale encoding
encoding = 'UTF-8' if sys.platform == 'win32' else None
output = ru... | [
"List",
"all",
"files",
"versioned",
"by",
"git",
"in",
"the",
"current",
"directory",
"."
] | tnkteja/myhelp | python | https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/check_manifest.py#L276-L282 | [
"def",
"get_versioned_files",
"(",
")",
":",
"# Git for Windows uses UTF-8 instead of the locale encoding.",
"# Regular Git on sane POSIX systems uses the locale encoding",
"encoding",
"=",
"'UTF-8'",
"if",
"sys",
".",
"platform",
"==",
"'win32'",
"else",
"None",
"output",
"=",... | fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb |
test | MultiKernelManager.start_kernel | Start a new kernel. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def start_kernel(self, **kwargs):
"""Start a new kernel."""
kernel_id = unicode(uuid.uuid4())
# use base KernelManager for each Kernel
km = self.kernel_manager_factory(connection_file=os.path.join(
self.connection_dir, "kernel-%s.json" % kernel_id),
... | def start_kernel(self, **kwargs):
"""Start a new kernel."""
kernel_id = unicode(uuid.uuid4())
# use base KernelManager for each Kernel
km = self.kernel_manager_factory(connection_file=os.path.join(
self.connection_dir, "kernel-%s.json" % kernel_id),
... | [
"Start",
"a",
"new",
"kernel",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L81-L93 | [
"def",
"start_kernel",
"(",
"self",
",",
"*",
"*",
"kwargs",
")",
":",
"kernel_id",
"=",
"unicode",
"(",
"uuid",
".",
"uuid4",
"(",
")",
")",
"# use base KernelManager for each Kernel",
"km",
"=",
"self",
".",
"kernel_manager_factory",
"(",
"connection_file",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MultiKernelManager.shutdown_kernel | Shutdown a kernel by its kernel uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel to shutdown. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def shutdown_kernel(self, kernel_id):
"""Shutdown a kernel by its kernel uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel to shutdown.
"""
self.get_kernel(kernel_id).shutdown_kernel()
del self._kernels[kernel_id] | def shutdown_kernel(self, kernel_id):
"""Shutdown a kernel by its kernel uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel to shutdown.
"""
self.get_kernel(kernel_id).shutdown_kernel()
del self._kernels[kernel_id] | [
"Shutdown",
"a",
"kernel",
"by",
"its",
"kernel",
"uuid",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L95-L104 | [
"def",
"shutdown_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"get_kernel",
"(",
"kernel_id",
")",
".",
"shutdown_kernel",
"(",
")",
"del",
"self",
".",
"_kernels",
"[",
"kernel_id",
"]"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MultiKernelManager.kill_kernel | Kill a kernel by its kernel uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel to kill. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def kill_kernel(self, kernel_id):
"""Kill a kernel by its kernel uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel to kill.
"""
self.get_kernel(kernel_id).kill_kernel()
del self._kernels[kernel_id] | def kill_kernel(self, kernel_id):
"""Kill a kernel by its kernel uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel to kill.
"""
self.get_kernel(kernel_id).kill_kernel()
del self._kernels[kernel_id] | [
"Kill",
"a",
"kernel",
"by",
"its",
"kernel",
"uuid",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L106-L115 | [
"def",
"kill_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"get_kernel",
"(",
"kernel_id",
")",
".",
"kill_kernel",
"(",
")",
"del",
"self",
".",
"_kernels",
"[",
"kernel_id",
"]"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MultiKernelManager.get_kernel | Get the single KernelManager object for a kernel by its uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def get_kernel(self, kernel_id):
"""Get the single KernelManager object for a kernel by its uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel.
"""
km = self._kernels.get(kernel_id)
if km is not None:
return km
else:... | def get_kernel(self, kernel_id):
"""Get the single KernelManager object for a kernel by its uuid.
Parameters
==========
kernel_id : uuid
The id of the kernel.
"""
km = self._kernels.get(kernel_id)
if km is not None:
return km
else:... | [
"Get",
"the",
"single",
"KernelManager",
"object",
"for",
"a",
"kernel",
"by",
"its",
"uuid",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L140-L152 | [
"def",
"get_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"km",
"=",
"self",
".",
"_kernels",
".",
"get",
"(",
"kernel_id",
")",
"if",
"km",
"is",
"not",
"None",
":",
"return",
"km",
"else",
":",
"raise",
"KeyError",
"(",
"\"Kernel with id not found:... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MultiKernelManager.get_kernel_ports | Return a dictionary of ports for a kernel.
Parameters
==========
kernel_id : uuid
The id of the kernel.
Returns
=======
port_dict : dict
A dict of key, value pairs where the keys are the names
(stdin_port,iopub_port,shell_port) and th... | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def get_kernel_ports(self, kernel_id):
"""Return a dictionary of ports for a kernel.
Parameters
==========
kernel_id : uuid
The id of the kernel.
Returns
=======
port_dict : dict
A dict of key, value pairs where the keys are the names
... | def get_kernel_ports(self, kernel_id):
"""Return a dictionary of ports for a kernel.
Parameters
==========
kernel_id : uuid
The id of the kernel.
Returns
=======
port_dict : dict
A dict of key, value pairs where the keys are the names
... | [
"Return",
"a",
"dictionary",
"of",
"ports",
"for",
"a",
"kernel",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L154-L175 | [
"def",
"get_kernel_ports",
"(",
"self",
",",
"kernel_id",
")",
":",
"# this will raise a KeyError if not found:",
"km",
"=",
"self",
".",
"get_kernel",
"(",
"kernel_id",
")",
"return",
"dict",
"(",
"shell_port",
"=",
"km",
".",
"shell_port",
",",
"iopub_port",
"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.notebook_for_kernel | Return the notebook_id for a kernel_id or None. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def notebook_for_kernel(self, kernel_id):
"""Return the notebook_id for a kernel_id or None."""
notebook_ids = [k for k, v in self._notebook_mapping.iteritems() if v == kernel_id]
if len(notebook_ids) == 1:
return notebook_ids[0]
else:
return None | def notebook_for_kernel(self, kernel_id):
"""Return the notebook_id for a kernel_id or None."""
notebook_ids = [k for k, v in self._notebook_mapping.iteritems() if v == kernel_id]
if len(notebook_ids) == 1:
return notebook_ids[0]
else:
return None | [
"Return",
"the",
"notebook_id",
"for",
"a",
"kernel_id",
"or",
"None",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L247-L253 | [
"def",
"notebook_for_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"notebook_ids",
"=",
"[",
"k",
"for",
"k",
",",
"v",
"in",
"self",
".",
"_notebook_mapping",
".",
"iteritems",
"(",
")",
"if",
"v",
"==",
"kernel_id",
"]",
"if",
"len",
"(",
"notebo... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.delete_mapping_for_kernel | Remove the kernel/notebook mapping for kernel_id. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def delete_mapping_for_kernel(self, kernel_id):
"""Remove the kernel/notebook mapping for kernel_id."""
notebook_id = self.notebook_for_kernel(kernel_id)
if notebook_id is not None:
del self._notebook_mapping[notebook_id] | def delete_mapping_for_kernel(self, kernel_id):
"""Remove the kernel/notebook mapping for kernel_id."""
notebook_id = self.notebook_for_kernel(kernel_id)
if notebook_id is not None:
del self._notebook_mapping[notebook_id] | [
"Remove",
"the",
"kernel",
"/",
"notebook",
"mapping",
"for",
"kernel_id",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L255-L259 | [
"def",
"delete_mapping_for_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"notebook_id",
"=",
"self",
".",
"notebook_for_kernel",
"(",
"kernel_id",
")",
"if",
"notebook_id",
"is",
"not",
"None",
":",
"del",
"self",
".",
"_notebook_mapping",
"[",
"notebook_id"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.start_kernel | Start a kernel for a notebok an return its kernel_id.
Parameters
----------
notebook_id : uuid
The uuid of the notebook to associate the new kernel with. If this
is not None, this kernel will be persistent whenever the notebook
requests a kernel. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def start_kernel(self, notebook_id=None, **kwargs):
"""Start a kernel for a notebok an return its kernel_id.
Parameters
----------
notebook_id : uuid
The uuid of the notebook to associate the new kernel with. If this
is not None, this kernel will be persistent wh... | def start_kernel(self, notebook_id=None, **kwargs):
"""Start a kernel for a notebok an return its kernel_id.
Parameters
----------
notebook_id : uuid
The uuid of the notebook to associate the new kernel with. If this
is not None, this kernel will be persistent wh... | [
"Start",
"a",
"kernel",
"for",
"a",
"notebok",
"an",
"return",
"its",
"kernel_id",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L261-L280 | [
"def",
"start_kernel",
"(",
"self",
",",
"notebook_id",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"kernel_id",
"=",
"self",
".",
"kernel_for_notebook",
"(",
"notebook_id",
")",
"if",
"kernel_id",
"is",
"None",
":",
"kwargs",
"[",
"'extra_arguments'",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.shutdown_kernel | Shutdown a kernel and remove its notebook association. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def shutdown_kernel(self, kernel_id):
"""Shutdown a kernel and remove its notebook association."""
self._check_kernel_id(kernel_id)
super(MappingKernelManager, self).shutdown_kernel(kernel_id)
self.delete_mapping_for_kernel(kernel_id)
self.log.info("Kernel shutdown: %s" % kernel_... | def shutdown_kernel(self, kernel_id):
"""Shutdown a kernel and remove its notebook association."""
self._check_kernel_id(kernel_id)
super(MappingKernelManager, self).shutdown_kernel(kernel_id)
self.delete_mapping_for_kernel(kernel_id)
self.log.info("Kernel shutdown: %s" % kernel_... | [
"Shutdown",
"a",
"kernel",
"and",
"remove",
"its",
"notebook",
"association",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L282-L287 | [
"def",
"shutdown_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"_check_kernel_id",
"(",
"kernel_id",
")",
"super",
"(",
"MappingKernelManager",
",",
"self",
")",
".",
"shutdown_kernel",
"(",
"kernel_id",
")",
"self",
".",
"delete_mapping_for_ker... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.interrupt_kernel | Interrupt a kernel. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def interrupt_kernel(self, kernel_id):
"""Interrupt a kernel."""
self._check_kernel_id(kernel_id)
super(MappingKernelManager, self).interrupt_kernel(kernel_id)
self.log.info("Kernel interrupted: %s" % kernel_id) | def interrupt_kernel(self, kernel_id):
"""Interrupt a kernel."""
self._check_kernel_id(kernel_id)
super(MappingKernelManager, self).interrupt_kernel(kernel_id)
self.log.info("Kernel interrupted: %s" % kernel_id) | [
"Interrupt",
"a",
"kernel",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L296-L300 | [
"def",
"interrupt_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"_check_kernel_id",
"(",
"kernel_id",
")",
"super",
"(",
"MappingKernelManager",
",",
"self",
")",
".",
"interrupt_kernel",
"(",
"kernel_id",
")",
"self",
".",
"log",
".",
"info... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.restart_kernel | Restart a kernel while keeping clients connected. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def restart_kernel(self, kernel_id):
"""Restart a kernel while keeping clients connected."""
self._check_kernel_id(kernel_id)
km = self.get_kernel(kernel_id)
km.restart_kernel()
self.log.info("Kernel restarted: %s" % kernel_id)
return kernel_id
# the foll... | def restart_kernel(self, kernel_id):
"""Restart a kernel while keeping clients connected."""
self._check_kernel_id(kernel_id)
km = self.get_kernel(kernel_id)
km.restart_kernel()
self.log.info("Kernel restarted: %s" % kernel_id)
return kernel_id
# the foll... | [
"Restart",
"a",
"kernel",
"while",
"keeping",
"clients",
"connected",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L302-L322 | [
"def",
"restart_kernel",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"_check_kernel_id",
"(",
"kernel_id",
")",
"km",
"=",
"self",
".",
"get_kernel",
"(",
"kernel_id",
")",
"km",
".",
"restart_kernel",
"(",
")",
"self",
".",
"log",
".",
"info",... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.create_iopub_stream | Create a new iopub stream. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def create_iopub_stream(self, kernel_id):
"""Create a new iopub stream."""
self._check_kernel_id(kernel_id)
return super(MappingKernelManager, self).create_iopub_stream(kernel_id) | def create_iopub_stream(self, kernel_id):
"""Create a new iopub stream."""
self._check_kernel_id(kernel_id)
return super(MappingKernelManager, self).create_iopub_stream(kernel_id) | [
"Create",
"a",
"new",
"iopub",
"stream",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L324-L327 | [
"def",
"create_iopub_stream",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"_check_kernel_id",
"(",
"kernel_id",
")",
"return",
"super",
"(",
"MappingKernelManager",
",",
"self",
")",
".",
"create_iopub_stream",
"(",
"kernel_id",
")"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.create_shell_stream | Create a new shell stream. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def create_shell_stream(self, kernel_id):
"""Create a new shell stream."""
self._check_kernel_id(kernel_id)
return super(MappingKernelManager, self).create_shell_stream(kernel_id) | def create_shell_stream(self, kernel_id):
"""Create a new shell stream."""
self._check_kernel_id(kernel_id)
return super(MappingKernelManager, self).create_shell_stream(kernel_id) | [
"Create",
"a",
"new",
"shell",
"stream",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L329-L332 | [
"def",
"create_shell_stream",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"_check_kernel_id",
"(",
"kernel_id",
")",
"return",
"super",
"(",
"MappingKernelManager",
",",
"self",
")",
".",
"create_shell_stream",
"(",
"kernel_id",
")"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | MappingKernelManager.create_hb_stream | Create a new hb stream. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py | def create_hb_stream(self, kernel_id):
"""Create a new hb stream."""
self._check_kernel_id(kernel_id)
return super(MappingKernelManager, self).create_hb_stream(kernel_id) | def create_hb_stream(self, kernel_id):
"""Create a new hb stream."""
self._check_kernel_id(kernel_id)
return super(MappingKernelManager, self).create_hb_stream(kernel_id) | [
"Create",
"a",
"new",
"hb",
"stream",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/kernelmanager.py#L334-L337 | [
"def",
"create_hb_stream",
"(",
"self",
",",
"kernel_id",
")",
":",
"self",
".",
"_check_kernel_id",
"(",
"kernel_id",
")",
"return",
"super",
"(",
"MappingKernelManager",
",",
"self",
")",
".",
"create_hb_stream",
"(",
"kernel_id",
")"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Deprecated.configure | Configure plugin. | environment/lib/python2.7/site-packages/nose/plugins/deprecated.py | def configure(self, options, conf):
"""Configure plugin.
"""
if not self.can_configure:
return
self.conf = conf
disable = getattr(options, 'noDeprecated', False)
if disable:
self.enabled = False | def configure(self, options, conf):
"""Configure plugin.
"""
if not self.can_configure:
return
self.conf = conf
disable = getattr(options, 'noDeprecated', False)
if disable:
self.enabled = False | [
"Configure",
"plugin",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/plugins/deprecated.py#L37-L45 | [
"def",
"configure",
"(",
"self",
",",
"options",
",",
"conf",
")",
":",
"if",
"not",
"self",
".",
"can_configure",
":",
"return",
"self",
".",
"conf",
"=",
"conf",
"disable",
"=",
"getattr",
"(",
"options",
",",
"'noDeprecated'",
",",
"False",
")",
"if... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | ResetMixin.reset | Reset all OneTimeProperty attributes that may have fired already. | environment/lib/python2.7/site-packages/IPython/utils/autoattr.py | def reset(self):
"""Reset all OneTimeProperty attributes that may have fired already."""
instdict = self.__dict__
classdict = self.__class__.__dict__
# To reset them, we simply remove them from the instance dict. At that
# point, it's as if they had never been computed. On the next acces... | def reset(self):
"""Reset all OneTimeProperty attributes that may have fired already."""
instdict = self.__dict__
classdict = self.__class__.__dict__
# To reset them, we simply remove them from the instance dict. At that
# point, it's as if they had never been computed. On the next acces... | [
"Reset",
"all",
"OneTimeProperty",
"attributes",
"that",
"may",
"have",
"fired",
"already",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/autoattr.py#L90-L100 | [
"def",
"reset",
"(",
"self",
")",
":",
"instdict",
"=",
"self",
".",
"__dict__",
"classdict",
"=",
"self",
".",
"__class__",
".",
"__dict__",
"# To reset them, we simply remove them from the instance dict. At that",
"# point, it's as if they had never been computed. On the ne... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | iseq | Generate integers from start to (and including!) stop,
with increment of inc. Alternative to range/xrange. | environment/share/doc/ipython/examples/parallel/wave2D/wavesolver.py | def iseq(start=0, stop=None, inc=1):
"""
Generate integers from start to (and including!) stop,
with increment of inc. Alternative to range/xrange.
"""
if stop is None: # allow isequence(3) to be 0, 1, 2, 3
# take 1st arg as stop, start as 0, and inc=1
stop = start; start = 0; inc = ... | def iseq(start=0, stop=None, inc=1):
"""
Generate integers from start to (and including!) stop,
with increment of inc. Alternative to range/xrange.
"""
if stop is None: # allow isequence(3) to be 0, 1, 2, 3
# take 1st arg as stop, start as 0, and inc=1
stop = start; start = 0; inc = ... | [
"Generate",
"integers",
"from",
"start",
"to",
"(",
"and",
"including!",
")",
"stop",
"with",
"increment",
"of",
"inc",
".",
"Alternative",
"to",
"range",
"/",
"xrange",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/share/doc/ipython/examples/parallel/wave2D/wavesolver.py#L17-L25 | [
"def",
"iseq",
"(",
"start",
"=",
"0",
",",
"stop",
"=",
"None",
",",
"inc",
"=",
"1",
")",
":",
"if",
"stop",
"is",
"None",
":",
"# allow isequence(3) to be 0, 1, 2, 3",
"# take 1st arg as stop, start as 0, and inc=1",
"stop",
"=",
"start",
"start",
"=",
"0",... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | export_html | Export the contents of the ConsoleWidget as HTML.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML to export.
filename : str
The file to be saved.
image_tag : callable, optional (default None)
Used to convert images. See ``default_im... | environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py | def export_html(html, filename, image_tag = None, inline = True):
""" Export the contents of the ConsoleWidget as HTML.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML to export.
filename : str
The file to be saved.
image_tag : callable... | def export_html(html, filename, image_tag = None, inline = True):
""" Export the contents of the ConsoleWidget as HTML.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML to export.
filename : str
The file to be saved.
image_tag : callable... | [
"Export",
"the",
"contents",
"of",
"the",
"ConsoleWidget",
"as",
"HTML",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py#L125-L160 | [
"def",
"export_html",
"(",
"html",
",",
"filename",
",",
"image_tag",
"=",
"None",
",",
"inline",
"=",
"True",
")",
":",
"if",
"image_tag",
"is",
"None",
":",
"image_tag",
"=",
"default_image_tag",
"else",
":",
"image_tag",
"=",
"ensure_utf8",
"(",
"image_... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | export_xhtml | Export the contents of the ConsoleWidget as XHTML with inline SVGs.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML to export.
filename : str
The file to be saved.
image_tag : callable, optional (default None)
Used to convert images... | environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py | def export_xhtml(html, filename, image_tag=None):
""" Export the contents of the ConsoleWidget as XHTML with inline SVGs.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML to export.
filename : str
The file to be saved.
image_tag : callab... | def export_xhtml(html, filename, image_tag=None):
""" Export the contents of the ConsoleWidget as XHTML with inline SVGs.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML to export.
filename : str
The file to be saved.
image_tag : callab... | [
"Export",
"the",
"contents",
"of",
"the",
"ConsoleWidget",
"as",
"XHTML",
"with",
"inline",
"SVGs",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py#L163-L192 | [
"def",
"export_xhtml",
"(",
"html",
",",
"filename",
",",
"image_tag",
"=",
"None",
")",
":",
"if",
"image_tag",
"is",
"None",
":",
"image_tag",
"=",
"default_image_tag",
"else",
":",
"image_tag",
"=",
"ensure_utf8",
"(",
"image_tag",
")",
"with",
"open",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | ensure_utf8 | wrapper for ensuring image_tag returns utf8-encoded str on Python 2 | environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py | def ensure_utf8(image_tag):
"""wrapper for ensuring image_tag returns utf8-encoded str on Python 2"""
if py3compat.PY3:
# nothing to do on Python 3
return image_tag
def utf8_image_tag(*args, **kwargs):
s = image_tag(*args, **kwargs)
if isinstance(s, unicode):
... | def ensure_utf8(image_tag):
"""wrapper for ensuring image_tag returns utf8-encoded str on Python 2"""
if py3compat.PY3:
# nothing to do on Python 3
return image_tag
def utf8_image_tag(*args, **kwargs):
s = image_tag(*args, **kwargs)
if isinstance(s, unicode):
... | [
"wrapper",
"for",
"ensuring",
"image_tag",
"returns",
"utf8",
"-",
"encoded",
"str",
"on",
"Python",
"2"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py#L219-L230 | [
"def",
"ensure_utf8",
"(",
"image_tag",
")",
":",
"if",
"py3compat",
".",
"PY3",
":",
"# nothing to do on Python 3",
"return",
"image_tag",
"def",
"utf8_image_tag",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"s",
"=",
"image_tag",
"(",
"*",
"args... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | fix_html | Transforms a Qt-generated HTML string into a standards-compliant one.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML. | environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py | def fix_html(html):
""" Transforms a Qt-generated HTML string into a standards-compliant one.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML.
"""
# A UTF-8 declaration is needed for proper rendering of some characters
# (e.g., indented comma... | def fix_html(html):
""" Transforms a Qt-generated HTML string into a standards-compliant one.
Parameters:
-----------
html : str,
A utf-8 encoded Python string containing the Qt HTML.
"""
# A UTF-8 declaration is needed for proper rendering of some characters
# (e.g., indented comma... | [
"Transforms",
"a",
"Qt",
"-",
"generated",
"HTML",
"string",
"into",
"a",
"standards",
"-",
"compliant",
"one",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py#L233-L255 | [
"def",
"fix_html",
"(",
"html",
")",
":",
"# A UTF-8 declaration is needed for proper rendering of some characters",
"# (e.g., indented commands) when viewing exported HTML on a local system",
"# (i.e., without seeing an encoding declaration in an HTTP header).",
"# C.f. http://www.w3.org/Internat... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | HtmlExporter.export | Displays a dialog for exporting HTML generated by Qt's rich text
system.
Returns
-------
The name of the file that was saved, or None if no file was saved. | environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py | def export(self):
""" Displays a dialog for exporting HTML generated by Qt's rich text
system.
Returns
-------
The name of the file that was saved, or None if no file was saved.
"""
parent = self.control.window()
dialog = QtGui.QFileDialog(parent, 'Save a... | def export(self):
""" Displays a dialog for exporting HTML generated by Qt's rich text
system.
Returns
-------
The name of the file that was saved, or None if no file was saved.
"""
parent = self.control.window()
dialog = QtGui.QFileDialog(parent, 'Save a... | [
"Displays",
"a",
"dialog",
"for",
"exporting",
"HTML",
"generated",
"by",
"Qt",
"s",
"rich",
"text",
"system",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/qt/rich_text.py#L47-L119 | [
"def",
"export",
"(",
"self",
")",
":",
"parent",
"=",
"self",
".",
"control",
".",
"window",
"(",
")",
"dialog",
"=",
"QtGui",
".",
"QFileDialog",
"(",
"parent",
",",
"'Save as...'",
")",
"dialog",
".",
"setAcceptMode",
"(",
"QtGui",
".",
"QFileDialog",... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | get_unique_or_none | Returns a unique instance of `klass` or None | toolware/utils/query.py | def get_unique_or_none(klass, *args, **kwargs):
""" Returns a unique instance of `klass` or None """
try:
return klass.objects.get(*args, **kwargs)
except klass.DoesNotExist:
return None
except klass.MultipleObjectsReturned:
return None
return None | def get_unique_or_none(klass, *args, **kwargs):
""" Returns a unique instance of `klass` or None """
try:
return klass.objects.get(*args, **kwargs)
except klass.DoesNotExist:
return None
except klass.MultipleObjectsReturned:
return None
return None | [
"Returns",
"a",
"unique",
"instance",
"of",
"klass",
"or",
"None"
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L12-L20 | [
"def",
"get_unique_or_none",
"(",
"klass",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"try",
":",
"return",
"klass",
".",
"objects",
".",
"get",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
"except",
"klass",
".",
"DoesNotExist",
":",
... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | get_or_create_unique | Returns a tuple of (instance, created), where `instance` is the retrieved
or created instance of `klass` and `created` is a boolean specifying whether
a new object was created. The value for the unique fields must be present in
the defaults dictionary. | toolware/utils/query.py | def get_or_create_unique(klass, defaults, unique_fields):
"""
Returns a tuple of (instance, created), where `instance` is the retrieved
or created instance of `klass` and `created` is a boolean specifying whether
a new object was created. The value for the unique fields must be present in
the defaul... | def get_or_create_unique(klass, defaults, unique_fields):
"""
Returns a tuple of (instance, created), where `instance` is the retrieved
or created instance of `klass` and `created` is a boolean specifying whether
a new object was created. The value for the unique fields must be present in
the defaul... | [
"Returns",
"a",
"tuple",
"of",
"(",
"instance",
"created",
")",
"where",
"instance",
"is",
"the",
"retrieved",
"or",
"created",
"instance",
"of",
"klass",
"and",
"created",
"is",
"a",
"boolean",
"specifying",
"whether",
"a",
"new",
"object",
"was",
"created"... | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L23-L52 | [
"def",
"get_or_create_unique",
"(",
"klass",
",",
"defaults",
",",
"unique_fields",
")",
":",
"if",
"not",
"unique_fields",
"or",
"not",
"defaults",
":",
"return",
"(",
"None",
",",
"False",
")",
"uniqueness_query",
"=",
"{",
"k",
":",
"v",
"for",
"k",
"... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | get_text_tokenizer | Tokenize the input string and return two lists, exclude list is for words that
start with a dash (ex: -word) and include list is for all other words | toolware/utils/query.py | def get_text_tokenizer(query_string):
"""
Tokenize the input string and return two lists, exclude list is for words that
start with a dash (ex: -word) and include list is for all other words
"""
# Regex to split on double-quotes, single-quotes, and continuous non-whitespace characters.
split_pat... | def get_text_tokenizer(query_string):
"""
Tokenize the input string and return two lists, exclude list is for words that
start with a dash (ex: -word) and include list is for all other words
"""
# Regex to split on double-quotes, single-quotes, and continuous non-whitespace characters.
split_pat... | [
"Tokenize",
"the",
"input",
"string",
"and",
"return",
"two",
"lists",
"exclude",
"list",
"is",
"for",
"words",
"that",
"start",
"with",
"a",
"dash",
"(",
"ex",
":",
"-",
"word",
")",
"and",
"include",
"list",
"is",
"for",
"all",
"other",
"words"
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L119-L136 | [
"def",
"get_text_tokenizer",
"(",
"query_string",
")",
":",
"# Regex to split on double-quotes, single-quotes, and continuous non-whitespace characters.",
"split_pattern",
"=",
"re",
".",
"compile",
"(",
"'(\"[^\"]+\"|\\'[^\\']+\\'|\\S+)'",
")",
"# Pattern to remove more than one inter... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | get_query_includes | Builds a query for included terms in a text search. | toolware/utils/query.py | def get_query_includes(tokenized_terms, search_fields):
"""
Builds a query for included terms in a text search.
"""
query = None
for term in tokenized_terms:
or_query = None
for field_name in search_fields:
q = Q(**{"%s__icontains" % field_name: term})
if or_q... | def get_query_includes(tokenized_terms, search_fields):
"""
Builds a query for included terms in a text search.
"""
query = None
for term in tokenized_terms:
or_query = None
for field_name in search_fields:
q = Q(**{"%s__icontains" % field_name: term})
if or_q... | [
"Builds",
"a",
"query",
"for",
"included",
"terms",
"in",
"a",
"text",
"search",
"."
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L139-L156 | [
"def",
"get_query_includes",
"(",
"tokenized_terms",
",",
"search_fields",
")",
":",
"query",
"=",
"None",
"for",
"term",
"in",
"tokenized_terms",
":",
"or_query",
"=",
"None",
"for",
"field_name",
"in",
"search_fields",
":",
"q",
"=",
"Q",
"(",
"*",
"*",
... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | get_text_query | Builds a query for both included & excluded terms in a text search. | toolware/utils/query.py | def get_text_query(query_string, search_fields):
"""
Builds a query for both included & excluded terms in a text search.
"""
include_terms, exclude_terms = get_text_tokenizer(query_string)
include_q = get_query_includes(include_terms, search_fields)
exclude_q = get_query_excludes(exclude_terms, ... | def get_text_query(query_string, search_fields):
"""
Builds a query for both included & excluded terms in a text search.
"""
include_terms, exclude_terms = get_text_tokenizer(query_string)
include_q = get_query_includes(include_terms, search_fields)
exclude_q = get_query_excludes(exclude_terms, ... | [
"Builds",
"a",
"query",
"for",
"both",
"included",
"&",
"excluded",
"terms",
"in",
"a",
"text",
"search",
"."
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L179-L193 | [
"def",
"get_text_query",
"(",
"query_string",
",",
"search_fields",
")",
":",
"include_terms",
",",
"exclude_terms",
"=",
"get_text_tokenizer",
"(",
"query_string",
")",
"include_q",
"=",
"get_query_includes",
"(",
"include_terms",
",",
"search_fields",
")",
"exclude_... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | get_date_greater_query | Query for if date_field is within number of "days" ago. | toolware/utils/query.py | def get_date_greater_query(days, date_field):
"""
Query for if date_field is within number of "days" ago.
"""
query = None
days = get_integer(days)
if days:
past = get_days_ago(days)
query = Q(**{"%s__gte" % date_field: past.isoformat()})
return query | def get_date_greater_query(days, date_field):
"""
Query for if date_field is within number of "days" ago.
"""
query = None
days = get_integer(days)
if days:
past = get_days_ago(days)
query = Q(**{"%s__gte" % date_field: past.isoformat()})
return query | [
"Query",
"for",
"if",
"date_field",
"is",
"within",
"number",
"of",
"days",
"ago",
"."
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L196-L205 | [
"def",
"get_date_greater_query",
"(",
"days",
",",
"date_field",
")",
":",
"query",
"=",
"None",
"days",
"=",
"get_integer",
"(",
"days",
")",
"if",
"days",
":",
"past",
"=",
"get_days_ago",
"(",
"days",
")",
"query",
"=",
"Q",
"(",
"*",
"*",
"{",
"\... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | get_date_less_query | Query for if date_field is within number of "days" from now. | toolware/utils/query.py | def get_date_less_query(days, date_field):
"""
Query for if date_field is within number of "days" from now.
"""
query = None
days = get_integer(days)
if days:
future = get_days_from_now(days)
query = Q(**{"%s__lte" % date_field: future.isoformat()})
return query | def get_date_less_query(days, date_field):
"""
Query for if date_field is within number of "days" from now.
"""
query = None
days = get_integer(days)
if days:
future = get_days_from_now(days)
query = Q(**{"%s__lte" % date_field: future.isoformat()})
return query | [
"Query",
"for",
"if",
"date_field",
"is",
"within",
"number",
"of",
"days",
"from",
"now",
"."
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L208-L217 | [
"def",
"get_date_less_query",
"(",
"days",
",",
"date_field",
")",
":",
"query",
"=",
"None",
"days",
"=",
"get_integer",
"(",
"days",
")",
"if",
"days",
":",
"future",
"=",
"get_days_from_now",
"(",
"days",
")",
"query",
"=",
"Q",
"(",
"*",
"*",
"{",
... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | get_null_or_blank_query | Query for null or blank field. | toolware/utils/query.py | def get_null_or_blank_query(field=None):
"""
Query for null or blank field.
"""
if not field:
return field
null_q = get_null_query(field)
blank_q = get_blank_query(field)
return (null_q | blank_q) | def get_null_or_blank_query(field=None):
"""
Query for null or blank field.
"""
if not field:
return field
null_q = get_null_query(field)
blank_q = get_blank_query(field)
return (null_q | blank_q) | [
"Query",
"for",
"null",
"or",
"blank",
"field",
"."
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L240-L248 | [
"def",
"get_null_or_blank_query",
"(",
"field",
"=",
"None",
")",
":",
"if",
"not",
"field",
":",
"return",
"field",
"null_q",
"=",
"get_null_query",
"(",
"field",
")",
"blank_q",
"=",
"get_blank_query",
"(",
"field",
")",
"return",
"(",
"null_q",
"|",
"bl... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | CaseInsensitiveQuerySet.case_insensitive | Converts queries to case insensitive for special fields. | toolware/utils/query.py | def case_insensitive(self, fields_dict):
"""
Converts queries to case insensitive for special fields.
"""
if hasattr(self.model, 'CASE_INSENSITIVE_FIELDS'):
for field in self.model.CASE_INSENSITIVE_FIELDS:
if field in fields_dict:
fields_di... | def case_insensitive(self, fields_dict):
"""
Converts queries to case insensitive for special fields.
"""
if hasattr(self.model, 'CASE_INSENSITIVE_FIELDS'):
for field in self.model.CASE_INSENSITIVE_FIELDS:
if field in fields_dict:
fields_di... | [
"Converts",
"queries",
"to",
"case",
"insensitive",
"for",
"special",
"fields",
"."
] | un33k/django-toolware | python | https://github.com/un33k/django-toolware/blob/973f3e003dc38b812897dab88455bee37dcaf931/toolware/utils/query.py#L62-L70 | [
"def",
"case_insensitive",
"(",
"self",
",",
"fields_dict",
")",
":",
"if",
"hasattr",
"(",
"self",
".",
"model",
",",
"'CASE_INSENSITIVE_FIELDS'",
")",
":",
"for",
"field",
"in",
"self",
".",
"model",
".",
"CASE_INSENSITIVE_FIELDS",
":",
"if",
"field",
"in"... | 973f3e003dc38b812897dab88455bee37dcaf931 |
test | attr | Decorator that adds attributes to classes or functions
for use with the Attribute (-a) plugin. | environment/lib/python2.7/site-packages/nose/plugins/attrib.py | def attr(*args, **kwargs):
"""Decorator that adds attributes to classes or functions
for use with the Attribute (-a) plugin.
"""
def wrap_ob(ob):
for name in args:
setattr(ob, name, True)
for name, value in kwargs.iteritems():
setattr(ob, name, value)
retu... | def attr(*args, **kwargs):
"""Decorator that adds attributes to classes or functions
for use with the Attribute (-a) plugin.
"""
def wrap_ob(ob):
for name in args:
setattr(ob, name, True)
for name, value in kwargs.iteritems():
setattr(ob, name, value)
retu... | [
"Decorator",
"that",
"adds",
"attributes",
"to",
"classes",
"or",
"functions",
"for",
"use",
"with",
"the",
"Attribute",
"(",
"-",
"a",
")",
"plugin",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/plugins/attrib.py#L114-L124 | [
"def",
"attr",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"def",
"wrap_ob",
"(",
"ob",
")",
":",
"for",
"name",
"in",
"args",
":",
"setattr",
"(",
"ob",
",",
"name",
",",
"True",
")",
"for",
"name",
",",
"value",
"in",
"kwargs",
".",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | get_method_attr | Look up an attribute on a method/ function.
If the attribute isn't found there, looking it up in the
method's class, if any. | environment/lib/python2.7/site-packages/nose/plugins/attrib.py | def get_method_attr(method, cls, attr_name, default = False):
"""Look up an attribute on a method/ function.
If the attribute isn't found there, looking it up in the
method's class, if any.
"""
Missing = object()
value = getattr(method, attr_name, Missing)
if value is Missing and cls is not... | def get_method_attr(method, cls, attr_name, default = False):
"""Look up an attribute on a method/ function.
If the attribute isn't found there, looking it up in the
method's class, if any.
"""
Missing = object()
value = getattr(method, attr_name, Missing)
if value is Missing and cls is not... | [
"Look",
"up",
"an",
"attribute",
"on",
"a",
"method",
"/",
"function",
".",
"If",
"the",
"attribute",
"isn",
"t",
"found",
"there",
"looking",
"it",
"up",
"in",
"the",
"method",
"s",
"class",
"if",
"any",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/plugins/attrib.py#L126-L137 | [
"def",
"get_method_attr",
"(",
"method",
",",
"cls",
",",
"attr_name",
",",
"default",
"=",
"False",
")",
":",
"Missing",
"=",
"object",
"(",
")",
"value",
"=",
"getattr",
"(",
"method",
",",
"attr_name",
",",
"Missing",
")",
"if",
"value",
"is",
"Miss... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | AttributeSelector.options | Register command line options | environment/lib/python2.7/site-packages/nose/plugins/attrib.py | def options(self, parser, env):
"""Register command line options"""
parser.add_option("-a", "--attr",
dest="attr", action="append",
default=env.get('NOSE_ATTR'),
metavar="ATTR",
help="Run only tests t... | def options(self, parser, env):
"""Register command line options"""
parser.add_option("-a", "--attr",
dest="attr", action="append",
default=env.get('NOSE_ATTR'),
metavar="ATTR",
help="Run only tests t... | [
"Register",
"command",
"line",
"options"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/plugins/attrib.py#L160-L175 | [
"def",
"options",
"(",
"self",
",",
"parser",
",",
"env",
")",
":",
"parser",
".",
"add_option",
"(",
"\"-a\"",
",",
"\"--attr\"",
",",
"dest",
"=",
"\"attr\"",
",",
"action",
"=",
"\"append\"",
",",
"default",
"=",
"env",
".",
"get",
"(",
"'NOSE_ATTR'... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | AttributeSelector.configure | Configure the plugin and system, based on selected options.
attr and eval_attr may each be lists.
self.attribs will be a list of lists of tuples. In that list, each
list is a group of attributes, all of which must match for the rule to
match. | environment/lib/python2.7/site-packages/nose/plugins/attrib.py | def configure(self, options, config):
"""Configure the plugin and system, based on selected options.
attr and eval_attr may each be lists.
self.attribs will be a list of lists of tuples. In that list, each
list is a group of attributes, all of which must match for the rule to
m... | def configure(self, options, config):
"""Configure the plugin and system, based on selected options.
attr and eval_attr may each be lists.
self.attribs will be a list of lists of tuples. In that list, each
list is a group of attributes, all of which must match for the rule to
m... | [
"Configure",
"the",
"plugin",
"and",
"system",
"based",
"on",
"selected",
"options",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/plugins/attrib.py#L177-L228 | [
"def",
"configure",
"(",
"self",
",",
"options",
",",
"config",
")",
":",
"self",
".",
"attribs",
"=",
"[",
"]",
"# handle python eval-expression parameter",
"if",
"compat_24",
"and",
"options",
".",
"eval_attr",
":",
"eval_attr",
"=",
"tolist",
"(",
"options"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | AttributeSelector.validateAttrib | Verify whether a method has the required attributes
The method is considered a match if it matches all attributes
for any attribute group.
. | environment/lib/python2.7/site-packages/nose/plugins/attrib.py | def validateAttrib(self, method, cls = None):
"""Verify whether a method has the required attributes
The method is considered a match if it matches all attributes
for any attribute group.
."""
# TODO: is there a need for case-sensitive value comparison?
any = False
... | def validateAttrib(self, method, cls = None):
"""Verify whether a method has the required attributes
The method is considered a match if it matches all attributes
for any attribute group.
."""
# TODO: is there a need for case-sensitive value comparison?
any = False
... | [
"Verify",
"whether",
"a",
"method",
"has",
"the",
"required",
"attributes",
"The",
"method",
"is",
"considered",
"a",
"match",
"if",
"it",
"matches",
"all",
"attributes",
"for",
"any",
"attribute",
"group",
".",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/plugins/attrib.py#L230-L272 | [
"def",
"validateAttrib",
"(",
"self",
",",
"method",
",",
"cls",
"=",
"None",
")",
":",
"# TODO: is there a need for case-sensitive value comparison?",
"any",
"=",
"False",
"for",
"group",
"in",
"self",
".",
"attribs",
":",
"match",
"=",
"True",
"for",
"key",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | AttributeSelector.wantMethod | Accept the method if its attributes match. | environment/lib/python2.7/site-packages/nose/plugins/attrib.py | def wantMethod(self, method):
"""Accept the method if its attributes match.
"""
try:
cls = method.im_class
except AttributeError:
return False
return self.validateAttrib(method, cls) | def wantMethod(self, method):
"""Accept the method if its attributes match.
"""
try:
cls = method.im_class
except AttributeError:
return False
return self.validateAttrib(method, cls) | [
"Accept",
"the",
"method",
"if",
"its",
"attributes",
"match",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/plugins/attrib.py#L279-L286 | [
"def",
"wantMethod",
"(",
"self",
",",
"method",
")",
":",
"try",
":",
"cls",
"=",
"method",
".",
"im_class",
"except",
"AttributeError",
":",
"return",
"False",
"return",
"self",
".",
"validateAttrib",
"(",
"method",
",",
"cls",
")"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | QtKillRing.rotate | Rotate the kill ring, then yank back the new top. | environment/lib/python2.7/site-packages/IPython/frontend/qt/console/kill_ring.py | def rotate(self):
""" Rotate the kill ring, then yank back the new top.
"""
if self._prev_yank:
text = self._ring.rotate()
if text:
self._skip_cursor = True
cursor = self._text_edit.textCursor()
cursor.movePosition(QtGui.QTe... | def rotate(self):
""" Rotate the kill ring, then yank back the new top.
"""
if self._prev_yank:
text = self._ring.rotate()
if text:
self._skip_cursor = True
cursor = self._text_edit.textCursor()
cursor.movePosition(QtGui.QTe... | [
"Rotate",
"the",
"kill",
"ring",
"then",
"yank",
"back",
"the",
"new",
"top",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/qt/console/kill_ring.py#L104-L116 | [
"def",
"rotate",
"(",
"self",
")",
":",
"if",
"self",
".",
"_prev_yank",
":",
"text",
"=",
"self",
".",
"_ring",
".",
"rotate",
"(",
")",
"if",
"text",
":",
"self",
".",
"_skip_cursor",
"=",
"True",
"cursor",
"=",
"self",
".",
"_text_edit",
".",
"t... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | patch_pyzmq | backport a few patches from newer pyzmq
These can be removed as we bump our minimum pyzmq version | environment/lib/python2.7/site-packages/IPython/zmq/__init__.py | def patch_pyzmq():
"""backport a few patches from newer pyzmq
These can be removed as we bump our minimum pyzmq version
"""
import zmq
# ioloop.install, introduced in pyzmq 2.1.7
from zmq.eventloop import ioloop
def install():
import tornado.ioloop
tornado... | def patch_pyzmq():
"""backport a few patches from newer pyzmq
These can be removed as we bump our minimum pyzmq version
"""
import zmq
# ioloop.install, introduced in pyzmq 2.1.7
from zmq.eventloop import ioloop
def install():
import tornado.ioloop
tornado... | [
"backport",
"a",
"few",
"patches",
"from",
"newer",
"pyzmq",
"These",
"can",
"be",
"removed",
"as",
"we",
"bump",
"our",
"minimum",
"pyzmq",
"version"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/zmq/__init__.py#L16-L46 | [
"def",
"patch_pyzmq",
"(",
")",
":",
"import",
"zmq",
"# ioloop.install, introduced in pyzmq 2.1.7",
"from",
"zmq",
".",
"eventloop",
"import",
"ioloop",
"def",
"install",
"(",
")",
":",
"import",
"tornado",
".",
"ioloop",
"tornado",
".",
"ioloop",
".",
"IOLoop"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | version_from_schema | returns: API version number <str>
raises: <VersionNotFound>
NOTE:
relies on presence of comment tags in the XSD, which are currently present
for both ebaySvc.xsd (TradingAPI) and ShoppingService.xsd (ShoppingAPI) | dirtyebay/utils.py | def version_from_schema(schema_el):
"""
returns: API version number <str>
raises: <VersionNotFound>
NOTE:
relies on presence of comment tags in the XSD, which are currently present
for both ebaySvc.xsd (TradingAPI) and ShoppingService.xsd (ShoppingAPI)
"""
vc_el = schema_el
while Tr... | def version_from_schema(schema_el):
"""
returns: API version number <str>
raises: <VersionNotFound>
NOTE:
relies on presence of comment tags in the XSD, which are currently present
for both ebaySvc.xsd (TradingAPI) and ShoppingService.xsd (ShoppingAPI)
"""
vc_el = schema_el
while Tr... | [
"returns",
":",
"API",
"version",
"number",
"<str",
">",
"raises",
":",
"<VersionNotFound",
">"
] | anentropic/dirtyebay | python | https://github.com/anentropic/dirtyebay/blob/c3194932360445563cfe0c7e034e41f09358c7eb/dirtyebay/utils.py#L36-L57 | [
"def",
"version_from_schema",
"(",
"schema_el",
")",
":",
"vc_el",
"=",
"schema_el",
"while",
"True",
":",
"vc_el",
"=",
"vc_el",
".",
"getprevious",
"(",
")",
"if",
"vc_el",
"is",
"None",
":",
"break",
"if",
"vc_el",
".",
"tag",
"is",
"etree",
".",
"C... | c3194932360445563cfe0c7e034e41f09358c7eb |
test | _default_ns_prefix | XML doc may have several prefix:namespace_url pairs, can also specify
a namespace_url as default, tags in that namespace don't need a prefix
NOTE:
we rely on default namespace also present in prefixed form, I'm not sure if
this is an XML certainty or a quirk of the eBay WSDLs
in our case the WSDL c... | dirtyebay/utils.py | def _default_ns_prefix(nsmap):
"""
XML doc may have several prefix:namespace_url pairs, can also specify
a namespace_url as default, tags in that namespace don't need a prefix
NOTE:
we rely on default namespace also present in prefixed form, I'm not sure if
this is an XML certainty or a quirk of... | def _default_ns_prefix(nsmap):
"""
XML doc may have several prefix:namespace_url pairs, can also specify
a namespace_url as default, tags in that namespace don't need a prefix
NOTE:
we rely on default namespace also present in prefixed form, I'm not sure if
this is an XML certainty or a quirk of... | [
"XML",
"doc",
"may",
"have",
"several",
"prefix",
":",
"namespace_url",
"pairs",
"can",
"also",
"specify",
"a",
"namespace_url",
"as",
"default",
"tags",
"in",
"that",
"namespace",
"don",
"t",
"need",
"a",
"prefix",
"NOTE",
":",
"we",
"rely",
"on",
"defaul... | anentropic/dirtyebay | python | https://github.com/anentropic/dirtyebay/blob/c3194932360445563cfe0c7e034e41f09358c7eb/dirtyebay/utils.py#L60-L90 | [
"def",
"_default_ns_prefix",
"(",
"nsmap",
")",
":",
"if",
"None",
"in",
"nsmap",
":",
"default_url",
"=",
"nsmap",
"[",
"None",
"]",
"prefix",
"=",
"None",
"for",
"key",
",",
"val",
"in",
"nsmap",
".",
"iteritems",
"(",
")",
":",
"if",
"val",
"==",
... | c3194932360445563cfe0c7e034e41f09358c7eb |
test | version_from_wsdl | returns: API version number <str>
raises: <VersionNotFound>
NOTE:
relies on presence of documentation node in the WSDLs:
<wsdl:documentation>
<Version>1.0.0</Version>
</wsdl:documentation> | dirtyebay/utils.py | def version_from_wsdl(wsdl_tree):
"""
returns: API version number <str>
raises: <VersionNotFound>
NOTE:
relies on presence of documentation node in the WSDLs:
<wsdl:documentation>
<Version>1.0.0</Version>
</wsdl:documentation>
"""
prefix = _default_ns_prefix(wsdl... | def version_from_wsdl(wsdl_tree):
"""
returns: API version number <str>
raises: <VersionNotFound>
NOTE:
relies on presence of documentation node in the WSDLs:
<wsdl:documentation>
<Version>1.0.0</Version>
</wsdl:documentation>
"""
prefix = _default_ns_prefix(wsdl... | [
"returns",
":",
"API",
"version",
"number",
"<str",
">",
"raises",
":",
"<VersionNotFound",
">"
] | anentropic/dirtyebay | python | https://github.com/anentropic/dirtyebay/blob/c3194932360445563cfe0c7e034e41f09358c7eb/dirtyebay/utils.py#L93-L125 | [
"def",
"version_from_wsdl",
"(",
"wsdl_tree",
")",
":",
"prefix",
"=",
"_default_ns_prefix",
"(",
"wsdl_tree",
".",
"nsmap",
")",
"# XPath doesn't allow empty prefix:",
"safe_map",
"=",
"wsdl_tree",
".",
"nsmap",
".",
"copy",
"(",
")",
"try",
":",
"del",
"safe_m... | c3194932360445563cfe0c7e034e41f09358c7eb |
test | parser_from_schema | Returns an XSD-schema-enabled lxml parser from a WSDL or XSD
`schema_url` can of course be local path via file:// url | dirtyebay/utils.py | def parser_from_schema(schema_url, require_version=True):
"""
Returns an XSD-schema-enabled lxml parser from a WSDL or XSD
`schema_url` can of course be local path via file:// url
"""
schema_tree = etree.parse(schema_url)
def get_version(element, getter):
try:
return getter... | def parser_from_schema(schema_url, require_version=True):
"""
Returns an XSD-schema-enabled lxml parser from a WSDL or XSD
`schema_url` can of course be local path via file:// url
"""
schema_tree = etree.parse(schema_url)
def get_version(element, getter):
try:
return getter... | [
"Returns",
"an",
"XSD",
"-",
"schema",
"-",
"enabled",
"lxml",
"parser",
"from",
"a",
"WSDL",
"or",
"XSD"
] | anentropic/dirtyebay | python | https://github.com/anentropic/dirtyebay/blob/c3194932360445563cfe0c7e034e41f09358c7eb/dirtyebay/utils.py#L129-L156 | [
"def",
"parser_from_schema",
"(",
"schema_url",
",",
"require_version",
"=",
"True",
")",
":",
"schema_tree",
"=",
"etree",
".",
"parse",
"(",
"schema_url",
")",
"def",
"get_version",
"(",
"element",
",",
"getter",
")",
":",
"try",
":",
"return",
"getter",
... | c3194932360445563cfe0c7e034e41f09358c7eb |
test | askQuestion | Ask a question to STDOUT and return answer from STDIN
Args:
question: A string question that will be printed to stdout
Kwargs:
required: True indicates the question must be answered
answers: A sequence of dicts with key value pairs where the key will
be a user-selec... | sparc/common/cli.py | def askQuestion(question, required = True, answers = dict(), tries = 3):
"""Ask a question to STDOUT and return answer from STDIN
Args:
question: A string question that will be printed to stdout
Kwargs:
required: True indicates the question must be answered
answers: A seque... | def askQuestion(question, required = True, answers = dict(), tries = 3):
"""Ask a question to STDOUT and return answer from STDIN
Args:
question: A string question that will be printed to stdout
Kwargs:
required: True indicates the question must be answered
answers: A seque... | [
"Ask",
"a",
"question",
"to",
"STDOUT",
"and",
"return",
"answer",
"from",
"STDIN",
"Args",
":",
"question",
":",
"A",
"string",
"question",
"that",
"will",
"be",
"printed",
"to",
"stdout",
"Kwargs",
":",
"required",
":",
"True",
"indicates",
"the",
"quest... | davisd50/sparc.common | python | https://github.com/davisd50/sparc.common/blob/50fb47ff6f42042c363f27bd13cb3919a560e235/sparc/common/cli.py#L15-L70 | [
"def",
"askQuestion",
"(",
"question",
",",
"required",
"=",
"True",
",",
"answers",
"=",
"dict",
"(",
")",
",",
"tries",
"=",
"3",
")",
":",
"print",
"question",
"if",
"not",
"answers",
":",
"# we get the user's answer via a named utility because direct calls to"... | 50fb47ff6f42042c363f27bd13cb3919a560e235 |
test | authenticate_unless_readonly | authenticate this page *unless* readonly view is active.
In read-only mode, the notebook list and print view should
be accessible without authentication. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py | def authenticate_unless_readonly(f, self, *args, **kwargs):
"""authenticate this page *unless* readonly view is active.
In read-only mode, the notebook list and print view should
be accessible without authentication.
"""
@web.authenticated
def auth_f(self, *args, **kwargs):
ret... | def authenticate_unless_readonly(f, self, *args, **kwargs):
"""authenticate this page *unless* readonly view is active.
In read-only mode, the notebook list and print view should
be accessible without authentication.
"""
@web.authenticated
def auth_f(self, *args, **kwargs):
ret... | [
"authenticate",
"this",
"page",
"*",
"unless",
"*",
"readonly",
"view",
"is",
"active",
".",
"In",
"read",
"-",
"only",
"mode",
"the",
"notebook",
"list",
"and",
"print",
"view",
"should",
"be",
"accessible",
"without",
"authentication",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py#L102-L116 | [
"def",
"authenticate_unless_readonly",
"(",
"f",
",",
"self",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"@",
"web",
".",
"authenticated",
"def",
"auth_f",
"(",
"self",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"return",
"f",
"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | AuthenticatedHandler.ws_url | websocket url matching the current request
turns http[s]://host[:port] into
ws[s]://host[:port] | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py | def ws_url(self):
"""websocket url matching the current request
turns http[s]://host[:port] into
ws[s]://host[:port]
"""
proto = self.request.protocol.replace('http', 'ws')
host = self.application.ipython_app.websocket_host # default to config value
if ho... | def ws_url(self):
"""websocket url matching the current request
turns http[s]://host[:port] into
ws[s]://host[:port]
"""
proto = self.request.protocol.replace('http', 'ws')
host = self.application.ipython_app.websocket_host # default to config value
if ho... | [
"websocket",
"url",
"matching",
"the",
"current",
"request"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py#L170-L180 | [
"def",
"ws_url",
"(",
"self",
")",
":",
"proto",
"=",
"self",
".",
"request",
".",
"protocol",
".",
"replace",
"(",
"'http'",
",",
"'ws'",
")",
"host",
"=",
"self",
".",
"application",
".",
"ipython_app",
".",
"websocket_host",
"# default to config value",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | ZMQStreamHandler._reserialize_reply | Reserialize a reply message using JSON.
This takes the msg list from the ZMQ socket, unserializes it using
self.session and then serializes the result using JSON. This method
should be used by self._on_zmq_reply to build messages that can
be sent back to the browser. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py | def _reserialize_reply(self, msg_list):
"""Reserialize a reply message using JSON.
This takes the msg list from the ZMQ socket, unserializes it using
self.session and then serializes the result using JSON. This method
should be used by self._on_zmq_reply to build messages that can
... | def _reserialize_reply(self, msg_list):
"""Reserialize a reply message using JSON.
This takes the msg list from the ZMQ socket, unserializes it using
self.session and then serializes the result using JSON. This method
should be used by self._on_zmq_reply to build messages that can
... | [
"Reserialize",
"a",
"reply",
"message",
"using",
"JSON",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py#L371-L390 | [
"def",
"_reserialize_reply",
"(",
"self",
",",
"msg_list",
")",
":",
"idents",
",",
"msg_list",
"=",
"self",
".",
"session",
".",
"feed_identities",
"(",
"msg_list",
")",
"msg",
"=",
"self",
".",
"session",
".",
"unserialize",
"(",
"msg_list",
")",
"try",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | AuthenticatedZMQStreamHandler._inject_cookie_message | Inject the first message, which is the document cookie,
for authentication. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py | def _inject_cookie_message(self, msg):
"""Inject the first message, which is the document cookie,
for authentication."""
if isinstance(msg, unicode):
# Cookie can't constructor doesn't accept unicode strings for some reason
msg = msg.encode('utf8', 'replace')
try:... | def _inject_cookie_message(self, msg):
"""Inject the first message, which is the document cookie,
for authentication."""
if isinstance(msg, unicode):
# Cookie can't constructor doesn't accept unicode strings for some reason
msg = msg.encode('utf8', 'replace')
try:... | [
"Inject",
"the",
"first",
"message",
"which",
"is",
"the",
"document",
"cookie",
"for",
"authentication",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py#L429-L438 | [
"def",
"_inject_cookie_message",
"(",
"self",
",",
"msg",
")",
":",
"if",
"isinstance",
"(",
"msg",
",",
"unicode",
")",
":",
"# Cookie can't constructor doesn't accept unicode strings for some reason",
"msg",
"=",
"msg",
".",
"encode",
"(",
"'utf8'",
",",
"'replace... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | IOPubHandler.start_hb | Start the heartbeating and call the callback if the kernel dies. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py | def start_hb(self, callback):
"""Start the heartbeating and call the callback if the kernel dies."""
if not self._beating:
self._kernel_alive = True
def ping_or_dead():
self.hb_stream.flush()
if self._kernel_alive:
self._kernel... | def start_hb(self, callback):
"""Start the heartbeating and call the callback if the kernel dies."""
if not self._beating:
self._kernel_alive = True
def ping_or_dead():
self.hb_stream.flush()
if self._kernel_alive:
self._kernel... | [
"Start",
"the",
"heartbeating",
"and",
"call",
"the",
"callback",
"if",
"the",
"kernel",
"dies",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py#L493-L520 | [
"def",
"start_hb",
"(",
"self",
",",
"callback",
")",
":",
"if",
"not",
"self",
".",
"_beating",
":",
"self",
".",
"_kernel_alive",
"=",
"True",
"def",
"ping_or_dead",
"(",
")",
":",
"self",
".",
"hb_stream",
".",
"flush",
"(",
")",
"if",
"self",
"."... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | IOPubHandler._really_start_hb | callback for delayed heartbeat start
Only start the hb loop if we haven't been closed during the wait. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py | def _really_start_hb(self):
"""callback for delayed heartbeat start
Only start the hb loop if we haven't been closed during the wait.
"""
if self._beating and not self.hb_stream.closed():
self._hb_periodic_callback.start() | def _really_start_hb(self):
"""callback for delayed heartbeat start
Only start the hb loop if we haven't been closed during the wait.
"""
if self._beating and not self.hb_stream.closed():
self._hb_periodic_callback.start() | [
"callback",
"for",
"delayed",
"heartbeat",
"start",
"Only",
"start",
"the",
"hb",
"loop",
"if",
"we",
"haven",
"t",
"been",
"closed",
"during",
"the",
"wait",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py#L522-L528 | [
"def",
"_really_start_hb",
"(",
"self",
")",
":",
"if",
"self",
".",
"_beating",
"and",
"not",
"self",
".",
"hb_stream",
".",
"closed",
"(",
")",
":",
"self",
".",
"_hb_periodic_callback",
".",
"start",
"(",
")"
] | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | IOPubHandler.stop_hb | Stop the heartbeating and cancel all related callbacks. | environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py | def stop_hb(self):
"""Stop the heartbeating and cancel all related callbacks."""
if self._beating:
self._beating = False
self._hb_periodic_callback.stop()
if not self.hb_stream.closed():
self.hb_stream.on_recv(None) | def stop_hb(self):
"""Stop the heartbeating and cancel all related callbacks."""
if self._beating:
self._beating = False
self._hb_periodic_callback.stop()
if not self.hb_stream.closed():
self.hb_stream.on_recv(None) | [
"Stop",
"the",
"heartbeating",
"and",
"cancel",
"all",
"related",
"callbacks",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/frontend/html/notebook/handlers.py#L530-L536 | [
"def",
"stop_hb",
"(",
"self",
")",
":",
"if",
"self",
".",
"_beating",
":",
"self",
".",
"_beating",
"=",
"False",
"self",
".",
"_hb_periodic_callback",
".",
"stop",
"(",
")",
"if",
"not",
"self",
".",
"hb_stream",
".",
"closed",
"(",
")",
":",
"sel... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Demo.fload | Load file object. | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def fload(self):
"""Load file object."""
# read data and parse into blocks
if hasattr(self, 'fobj') and self.fobj is not None:
self.fobj.close()
if hasattr(self.src, "read"):
# It seems to be a file or a file-like object
self.fobj = self.src
el... | def fload(self):
"""Load file object."""
# read data and parse into blocks
if hasattr(self, 'fobj') and self.fobj is not None:
self.fobj.close()
if hasattr(self.src, "read"):
# It seems to be a file or a file-like object
self.fobj = self.src
el... | [
"Load",
"file",
"object",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L256-L266 | [
"def",
"fload",
"(",
"self",
")",
":",
"# read data and parse into blocks",
"if",
"hasattr",
"(",
"self",
",",
"'fobj'",
")",
"and",
"self",
".",
"fobj",
"is",
"not",
"None",
":",
"self",
".",
"fobj",
".",
"close",
"(",
")",
"if",
"hasattr",
"(",
"self... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Demo.reload | Reload source from disk and initialize state. | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def reload(self):
"""Reload source from disk and initialize state."""
self.fload()
self.src = self.fobj.read()
src_b = [b.strip() for b in self.re_stop.split(self.src) if b]
self._silent = [bool(self.re_silent.findall(b)) for b in src_b]
self._auto = [bool(s... | def reload(self):
"""Reload source from disk and initialize state."""
self.fload()
self.src = self.fobj.read()
src_b = [b.strip() for b in self.re_stop.split(self.src) if b]
self._silent = [bool(self.re_silent.findall(b)) for b in src_b]
self._auto = [bool(s... | [
"Reload",
"source",
"from",
"disk",
"and",
"initialize",
"state",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L268-L302 | [
"def",
"reload",
"(",
"self",
")",
":",
"self",
".",
"fload",
"(",
")",
"self",
".",
"src",
"=",
"self",
".",
"fobj",
".",
"read",
"(",
")",
"src_b",
"=",
"[",
"b",
".",
"strip",
"(",
")",
"for",
"b",
"in",
"self",
".",
"re_stop",
".",
"split... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Demo._get_index | Get the current block index, validating and checking status.
Returns None if the demo is finished | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def _get_index(self,index):
"""Get the current block index, validating and checking status.
Returns None if the demo is finished"""
if index is None:
if self.finished:
print >>io.stdout, 'Demo finished. Use <demo_name>.reset() if you want to rerun it.'
... | def _get_index(self,index):
"""Get the current block index, validating and checking status.
Returns None if the demo is finished"""
if index is None:
if self.finished:
print >>io.stdout, 'Demo finished. Use <demo_name>.reset() if you want to rerun it.'
... | [
"Get",
"the",
"current",
"block",
"index",
"validating",
"and",
"checking",
"status",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L314-L326 | [
"def",
"_get_index",
"(",
"self",
",",
"index",
")",
":",
"if",
"index",
"is",
"None",
":",
"if",
"self",
".",
"finished",
":",
"print",
">>",
"io",
".",
"stdout",
",",
"'Demo finished. Use <demo_name>.reset() if you want to rerun it.'",
"return",
"None",
"inde... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Demo.seek | Move the current seek pointer to the given block.
You can use negative indices to seek from the end, with identical
semantics to those of Python lists. | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def seek(self,index):
"""Move the current seek pointer to the given block.
You can use negative indices to seek from the end, with identical
semantics to those of Python lists."""
if index<0:
index = self.nblocks + index
self._validate_index(index)
self.block... | def seek(self,index):
"""Move the current seek pointer to the given block.
You can use negative indices to seek from the end, with identical
semantics to those of Python lists."""
if index<0:
index = self.nblocks + index
self._validate_index(index)
self.block... | [
"Move",
"the",
"current",
"seek",
"pointer",
"to",
"the",
"given",
"block",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L328-L337 | [
"def",
"seek",
"(",
"self",
",",
"index",
")",
":",
"if",
"index",
"<",
"0",
":",
"index",
"=",
"self",
".",
"nblocks",
"+",
"index",
"self",
".",
"_validate_index",
"(",
"index",
")",
"self",
".",
"block_index",
"=",
"index",
"self",
".",
"finished"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Demo.edit | Edit a block.
If no number is given, use the last block executed.
This edits the in-memory copy of the demo, it does NOT modify the
original source file. If you want to do that, simply open the file in
an editor and use reload() when you make changes to the file. This
method ... | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def edit(self,index=None):
"""Edit a block.
If no number is given, use the last block executed.
This edits the in-memory copy of the demo, it does NOT modify the
original source file. If you want to do that, simply open the file in
an editor and use reload() when you make chan... | def edit(self,index=None):
"""Edit a block.
If no number is given, use the last block executed.
This edits the in-memory copy of the demo, it does NOT modify the
original source file. If you want to do that, simply open the file in
an editor and use reload() when you make chan... | [
"Edit",
"a",
"block",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L354-L381 | [
"def",
"edit",
"(",
"self",
",",
"index",
"=",
"None",
")",
":",
"index",
"=",
"self",
".",
"_get_index",
"(",
"index",
")",
"if",
"index",
"is",
"None",
":",
"return",
"# decrease the index by one (unless we're at the very beginning), so",
"# that the default demo.... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Demo.show | Show a single block on screen | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def show(self,index=None):
"""Show a single block on screen"""
index = self._get_index(index)
if index is None:
return
print >>io.stdout, self.marquee('<%s> block # %s (%s remaining)' %
(self.title,index,self.nblocks-index-1))
print >>io.s... | def show(self,index=None):
"""Show a single block on screen"""
index = self._get_index(index)
if index is None:
return
print >>io.stdout, self.marquee('<%s> block # %s (%s remaining)' %
(self.title,index,self.nblocks-index-1))
print >>io.s... | [
"Show",
"a",
"single",
"block",
"on",
"screen"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L383-L393 | [
"def",
"show",
"(",
"self",
",",
"index",
"=",
"None",
")",
":",
"index",
"=",
"self",
".",
"_get_index",
"(",
"index",
")",
"if",
"index",
"is",
"None",
":",
"return",
"print",
">>",
"io",
".",
"stdout",
",",
"self",
".",
"marquee",
"(",
"'<%s> bl... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | Demo.show_all | Show entire demo on screen, block by block | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def show_all(self):
"""Show entire demo on screen, block by block"""
fname = self.title
title = self.title
nblocks = self.nblocks
silent = self._silent
marquee = self.marquee
for index,block in enumerate(self.src_blocks_colored):
if silent[index]:
... | def show_all(self):
"""Show entire demo on screen, block by block"""
fname = self.title
title = self.title
nblocks = self.nblocks
silent = self._silent
marquee = self.marquee
for index,block in enumerate(self.src_blocks_colored):
if silent[index]:
... | [
"Show",
"entire",
"demo",
"on",
"screen",
"block",
"by",
"block"
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L395-L411 | [
"def",
"show_all",
"(",
"self",
")",
":",
"fname",
"=",
"self",
".",
"title",
"title",
"=",
"self",
".",
"title",
"nblocks",
"=",
"self",
".",
"nblocks",
"silent",
"=",
"self",
".",
"_silent",
"marquee",
"=",
"self",
".",
"marquee",
"for",
"index",
"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | LineDemo.reload | Reload source from disk and initialize state. | environment/lib/python2.7/site-packages/IPython/lib/demo.py | def reload(self):
"""Reload source from disk and initialize state."""
# read data and parse into blocks
self.fload()
lines = self.fobj.readlines()
src_b = [l for l in lines if l.strip()]
nblocks = len(src_b)
self.src = ''.join(li... | def reload(self):
"""Reload source from disk and initialize state."""
# read data and parse into blocks
self.fload()
lines = self.fobj.readlines()
src_b = [l for l in lines if l.strip()]
nblocks = len(src_b)
self.src = ''.join(li... | [
"Reload",
"source",
"from",
"disk",
"and",
"initialize",
"state",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/lib/demo.py#L517-L535 | [
"def",
"reload",
"(",
"self",
")",
":",
"# read data and parse into blocks",
"self",
".",
"fload",
"(",
")",
"lines",
"=",
"self",
".",
"fobj",
".",
"readlines",
"(",
")",
"src_b",
"=",
"[",
"l",
"for",
"l",
"in",
"lines",
"if",
"l",
".",
"strip",
"(... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | series | Processes a collection in series
Parameters
----------
collection : list
list of Record objects
method : method to call on each Record
prints : int
number of timer prints to the screen
Returns
-------
collection : list
list of Record objects after going through... | turntable/spin.py | def series(collection, method, prints = 15, *args, **kwargs):
'''
Processes a collection in series
Parameters
----------
collection : list
list of Record objects
method : method to call on each Record
prints : int
number of timer prints to the screen
Returns
------... | def series(collection, method, prints = 15, *args, **kwargs):
'''
Processes a collection in series
Parameters
----------
collection : list
list of Record objects
method : method to call on each Record
prints : int
number of timer prints to the screen
Returns
------... | [
"Processes",
"a",
"collection",
"in",
"series"
] | jshiv/turntable | python | https://github.com/jshiv/turntable/blob/c095a93df14d672ba54db164a7ab7373444d1829/turntable/spin.py#L18-L62 | [
"def",
"series",
"(",
"collection",
",",
"method",
",",
"prints",
"=",
"15",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"if",
"'verbose'",
"in",
"kwargs",
".",
"keys",
"(",
")",
":",
"verbose",
"=",
"kwargs",
"[",
"'verbose'",
"]",
"else"... | c095a93df14d672ba54db164a7ab7373444d1829 |
test | batch | Processes a collection in parallel batches,
each batch processes in series on a single process.
Running batches in parallel can be more effficient that splitting a list across cores as in spin.parallel
because of parallel processing has high IO requirements.
Parameters
----------
collection :... | turntable/spin.py | def batch(collection, method, processes=None, batch_size=None, quiet=False,
kwargs_to_dump=None, args=None, **kwargs):
'''Processes a collection in parallel batches,
each batch processes in series on a single process.
Running batches in parallel can be more effficient that splitting a list across... | def batch(collection, method, processes=None, batch_size=None, quiet=False,
kwargs_to_dump=None, args=None, **kwargs):
'''Processes a collection in parallel batches,
each batch processes in series on a single process.
Running batches in parallel can be more effficient that splitting a list across... | [
"Processes",
"a",
"collection",
"in",
"parallel",
"batches",
"each",
"batch",
"processes",
"in",
"series",
"on",
"a",
"single",
"process",
".",
"Running",
"batches",
"in",
"parallel",
"can",
"be",
"more",
"effficient",
"that",
"splitting",
"a",
"list",
"across... | jshiv/turntable | python | https://github.com/jshiv/turntable/blob/c095a93df14d672ba54db164a7ab7373444d1829/turntable/spin.py#L64-L161 | [
"def",
"batch",
"(",
"collection",
",",
"method",
",",
"processes",
"=",
"None",
",",
"batch_size",
"=",
"None",
",",
"quiet",
"=",
"False",
",",
"kwargs_to_dump",
"=",
"None",
",",
"args",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"if",
"proce... | c095a93df14d672ba54db164a7ab7373444d1829 |
test | thread | sets up the threadpool with map for parallel processing | turntable/spin.py | def thread(function, sequence, cores=None, runSeries=False, quiet=False):
'''sets up the threadpool with map for parallel processing'''
# Make the Pool of workes
if cores is None:
pool = ThreadPool()
else:
pool = ThreadPool(cores)
# Operate on the list of subjects with the requeste... | def thread(function, sequence, cores=None, runSeries=False, quiet=False):
'''sets up the threadpool with map for parallel processing'''
# Make the Pool of workes
if cores is None:
pool = ThreadPool()
else:
pool = ThreadPool(cores)
# Operate on the list of subjects with the requeste... | [
"sets",
"up",
"the",
"threadpool",
"with",
"map",
"for",
"parallel",
"processing"
] | jshiv/turntable | python | https://github.com/jshiv/turntable/blob/c095a93df14d672ba54db164a7ab7373444d1829/turntable/spin.py#L188-L223 | [
"def",
"thread",
"(",
"function",
",",
"sequence",
",",
"cores",
"=",
"None",
",",
"runSeries",
"=",
"False",
",",
"quiet",
"=",
"False",
")",
":",
"# Make the Pool of workes",
"if",
"cores",
"is",
"None",
":",
"pool",
"=",
"ThreadPool",
"(",
")",
"else"... | c095a93df14d672ba54db164a7ab7373444d1829 |
test | parallel | Processes a collection in parallel.
Parameters
----------
collection : list
i.e. list of Record objects
method : method to call on each Record
processes : int
number of processes to run on [defaults to number of cores on machine]
batch_size : int
lenght of each batch [de... | turntable/spin.py | def parallel(collection, method, processes=None, args=None, **kwargs):
'''Processes a collection in parallel.
Parameters
----------
collection : list
i.e. list of Record objects
method : method to call on each Record
processes : int
number of processes to run on [defaults to num... | def parallel(collection, method, processes=None, args=None, **kwargs):
'''Processes a collection in parallel.
Parameters
----------
collection : list
i.e. list of Record objects
method : method to call on each Record
processes : int
number of processes to run on [defaults to num... | [
"Processes",
"a",
"collection",
"in",
"parallel",
"."
] | jshiv/turntable | python | https://github.com/jshiv/turntable/blob/c095a93df14d672ba54db164a7ab7373444d1829/turntable/spin.py#L225-L293 | [
"def",
"parallel",
"(",
"collection",
",",
"method",
",",
"processes",
"=",
"None",
",",
"args",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"if",
"processes",
"is",
"None",
":",
"# default to the number of cores, not exceeding 20",
"processes",
"=",
"min"... | c095a93df14d672ba54db164a7ab7373444d1829 |
test | install_mathjax | Download and install MathJax for offline use.
This will install mathjax to the 'static' dir in the IPython notebook
package, so it will fail if the caller does not have write access
to that location.
MathJax is a ~15MB download, and ~150MB installed.
Parameters
----------
... | environment/lib/python2.7/site-packages/IPython/external/mathjax.py | def install_mathjax(tag='v1.1', replace=False):
"""Download and install MathJax for offline use.
This will install mathjax to the 'static' dir in the IPython notebook
package, so it will fail if the caller does not have write access
to that location.
MathJax is a ~15MB download, and ~150MB... | def install_mathjax(tag='v1.1', replace=False):
"""Download and install MathJax for offline use.
This will install mathjax to the 'static' dir in the IPython notebook
package, so it will fail if the caller does not have write access
to that location.
MathJax is a ~15MB download, and ~150MB... | [
"Download",
"and",
"install",
"MathJax",
"for",
"offline",
"use",
".",
"This",
"will",
"install",
"mathjax",
"to",
"the",
"static",
"dir",
"in",
"the",
"IPython",
"notebook",
"package",
"so",
"it",
"will",
"fail",
"if",
"the",
"caller",
"does",
"not",
"hav... | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/external/mathjax.py#L32-L79 | [
"def",
"install_mathjax",
"(",
"tag",
"=",
"'v1.1'",
",",
"replace",
"=",
"False",
")",
":",
"mathjax_url",
"=",
"\"https://github.com/mathjax/MathJax/tarball/%s\"",
"%",
"tag",
"nbdir",
"=",
"os",
".",
"path",
".",
"dirname",
"(",
"os",
".",
"path",
".",
"a... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | with_it | wrap `with obj` out of func.
example:
``` py
@with_it(Lock())
def func(): pass
``` | jasily/lang/with_any.py | def with_it(obj):
'''
wrap `with obj` out of func.
example:
``` py
@with_it(Lock())
def func(): pass
```
'''
def _wrap(func):
@functools.wraps(func)
def wrapper(*args, **kwargs):
with obj:
return func(*args, **kwargs)
return wr... | def with_it(obj):
'''
wrap `with obj` out of func.
example:
``` py
@with_it(Lock())
def func(): pass
```
'''
def _wrap(func):
@functools.wraps(func)
def wrapper(*args, **kwargs):
with obj:
return func(*args, **kwargs)
return wr... | [
"wrap",
"with",
"obj",
"out",
"of",
"func",
"."
] | Jasily/jasily-python | python | https://github.com/Jasily/jasily-python/blob/1c821a120ebbbbc3c5761f5f1e8a73588059242a/jasily/lang/with_any.py#L12-L33 | [
"def",
"with_it",
"(",
"obj",
")",
":",
"def",
"_wrap",
"(",
"func",
")",
":",
"@",
"functools",
".",
"wraps",
"(",
"func",
")",
"def",
"wrapper",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"with",
"obj",
":",
"return",
"func",
"(",
"... | 1c821a120ebbbbc3c5761f5f1e8a73588059242a |
test | with_objattr | wrap `with getattr(self, name)` out of func.
usage:
``` py
class A:
def __init__(self):
self._lock = RLock()
@with_objattr('_lock') # so easy to make a sync instance method !
def func():
pass
``` | jasily/lang/with_any.py | def with_objattr(name):
'''
wrap `with getattr(self, name)` out of func.
usage:
``` py
class A:
def __init__(self):
self._lock = RLock()
@with_objattr('_lock') # so easy to make a sync instance method !
def func():
pass
```
'''
def _wra... | def with_objattr(name):
'''
wrap `with getattr(self, name)` out of func.
usage:
``` py
class A:
def __init__(self):
self._lock = RLock()
@with_objattr('_lock') # so easy to make a sync instance method !
def func():
pass
```
'''
def _wra... | [
"wrap",
"with",
"getattr",
"(",
"self",
"name",
")",
"out",
"of",
"func",
"."
] | Jasily/jasily-python | python | https://github.com/Jasily/jasily-python/blob/1c821a120ebbbbc3c5761f5f1e8a73588059242a/jasily/lang/with_any.py#L35-L61 | [
"def",
"with_objattr",
"(",
"name",
")",
":",
"def",
"_wrap",
"(",
"func",
")",
":",
"@",
"functools",
".",
"wraps",
"(",
"func",
")",
"def",
"wrapper",
"(",
"self",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"with",
"getattr",
"(",
"se... | 1c821a120ebbbbc3c5761f5f1e8a73588059242a |
test | with_objattrs | like `with_objattr` but enter context one by one. | jasily/lang/with_any.py | def with_objattrs(*names):
'''
like `with_objattr` but enter context one by one.
'''
def _wrap(func):
@functools.wraps(func)
def wrapper(self, *args, **kwargs):
with contextlib.ExitStack() as stack:
for name in names:
stack.enter_context(... | def with_objattrs(*names):
'''
like `with_objattr` but enter context one by one.
'''
def _wrap(func):
@functools.wraps(func)
def wrapper(self, *args, **kwargs):
with contextlib.ExitStack() as stack:
for name in names:
stack.enter_context(... | [
"like",
"with_objattr",
"but",
"enter",
"context",
"one",
"by",
"one",
"."
] | Jasily/jasily-python | python | https://github.com/Jasily/jasily-python/blob/1c821a120ebbbbc3c5761f5f1e8a73588059242a/jasily/lang/with_any.py#L63-L79 | [
"def",
"with_objattrs",
"(",
"*",
"names",
")",
":",
"def",
"_wrap",
"(",
"func",
")",
":",
"@",
"functools",
".",
"wraps",
"(",
"func",
")",
"def",
"wrapper",
"(",
"self",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"with",
"contextlib",
... | 1c821a120ebbbbc3c5761f5f1e8a73588059242a |
test | inspect_traceback | Inspect a traceback and its frame, returning source for the expression
where the exception was raised, with simple variable replacement performed
and the line on which the exception was raised marked with '>>' | environment/lib/python2.7/site-packages/nose/inspector.py | def inspect_traceback(tb):
"""Inspect a traceback and its frame, returning source for the expression
where the exception was raised, with simple variable replacement performed
and the line on which the exception was raised marked with '>>'
"""
log.debug('inspect traceback %s', tb)
# we only wan... | def inspect_traceback(tb):
"""Inspect a traceback and its frame, returning source for the expression
where the exception was raised, with simple variable replacement performed
and the line on which the exception was raised marked with '>>'
"""
log.debug('inspect traceback %s', tb)
# we only wan... | [
"Inspect",
"a",
"traceback",
"and",
"its",
"frame",
"returning",
"source",
"for",
"the",
"expression",
"where",
"the",
"exception",
"was",
"raised",
"with",
"simple",
"variable",
"replacement",
"performed",
"and",
"the",
"line",
"on",
"which",
"the",
"exception"... | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/inspector.py#L18-L62 | [
"def",
"inspect_traceback",
"(",
"tb",
")",
":",
"log",
".",
"debug",
"(",
"'inspect traceback %s'",
",",
"tb",
")",
"# we only want the innermost frame, where the exception was raised",
"while",
"tb",
".",
"tb_next",
":",
"tb",
"=",
"tb",
".",
"tb_next",
"frame",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | tbsource | Get source from a traceback object.
A tuple of two things is returned: a list of lines of context from
the source code, and the index of the current line within that list.
The optional second argument specifies the number of lines of context
to return, which are centered around the current line.
... | environment/lib/python2.7/site-packages/nose/inspector.py | def tbsource(tb, context=6):
"""Get source from a traceback object.
A tuple of two things is returned: a list of lines of context from
the source code, and the index of the current line within that list.
The optional second argument specifies the number of lines of context
to return, which are cen... | def tbsource(tb, context=6):
"""Get source from a traceback object.
A tuple of two things is returned: a list of lines of context from
the source code, and the index of the current line within that list.
The optional second argument specifies the number of lines of context
to return, which are cen... | [
"Get",
"source",
"from",
"a",
"traceback",
"object",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/inspector.py#L65-L106 | [
"def",
"tbsource",
"(",
"tb",
",",
"context",
"=",
"6",
")",
":",
"lineno",
"=",
"tb",
".",
"tb_lineno",
"frame",
"=",
"tb",
".",
"tb_frame",
"if",
"context",
">",
"0",
":",
"start",
"=",
"lineno",
"-",
"1",
"-",
"context",
"//",
"2",
"log",
".",... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | find_inspectable_lines | Find lines in home that are inspectable.
Walk back from the err line up to 3 lines, but don't walk back over
changes in indent level.
Walk forward up to 3 lines, counting \ separated lines as 1. Don't walk
over changes in indent level (unless part of an extended line) | environment/lib/python2.7/site-packages/nose/inspector.py | def find_inspectable_lines(lines, pos):
"""Find lines in home that are inspectable.
Walk back from the err line up to 3 lines, but don't walk back over
changes in indent level.
Walk forward up to 3 lines, counting \ separated lines as 1. Don't walk
over changes in indent level (unless part of ... | def find_inspectable_lines(lines, pos):
"""Find lines in home that are inspectable.
Walk back from the err line up to 3 lines, but don't walk back over
changes in indent level.
Walk forward up to 3 lines, counting \ separated lines as 1. Don't walk
over changes in indent level (unless part of ... | [
"Find",
"lines",
"in",
"home",
"that",
"are",
"inspectable",
".",
"Walk",
"back",
"from",
"the",
"err",
"line",
"up",
"to",
"3",
"lines",
"but",
"don",
"t",
"walk",
"back",
"over",
"changes",
"in",
"indent",
"level",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/nose/inspector.py#L109-L146 | [
"def",
"find_inspectable_lines",
"(",
"lines",
",",
"pos",
")",
":",
"cnt",
"=",
"re",
".",
"compile",
"(",
"r'\\\\[\\s\\n]*$'",
")",
"df",
"=",
"re",
".",
"compile",
"(",
"r':[\\s\\n]*$'",
")",
"ind",
"=",
"re",
".",
"compile",
"(",
"r'^(\\s*)'",
")",
... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | countdown | Create a countdown. | django_baseline/templatetags/countdownbox.py | def countdown(name, date, description='', id='', granularity='sec', start=None,
progressbar=False, progressbar_inversed=False, showpct=False):
'''
Create a countdown.
'''
end_date = dateparse.parse_datetime(date)
end = dateformat.format(end_date, 'U')
content = '<div class="name">' + name + ... | def countdown(name, date, description='', id='', granularity='sec', start=None,
progressbar=False, progressbar_inversed=False, showpct=False):
'''
Create a countdown.
'''
end_date = dateparse.parse_datetime(date)
end = dateformat.format(end_date, 'U')
content = '<div class="name">' + name + ... | [
"Create",
"a",
"countdown",
"."
] | theduke/django-baseline | python | https://github.com/theduke/django-baseline/blob/7be8b956e53c70b35f34e1783a8fe8f716955afb/django_baseline/templatetags/countdownbox.py#L14-L64 | [
"def",
"countdown",
"(",
"name",
",",
"date",
",",
"description",
"=",
"''",
",",
"id",
"=",
"''",
",",
"granularity",
"=",
"'sec'",
",",
"start",
"=",
"None",
",",
"progressbar",
"=",
"False",
",",
"progressbar_inversed",
"=",
"False",
",",
"showpct",
... | 7be8b956e53c70b35f34e1783a8fe8f716955afb |
test | cleanup | Cleanup routine to shut down all subprocesses we opened. | environment/share/doc/ipython/examples/parallel/workflow/wmanager.py | def cleanup(controller, engines):
"""Cleanup routine to shut down all subprocesses we opened."""
import signal, time
print('Starting cleanup')
print('Stopping engines...')
for e in engines:
e.send_signal(signal.SIGINT)
print('Stopping controller...')
# so it can shut down its qu... | def cleanup(controller, engines):
"""Cleanup routine to shut down all subprocesses we opened."""
import signal, time
print('Starting cleanup')
print('Stopping engines...')
for e in engines:
e.send_signal(signal.SIGINT)
print('Stopping controller...')
# so it can shut down its qu... | [
"Cleanup",
"routine",
"to",
"shut",
"down",
"all",
"subprocesses",
"we",
"opened",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/share/doc/ipython/examples/parallel/workflow/wmanager.py#L15-L29 | [
"def",
"cleanup",
"(",
"controller",
",",
"engines",
")",
":",
"import",
"signal",
",",
"time",
"print",
"(",
"'Starting cleanup'",
")",
"print",
"(",
"'Stopping engines...'",
")",
"for",
"e",
"in",
"engines",
":",
"e",
".",
"send_signal",
"(",
"signal",
"... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
test | ConditionalModifier.pre_call | A modifier hook function. This is called in priority order prior
to invoking the ``Action`` for the step. This allows a
modifier to alter the context, or to take over subsequent
action invocation.
:param ctxt: The context object.
:param pre_mod: A list of the modifiers precedi... | timid/modifiers.py | def pre_call(self, ctxt, pre_mod, post_mod, action):
"""
A modifier hook function. This is called in priority order prior
to invoking the ``Action`` for the step. This allows a
modifier to alter the context, or to take over subsequent
action invocation.
:param ctxt: Th... | def pre_call(self, ctxt, pre_mod, post_mod, action):
"""
A modifier hook function. This is called in priority order prior
to invoking the ``Action`` for the step. This allows a
modifier to alter the context, or to take over subsequent
action invocation.
:param ctxt: Th... | [
"A",
"modifier",
"hook",
"function",
".",
"This",
"is",
"called",
"in",
"priority",
"order",
"prior",
"to",
"invoking",
"the",
"Action",
"for",
"the",
"step",
".",
"This",
"allows",
"a",
"modifier",
"to",
"alter",
"the",
"context",
"or",
"to",
"take",
"o... | rackerlabs/timid | python | https://github.com/rackerlabs/timid/blob/b1c6aa159ab380a033740f4aa392cf0d125e0ac6/timid/modifiers.py#L61-L93 | [
"def",
"pre_call",
"(",
"self",
",",
"ctxt",
",",
"pre_mod",
",",
"post_mod",
",",
"action",
")",
":",
"# Check the condition",
"if",
"not",
"self",
".",
"condition",
"(",
"ctxt",
")",
":",
"return",
"steps",
".",
"StepResult",
"(",
"state",
"=",
"steps"... | b1c6aa159ab380a033740f4aa392cf0d125e0ac6 |
test | IgnoreErrorsModifier.post_call | A modifier hook function. This is called in reverse-priority
order after invoking the ``Action`` for the step. This allows
a modifier to inspect or alter the result of the step.
:param ctxt: The context object.
:param result: The result of the action. This will be a
... | timid/modifiers.py | def post_call(self, ctxt, result, action, post_mod, pre_mod):
"""
A modifier hook function. This is called in reverse-priority
order after invoking the ``Action`` for the step. This allows
a modifier to inspect or alter the result of the step.
:param ctxt: The context object.
... | def post_call(self, ctxt, result, action, post_mod, pre_mod):
"""
A modifier hook function. This is called in reverse-priority
order after invoking the ``Action`` for the step. This allows
a modifier to inspect or alter the result of the step.
:param ctxt: The context object.
... | [
"A",
"modifier",
"hook",
"function",
".",
"This",
"is",
"called",
"in",
"reverse",
"-",
"priority",
"order",
"after",
"invoking",
"the",
"Action",
"for",
"the",
"step",
".",
"This",
"allows",
"a",
"modifier",
"to",
"inspect",
"or",
"alter",
"the",
"result"... | rackerlabs/timid | python | https://github.com/rackerlabs/timid/blob/b1c6aa159ab380a033740f4aa392cf0d125e0ac6/timid/modifiers.py#L111-L139 | [
"def",
"post_call",
"(",
"self",
",",
"ctxt",
",",
"result",
",",
"action",
",",
"post_mod",
",",
"pre_mod",
")",
":",
"# Set the ignore state",
"result",
".",
"ignore",
"=",
"self",
".",
"config",
"return",
"result"
] | b1c6aa159ab380a033740f4aa392cf0d125e0ac6 |
test | save_ids | Keep our history and outstanding attributes up to date after a method call. | environment/lib/python2.7/site-packages/IPython/parallel/client/view.py | def save_ids(f, self, *args, **kwargs):
"""Keep our history and outstanding attributes up to date after a method call."""
n_previous = len(self.client.history)
try:
ret = f(self, *args, **kwargs)
finally:
nmsgs = len(self.client.history) - n_previous
msg_ids = self.client.history... | def save_ids(f, self, *args, **kwargs):
"""Keep our history and outstanding attributes up to date after a method call."""
n_previous = len(self.client.history)
try:
ret = f(self, *args, **kwargs)
finally:
nmsgs = len(self.client.history) - n_previous
msg_ids = self.client.history... | [
"Keep",
"our",
"history",
"and",
"outstanding",
"attributes",
"up",
"to",
"date",
"after",
"a",
"method",
"call",
"."
] | cloud9ers/gurumate | python | https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/parallel/client/view.py#L44-L54 | [
"def",
"save_ids",
"(",
"f",
",",
"self",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"n_previous",
"=",
"len",
"(",
"self",
".",
"client",
".",
"history",
")",
"try",
":",
"ret",
"=",
"f",
"(",
"self",
",",
"*",
"args",
",",
"*",
"*... | 075dc74d1ee62a8c6b7a8bf2b271364f01629d1e |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.