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 | _init_pathinfo | Return a set containing all existing directory entries from sys.path | capybara/virtualenv/lib/python2.7/site.py | def _init_pathinfo():
"""Return a set containing all existing directory entries from sys.path"""
d = set()
for dir in sys.path:
try:
if os.path.isdir(dir):
dir, dircase = makepath(dir)
d.add(dircase)
except TypeError:
continue
retur... | def _init_pathinfo():
"""Return a set containing all existing directory entries from sys.path"""
d = set()
for dir in sys.path:
try:
if os.path.isdir(dir):
dir, dircase = makepath(dir)
d.add(dircase)
except TypeError:
continue
retur... | [
"Return",
"a",
"set",
"containing",
"all",
"existing",
"directory",
"entries",
"from",
"sys",
".",
"path"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L143-L153 | [
"def",
"_init_pathinfo",
"(",
")",
":",
"d",
"=",
"set",
"(",
")",
"for",
"dir",
"in",
"sys",
".",
"path",
":",
"try",
":",
"if",
"os",
".",
"path",
".",
"isdir",
"(",
"dir",
")",
":",
"dir",
",",
"dircase",
"=",
"makepath",
"(",
"dir",
")",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | addpackage | Add a new path to known_paths by combining sitedir and 'name' or execute
sitedir if it starts with 'import | capybara/virtualenv/lib/python2.7/site.py | def addpackage(sitedir, name, known_paths):
"""Add a new path to known_paths by combining sitedir and 'name' or execute
sitedir if it starts with 'import'"""
if known_paths is None:
_init_pathinfo()
reset = 1
else:
reset = 0
fullname = os.path.join(sitedir, name)
try:
... | def addpackage(sitedir, name, known_paths):
"""Add a new path to known_paths by combining sitedir and 'name' or execute
sitedir if it starts with 'import'"""
if known_paths is None:
_init_pathinfo()
reset = 1
else:
reset = 0
fullname = os.path.join(sitedir, name)
try:
... | [
"Add",
"a",
"new",
"path",
"to",
"known_paths",
"by",
"combining",
"sitedir",
"and",
"name",
"or",
"execute",
"sitedir",
"if",
"it",
"starts",
"with",
"import"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L155-L184 | [
"def",
"addpackage",
"(",
"sitedir",
",",
"name",
",",
"known_paths",
")",
":",
"if",
"known_paths",
"is",
"None",
":",
"_init_pathinfo",
"(",
")",
"reset",
"=",
"1",
"else",
":",
"reset",
"=",
"0",
"fullname",
"=",
"os",
".",
"path",
".",
"join",
"(... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | addsitedir | Add 'sitedir' argument to sys.path if missing and handle .pth files in
'sitedir | capybara/virtualenv/lib/python2.7/site.py | def addsitedir(sitedir, known_paths=None):
"""Add 'sitedir' argument to sys.path if missing and handle .pth files in
'sitedir'"""
if known_paths is None:
known_paths = _init_pathinfo()
reset = 1
else:
reset = 0
sitedir, sitedircase = makepath(sitedir)
if not sitedircase i... | def addsitedir(sitedir, known_paths=None):
"""Add 'sitedir' argument to sys.path if missing and handle .pth files in
'sitedir'"""
if known_paths is None:
known_paths = _init_pathinfo()
reset = 1
else:
reset = 0
sitedir, sitedircase = makepath(sitedir)
if not sitedircase i... | [
"Add",
"sitedir",
"argument",
"to",
"sys",
".",
"path",
"if",
"missing",
"and",
"handle",
".",
"pth",
"files",
"in",
"sitedir"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L186-L207 | [
"def",
"addsitedir",
"(",
"sitedir",
",",
"known_paths",
"=",
"None",
")",
":",
"if",
"known_paths",
"is",
"None",
":",
"known_paths",
"=",
"_init_pathinfo",
"(",
")",
"reset",
"=",
"1",
"else",
":",
"reset",
"=",
"0",
"sitedir",
",",
"sitedircase",
"=",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | addsitepackages | Add site-packages (and possibly site-python) to sys.path | capybara/virtualenv/lib/python2.7/site.py | def addsitepackages(known_paths, sys_prefix=sys.prefix, exec_prefix=sys.exec_prefix):
"""Add site-packages (and possibly site-python) to sys.path"""
prefixes = [os.path.join(sys_prefix, "local"), sys_prefix]
if exec_prefix != sys_prefix:
prefixes.append(os.path.join(exec_prefix, "local"))
for p... | def addsitepackages(known_paths, sys_prefix=sys.prefix, exec_prefix=sys.exec_prefix):
"""Add site-packages (and possibly site-python) to sys.path"""
prefixes = [os.path.join(sys_prefix, "local"), sys_prefix]
if exec_prefix != sys_prefix:
prefixes.append(os.path.join(exec_prefix, "local"))
for p... | [
"Add",
"site",
"-",
"packages",
"(",
"and",
"possibly",
"site",
"-",
"python",
")",
"to",
"sys",
".",
"path"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L209-L283 | [
"def",
"addsitepackages",
"(",
"known_paths",
",",
"sys_prefix",
"=",
"sys",
".",
"prefix",
",",
"exec_prefix",
"=",
"sys",
".",
"exec_prefix",
")",
":",
"prefixes",
"=",
"[",
"os",
".",
"path",
".",
"join",
"(",
"sys_prefix",
",",
"\"local\"",
")",
",",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | check_enableusersite | Check if user site directory is safe for inclusion
The function tests for the command line flag (including environment var),
process uid/gid equal to effective uid/gid.
None: Disabled for security reasons
False: Disabled by user (command line option)
True: Safe and enabled | capybara/virtualenv/lib/python2.7/site.py | def check_enableusersite():
"""Check if user site directory is safe for inclusion
The function tests for the command line flag (including environment var),
process uid/gid equal to effective uid/gid.
None: Disabled for security reasons
False: Disabled by user (command line option)
True: Safe a... | def check_enableusersite():
"""Check if user site directory is safe for inclusion
The function tests for the command line flag (including environment var),
process uid/gid equal to effective uid/gid.
None: Disabled for security reasons
False: Disabled by user (command line option)
True: Safe a... | [
"Check",
"if",
"user",
"site",
"directory",
"is",
"safe",
"for",
"inclusion"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L285-L307 | [
"def",
"check_enableusersite",
"(",
")",
":",
"if",
"hasattr",
"(",
"sys",
",",
"'flags'",
")",
"and",
"getattr",
"(",
"sys",
".",
"flags",
",",
"'no_user_site'",
",",
"False",
")",
":",
"return",
"False",
"if",
"hasattr",
"(",
"os",
",",
"\"getuid\"",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | addusersitepackages | Add a per user site-package to sys.path
Each user has its own python directory with site-packages in the
home directory.
USER_BASE is the root directory for all Python versions
USER_SITE is the user specific site-packages directory
USER_SITE/.. can be used for data. | capybara/virtualenv/lib/python2.7/site.py | def addusersitepackages(known_paths):
"""Add a per user site-package to sys.path
Each user has its own python directory with site-packages in the
home directory.
USER_BASE is the root directory for all Python versions
USER_SITE is the user specific site-packages directory
USER_SITE/.. can be... | def addusersitepackages(known_paths):
"""Add a per user site-package to sys.path
Each user has its own python directory with site-packages in the
home directory.
USER_BASE is the root directory for all Python versions
USER_SITE is the user specific site-packages directory
USER_SITE/.. can be... | [
"Add",
"a",
"per",
"user",
"site",
"-",
"package",
"to",
"sys",
".",
"path"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L309-L358 | [
"def",
"addusersitepackages",
"(",
"known_paths",
")",
":",
"global",
"USER_BASE",
",",
"USER_SITE",
",",
"ENABLE_USER_SITE",
"env_base",
"=",
"os",
".",
"environ",
".",
"get",
"(",
"\"PYTHONUSERBASE\"",
",",
"None",
")",
"def",
"joinuser",
"(",
"*",
"args",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | setBEGINLIBPATH | The OS/2 EMX port has optional extension modules that do double duty
as DLLs (and must use the .DLL file extension) for other extensions.
The library search path needs to be amended so these will be found
during module import. Use BEGINLIBPATH so that these are at the start
of the library search path. | capybara/virtualenv/lib/python2.7/site.py | def setBEGINLIBPATH():
"""The OS/2 EMX port has optional extension modules that do double duty
as DLLs (and must use the .DLL file extension) for other extensions.
The library search path needs to be amended so these will be found
during module import. Use BEGINLIBPATH so that these are at the start
... | def setBEGINLIBPATH():
"""The OS/2 EMX port has optional extension modules that do double duty
as DLLs (and must use the .DLL file extension) for other extensions.
The library search path needs to be amended so these will be found
during module import. Use BEGINLIBPATH so that these are at the start
... | [
"The",
"OS",
"/",
"2",
"EMX",
"port",
"has",
"optional",
"extension",
"modules",
"that",
"do",
"double",
"duty",
"as",
"DLLs",
"(",
"and",
"must",
"use",
"the",
".",
"DLL",
"file",
"extension",
")",
"for",
"other",
"extensions",
".",
"The",
"library",
... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L362-L376 | [
"def",
"setBEGINLIBPATH",
"(",
")",
":",
"dllpath",
"=",
"os",
".",
"path",
".",
"join",
"(",
"sys",
".",
"prefix",
",",
"\"Lib\"",
",",
"\"lib-dynload\"",
")",
"libpath",
"=",
"os",
".",
"environ",
"[",
"'BEGINLIBPATH'",
"]",
".",
"split",
"(",
"';'",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | setquit | Define new built-ins 'quit' and 'exit'.
These are simply strings that display a hint on how to exit. | capybara/virtualenv/lib/python2.7/site.py | def setquit():
"""Define new built-ins 'quit' and 'exit'.
These are simply strings that display a hint on how to exit.
"""
if os.sep == ':':
eof = 'Cmd-Q'
elif os.sep == '\\':
eof = 'Ctrl-Z plus Return'
else:
eof = 'Ctrl-D (i.e. EOF)'
class Quitter(object):
... | def setquit():
"""Define new built-ins 'quit' and 'exit'.
These are simply strings that display a hint on how to exit.
"""
if os.sep == ':':
eof = 'Cmd-Q'
elif os.sep == '\\':
eof = 'Ctrl-Z plus Return'
else:
eof = 'Ctrl-D (i.e. EOF)'
class Quitter(object):
... | [
"Define",
"new",
"built",
"-",
"ins",
"quit",
"and",
"exit",
".",
"These",
"are",
"simply",
"strings",
"that",
"display",
"a",
"hint",
"on",
"how",
"to",
"exit",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L379-L405 | [
"def",
"setquit",
"(",
")",
":",
"if",
"os",
".",
"sep",
"==",
"':'",
":",
"eof",
"=",
"'Cmd-Q'",
"elif",
"os",
".",
"sep",
"==",
"'\\\\'",
":",
"eof",
"=",
"'Ctrl-Z plus Return'",
"else",
":",
"eof",
"=",
"'Ctrl-D (i.e. EOF)'",
"class",
"Quitter",
"("... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | setcopyright | Set 'copyright' and 'credits' in __builtin__ | capybara/virtualenv/lib/python2.7/site.py | def setcopyright():
"""Set 'copyright' and 'credits' in __builtin__"""
builtins.copyright = _Printer("copyright", sys.copyright)
if _is_jython:
builtins.credits = _Printer(
"credits",
"Jython is maintained by the Jython developers (www.jython.org).")
elif _is_pypy:
... | def setcopyright():
"""Set 'copyright' and 'credits' in __builtin__"""
builtins.copyright = _Printer("copyright", sys.copyright)
if _is_jython:
builtins.credits = _Printer(
"credits",
"Jython is maintained by the Jython developers (www.jython.org).")
elif _is_pypy:
... | [
"Set",
"copyright",
"and",
"credits",
"in",
"__builtin__"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L472-L491 | [
"def",
"setcopyright",
"(",
")",
":",
"builtins",
".",
"copyright",
"=",
"_Printer",
"(",
"\"copyright\"",
",",
"sys",
".",
"copyright",
")",
"if",
"_is_jython",
":",
"builtins",
".",
"credits",
"=",
"_Printer",
"(",
"\"credits\"",
",",
"\"Jython is maintained... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | aliasmbcs | On Windows, some default encodings are not provided by Python,
while they are always available as "mbcs" in each locale. Make
them usable by aliasing to "mbcs" in such a case. | capybara/virtualenv/lib/python2.7/site.py | def aliasmbcs():
"""On Windows, some default encodings are not provided by Python,
while they are always available as "mbcs" in each locale. Make
them usable by aliasing to "mbcs" in such a case."""
if sys.platform == 'win32':
import locale, codecs
enc = locale.getdefaultlocale()[1]
... | def aliasmbcs():
"""On Windows, some default encodings are not provided by Python,
while they are always available as "mbcs" in each locale. Make
them usable by aliasing to "mbcs" in such a case."""
if sys.platform == 'win32':
import locale, codecs
enc = locale.getdefaultlocale()[1]
... | [
"On",
"Windows",
"some",
"default",
"encodings",
"are",
"not",
"provided",
"by",
"Python",
"while",
"they",
"are",
"always",
"available",
"as",
"mbcs",
"in",
"each",
"locale",
".",
"Make",
"them",
"usable",
"by",
"aliasing",
"to",
"mbcs",
"in",
"such",
"a"... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L510-L523 | [
"def",
"aliasmbcs",
"(",
")",
":",
"if",
"sys",
".",
"platform",
"==",
"'win32'",
":",
"import",
"locale",
",",
"codecs",
"enc",
"=",
"locale",
".",
"getdefaultlocale",
"(",
")",
"[",
"1",
"]",
"if",
"enc",
".",
"startswith",
"(",
"'cp'",
")",
":",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | setencoding | Set the string encoding used by the Unicode implementation. The
default is 'ascii', but if you're willing to experiment, you can
change this. | capybara/virtualenv/lib/python2.7/site.py | def setencoding():
"""Set the string encoding used by the Unicode implementation. The
default is 'ascii', but if you're willing to experiment, you can
change this."""
encoding = "ascii" # Default value set by _PyUnicode_Init()
if 0:
# Enable to support locale aware default string encodings.... | def setencoding():
"""Set the string encoding used by the Unicode implementation. The
default is 'ascii', but if you're willing to experiment, you can
change this."""
encoding = "ascii" # Default value set by _PyUnicode_Init()
if 0:
# Enable to support locale aware default string encodings.... | [
"Set",
"the",
"string",
"encoding",
"used",
"by",
"the",
"Unicode",
"implementation",
".",
"The",
"default",
"is",
"ascii",
"but",
"if",
"you",
"re",
"willing",
"to",
"experiment",
"you",
"can",
"change",
"this",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L525-L542 | [
"def",
"setencoding",
"(",
")",
":",
"encoding",
"=",
"\"ascii\"",
"# Default value set by _PyUnicode_Init()",
"if",
"0",
":",
"# Enable to support locale aware default string encodings.",
"import",
"locale",
"loc",
"=",
"locale",
".",
"getdefaultlocale",
"(",
")",
"if",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | force_global_eggs_after_local_site_packages | Force easy_installed eggs in the global environment to get placed
in sys.path after all packages inside the virtualenv. This
maintains the "least surprise" result that packages in the
virtualenv always mask global packages, never the other way
around. | capybara/virtualenv/lib/python2.7/site.py | def force_global_eggs_after_local_site_packages():
"""
Force easy_installed eggs in the global environment to get placed
in sys.path after all packages inside the virtualenv. This
maintains the "least surprise" result that packages in the
virtualenv always mask global packages, never the other way
... | def force_global_eggs_after_local_site_packages():
"""
Force easy_installed eggs in the global environment to get placed
in sys.path after all packages inside the virtualenv. This
maintains the "least surprise" result that packages in the
virtualenv always mask global packages, never the other way
... | [
"Force",
"easy_installed",
"eggs",
"in",
"the",
"global",
"environment",
"to",
"get",
"placed",
"in",
"sys",
".",
"path",
"after",
"all",
"packages",
"inside",
"the",
"virtualenv",
".",
"This",
"maintains",
"the",
"least",
"surprise",
"result",
"that",
"packag... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L627-L640 | [
"def",
"force_global_eggs_after_local_site_packages",
"(",
")",
":",
"egginsert",
"=",
"getattr",
"(",
"sys",
",",
"'__egginsert'",
",",
"0",
")",
"for",
"i",
",",
"path",
"in",
"enumerate",
"(",
"sys",
".",
"path",
")",
":",
"if",
"i",
">",
"egginsert",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | fixclasspath | Adjust the special classpath sys.path entries for Jython. These
entries should follow the base virtualenv lib directories. | capybara/virtualenv/lib/python2.7/site.py | def fixclasspath():
"""Adjust the special classpath sys.path entries for Jython. These
entries should follow the base virtualenv lib directories.
"""
paths = []
classpaths = []
for path in sys.path:
if path == '__classpath__' or path.startswith('__pyclasspath__'):
classpaths.... | def fixclasspath():
"""Adjust the special classpath sys.path entries for Jython. These
entries should follow the base virtualenv lib directories.
"""
paths = []
classpaths = []
for path in sys.path:
if path == '__classpath__' or path.startswith('__pyclasspath__'):
classpaths.... | [
"Adjust",
"the",
"special",
"classpath",
"sys",
".",
"path",
"entries",
"for",
"Jython",
".",
"These",
"entries",
"should",
"follow",
"the",
"base",
"virtualenv",
"lib",
"directories",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site.py#L646-L658 | [
"def",
"fixclasspath",
"(",
")",
":",
"paths",
"=",
"[",
"]",
"classpaths",
"=",
"[",
"]",
"for",
"path",
"in",
"sys",
".",
"path",
":",
"if",
"path",
"==",
"'__classpath__'",
"or",
"path",
".",
"startswith",
"(",
"'__pyclasspath__'",
")",
":",
"classp... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Popen_nonblocking | Open a subprocess without blocking. Return a process handle with any
output streams replaced by queues of lines from that stream.
Usage::
proc = Popen_nonblocking(..., stdout=subprocess.PIPE)
try:
out_line = proc.stdout.get_nowait()
except queue.Empty:
"no output available"
else:
handle_output(out_... | jaraco/util/subprocess.py | def Popen_nonblocking(*args, **kwargs):
"""
Open a subprocess without blocking. Return a process handle with any
output streams replaced by queues of lines from that stream.
Usage::
proc = Popen_nonblocking(..., stdout=subprocess.PIPE)
try:
out_line = proc.stdout.get_nowait()
except queue.Empty:
"no o... | def Popen_nonblocking(*args, **kwargs):
"""
Open a subprocess without blocking. Return a process handle with any
output streams replaced by queues of lines from that stream.
Usage::
proc = Popen_nonblocking(..., stdout=subprocess.PIPE)
try:
out_line = proc.stdout.get_nowait()
except queue.Empty:
"no o... | [
"Open",
"a",
"subprocess",
"without",
"blocking",
".",
"Return",
"a",
"process",
"handle",
"with",
"any",
"output",
"streams",
"replaced",
"by",
"queues",
"of",
"lines",
"from",
"that",
"stream",
"."
] | jaraco/jaraco.util | python | https://github.com/jaraco/jaraco.util/blob/f21071c64f165a5cf844db15e39356e1a47f4b02/jaraco/util/subprocess.py#L17-L52 | [
"def",
"Popen_nonblocking",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"kwargs",
".",
"setdefault",
"(",
"'close_fds'",
",",
"'posix'",
"in",
"sys",
".",
"builtin_module_names",
")",
"kwargs",
".",
"setdefault",
"(",
"'bufsize'",
",",
"1",
")",
... | f21071c64f165a5cf844db15e39356e1a47f4b02 |
test | have_pyrex | Return True if Cython or Pyrex can be imported. | capybara/virtualenv/lib/python2.7/site-packages/setuptools/extension.py | def have_pyrex():
"""
Return True if Cython or Pyrex can be imported.
"""
pyrex_impls = 'Cython.Distutils.build_ext', 'Pyrex.Distutils.build_ext'
for pyrex_impl in pyrex_impls:
try:
# from (pyrex_impl) import build_ext
__import__(pyrex_impl, fromlist=['build_ext']).bu... | def have_pyrex():
"""
Return True if Cython or Pyrex can be imported.
"""
pyrex_impls = 'Cython.Distutils.build_ext', 'Pyrex.Distutils.build_ext'
for pyrex_impl in pyrex_impls:
try:
# from (pyrex_impl) import build_ext
__import__(pyrex_impl, fromlist=['build_ext']).bu... | [
"Return",
"True",
"if",
"Cython",
"or",
"Pyrex",
"can",
"be",
"imported",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/setuptools/extension.py#L15-L27 | [
"def",
"have_pyrex",
"(",
")",
":",
"pyrex_impls",
"=",
"'Cython.Distutils.build_ext'",
",",
"'Pyrex.Distutils.build_ext'",
"for",
"pyrex_impl",
"in",
"pyrex_impls",
":",
"try",
":",
"# from (pyrex_impl) import build_ext",
"__import__",
"(",
"pyrex_impl",
",",
"fromlist",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Extension._convert_pyx_sources_to_lang | Replace sources with .pyx extensions to sources with the target
language extension. This mechanism allows language authors to supply
pre-converted sources but to prefer the .pyx sources. | capybara/virtualenv/lib/python2.7/site-packages/setuptools/extension.py | def _convert_pyx_sources_to_lang(self):
"""
Replace sources with .pyx extensions to sources with the target
language extension. This mechanism allows language authors to supply
pre-converted sources but to prefer the .pyx sources.
"""
if have_pyrex():
# the bu... | def _convert_pyx_sources_to_lang(self):
"""
Replace sources with .pyx extensions to sources with the target
language extension. This mechanism allows language authors to supply
pre-converted sources but to prefer the .pyx sources.
"""
if have_pyrex():
# the bu... | [
"Replace",
"sources",
"with",
".",
"pyx",
"extensions",
"to",
"sources",
"with",
"the",
"target",
"language",
"extension",
".",
"This",
"mechanism",
"allows",
"language",
"authors",
"to",
"supply",
"pre",
"-",
"converted",
"sources",
"but",
"to",
"prefer",
"th... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/setuptools/extension.py#L37-L49 | [
"def",
"_convert_pyx_sources_to_lang",
"(",
"self",
")",
":",
"if",
"have_pyrex",
"(",
")",
":",
"# the build has Cython, so allow it to compile the .pyx files",
"return",
"lang",
"=",
"self",
".",
"language",
"or",
"''",
"target_ext",
"=",
"'.cpp'",
"if",
"lang",
"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | DebuggedApplication.debug_application | Run the application and conserve the traceback frames. | capybara/virtualenv/lib/python2.7/site-packages/werkzeug/debug/__init__.py | def debug_application(self, environ, start_response):
"""Run the application and conserve the traceback frames."""
app_iter = None
try:
app_iter = self.app(environ, start_response)
for item in app_iter:
yield item
if hasattr(app_iter, 'close'):... | def debug_application(self, environ, start_response):
"""Run the application and conserve the traceback frames."""
app_iter = None
try:
app_iter = self.app(environ, start_response)
for item in app_iter:
yield item
if hasattr(app_iter, 'close'):... | [
"Run",
"the",
"application",
"and",
"conserve",
"the",
"traceback",
"frames",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/werkzeug/debug/__init__.py#L84-L124 | [
"def",
"debug_application",
"(",
"self",
",",
"environ",
",",
"start_response",
")",
":",
"app_iter",
"=",
"None",
"try",
":",
"app_iter",
"=",
"self",
".",
"app",
"(",
"environ",
",",
"start_response",
")",
"for",
"item",
"in",
"app_iter",
":",
"yield",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | DebuggedApplication.get_resource | Return a static resource from the shared folder. | capybara/virtualenv/lib/python2.7/site-packages/werkzeug/debug/__init__.py | def get_resource(self, request, filename):
"""Return a static resource from the shared folder."""
filename = join(dirname(__file__), 'shared', basename(filename))
if isfile(filename):
mimetype = mimetypes.guess_type(filename)[0] \
or 'application/octet-stream'
... | def get_resource(self, request, filename):
"""Return a static resource from the shared folder."""
filename = join(dirname(__file__), 'shared', basename(filename))
if isfile(filename):
mimetype = mimetypes.guess_type(filename)[0] \
or 'application/octet-stream'
... | [
"Return",
"a",
"static",
"resource",
"from",
"the",
"shared",
"folder",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/werkzeug/debug/__init__.py#L146-L157 | [
"def",
"get_resource",
"(",
"self",
",",
"request",
",",
"filename",
")",
":",
"filename",
"=",
"join",
"(",
"dirname",
"(",
"__file__",
")",
",",
"'shared'",
",",
"basename",
"(",
"filename",
")",
")",
"if",
"isfile",
"(",
"filename",
")",
":",
"mimet... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | user_agent | Return a string representing the user agent. | capybara/virtualenv/lib/python2.7/site-packages/pip/download.py | def user_agent():
"""
Return a string representing the user agent.
"""
data = {
"installer": {"name": "pip", "version": pip.__version__},
"python": platform.python_version(),
"implementation": {
"name": platform.python_implementation(),
},
}
if data["... | def user_agent():
"""
Return a string representing the user agent.
"""
data = {
"installer": {"name": "pip", "version": pip.__version__},
"python": platform.python_version(),
"implementation": {
"name": platform.python_implementation(),
},
}
if data["... | [
"Return",
"a",
"string",
"representing",
"the",
"user",
"agent",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/download.py#L60-L118 | [
"def",
"user_agent",
"(",
")",
":",
"data",
"=",
"{",
"\"installer\"",
":",
"{",
"\"name\"",
":",
"\"pip\"",
",",
"\"version\"",
":",
"pip",
".",
"__version__",
"}",
",",
"\"python\"",
":",
"platform",
".",
"python_version",
"(",
")",
",",
"\"implementatio... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | get_file_content | Gets the content of a file; it may be a filename, file: URL, or
http: URL. Returns (location, content). Content is unicode. | capybara/virtualenv/lib/python2.7/site-packages/pip/download.py | def get_file_content(url, comes_from=None, session=None):
"""Gets the content of a file; it may be a filename, file: URL, or
http: URL. Returns (location, content). Content is unicode."""
if session is None:
raise TypeError(
"get_file_content() missing 1 required keyword argument: 'ses... | def get_file_content(url, comes_from=None, session=None):
"""Gets the content of a file; it may be a filename, file: URL, or
http: URL. Returns (location, content). Content is unicode."""
if session is None:
raise TypeError(
"get_file_content() missing 1 required keyword argument: 'ses... | [
"Gets",
"the",
"content",
"of",
"a",
"file",
";",
"it",
"may",
"be",
"a",
"filename",
"file",
":",
"URL",
"or",
"http",
":",
"URL",
".",
"Returns",
"(",
"location",
"content",
")",
".",
"Content",
"is",
"unicode",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/download.py#L376-L418 | [
"def",
"get_file_content",
"(",
"url",
",",
"comes_from",
"=",
"None",
",",
"session",
"=",
"None",
")",
":",
"if",
"session",
"is",
"None",
":",
"raise",
"TypeError",
"(",
"\"get_file_content() missing 1 required keyword argument: 'session'\"",
")",
"match",
"=",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | is_url | Returns true if the name looks like a URL | capybara/virtualenv/lib/python2.7/site-packages/pip/download.py | def is_url(name):
"""Returns true if the name looks like a URL"""
if ':' not in name:
return False
scheme = name.split(':', 1)[0].lower()
return scheme in ['http', 'https', 'file', 'ftp'] + vcs.all_schemes | def is_url(name):
"""Returns true if the name looks like a URL"""
if ':' not in name:
return False
scheme = name.split(':', 1)[0].lower()
return scheme in ['http', 'https', 'file', 'ftp'] + vcs.all_schemes | [
"Returns",
"true",
"if",
"the",
"name",
"looks",
"like",
"a",
"URL"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/download.py#L425-L430 | [
"def",
"is_url",
"(",
"name",
")",
":",
"if",
"':'",
"not",
"in",
"name",
":",
"return",
"False",
"scheme",
"=",
"name",
".",
"split",
"(",
"':'",
",",
"1",
")",
"[",
"0",
"]",
".",
"lower",
"(",
")",
"return",
"scheme",
"in",
"[",
"'http'",
",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | unpack_file_url | Unpack link into location.
If download_dir is provided and link points to a file, make a copy
of the link file inside download_dir. | capybara/virtualenv/lib/python2.7/site-packages/pip/download.py | def unpack_file_url(link, location, download_dir=None):
"""Unpack link into location.
If download_dir is provided and link points to a file, make a copy
of the link file inside download_dir."""
link_path = url_to_path(link.url_without_fragment)
# If it's a url to a local directory
if os.path.i... | def unpack_file_url(link, location, download_dir=None):
"""Unpack link into location.
If download_dir is provided and link points to a file, make a copy
of the link file inside download_dir."""
link_path = url_to_path(link.url_without_fragment)
# If it's a url to a local directory
if os.path.i... | [
"Unpack",
"link",
"into",
"location",
".",
"If",
"download_dir",
"is",
"provided",
"and",
"link",
"points",
"to",
"a",
"file",
"make",
"a",
"copy",
"of",
"the",
"link",
"file",
"inside",
"download_dir",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/download.py#L688-L727 | [
"def",
"unpack_file_url",
"(",
"link",
",",
"location",
",",
"download_dir",
"=",
"None",
")",
":",
"link_path",
"=",
"url_to_path",
"(",
"link",
".",
"url_without_fragment",
")",
"# If it's a url to a local directory",
"if",
"os",
".",
"path",
".",
"isdir",
"("... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | _download_http_url | Download link url into temp_dir using provided session | capybara/virtualenv/lib/python2.7/site-packages/pip/download.py | def _download_http_url(link, session, temp_dir):
"""Download link url into temp_dir using provided session"""
target_url = link.url.split('#', 1)[0]
try:
resp = session.get(
target_url,
# We use Accept-Encoding: identity here because requests
# defaults to accepti... | def _download_http_url(link, session, temp_dir):
"""Download link url into temp_dir using provided session"""
target_url = link.url.split('#', 1)[0]
try:
resp = session.get(
target_url,
# We use Accept-Encoding: identity here because requests
# defaults to accepti... | [
"Download",
"link",
"url",
"into",
"temp_dir",
"using",
"provided",
"session"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/download.py#L831-L887 | [
"def",
"_download_http_url",
"(",
"link",
",",
"session",
",",
"temp_dir",
")",
":",
"target_url",
"=",
"link",
".",
"url",
".",
"split",
"(",
"'#'",
",",
"1",
")",
"[",
"0",
"]",
"try",
":",
"resp",
"=",
"session",
".",
"get",
"(",
"target_url",
"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | _check_download_dir | Check download_dir for previously downloaded file with correct hash
If a correct file is found return its path else None | capybara/virtualenv/lib/python2.7/site-packages/pip/download.py | def _check_download_dir(link, download_dir):
""" Check download_dir for previously downloaded file with correct hash
If a correct file is found return its path else None
"""
download_path = os.path.join(download_dir, link.filename)
if os.path.exists(download_path):
# If already downloade... | def _check_download_dir(link, download_dir):
""" Check download_dir for previously downloaded file with correct hash
If a correct file is found return its path else None
"""
download_path = os.path.join(download_dir, link.filename)
if os.path.exists(download_path):
# If already downloade... | [
"Check",
"download_dir",
"for",
"previously",
"downloaded",
"file",
"with",
"correct",
"hash",
"If",
"a",
"correct",
"file",
"is",
"found",
"return",
"its",
"path",
"else",
"None"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/download.py#L890-L911 | [
"def",
"_check_download_dir",
"(",
"link",
",",
"download_dir",
")",
":",
"download_path",
"=",
"os",
".",
"path",
".",
"join",
"(",
"download_dir",
",",
"link",
".",
"filename",
")",
"if",
"os",
".",
"path",
".",
"exists",
"(",
"download_path",
")",
":"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | CurrencyHandler.currencyFormat | Handle currencyFormat subdirectives. | pricing/metaconfigure.py | def currencyFormat(_context, code, symbol, format,
currency_digits=True, decimal_quantization=True,
name=''):
"""Handle currencyFormat subdirectives."""
_context.action(
discriminator=('currency', name, code),
callable=_register_curre... | def currencyFormat(_context, code, symbol, format,
currency_digits=True, decimal_quantization=True,
name=''):
"""Handle currencyFormat subdirectives."""
_context.action(
discriminator=('currency', name, code),
callable=_register_curre... | [
"Handle",
"currencyFormat",
"subdirectives",
"."
] | joeblackwaslike/pricing | python | https://github.com/joeblackwaslike/pricing/blob/be988b0851b4313af81f1db475bc33248700e39c/pricing/metaconfigure.py#L37-L46 | [
"def",
"currencyFormat",
"(",
"_context",
",",
"code",
",",
"symbol",
",",
"format",
",",
"currency_digits",
"=",
"True",
",",
"decimal_quantization",
"=",
"True",
",",
"name",
"=",
"''",
")",
":",
"_context",
".",
"action",
"(",
"discriminator",
"=",
"(",... | be988b0851b4313af81f1db475bc33248700e39c |
test | CurrencyHandler.exchange | Handle exchange subdirectives. | pricing/metaconfigure.py | def exchange(_context, component, backend, base, name=''):
"""Handle exchange subdirectives."""
_context.action(
discriminator=('currency', 'exchange', component),
callable=_register_exchange,
args=(name, component, backend, base)
) | def exchange(_context, component, backend, base, name=''):
"""Handle exchange subdirectives."""
_context.action(
discriminator=('currency', 'exchange', component),
callable=_register_exchange,
args=(name, component, backend, base)
) | [
"Handle",
"exchange",
"subdirectives",
"."
] | joeblackwaslike/pricing | python | https://github.com/joeblackwaslike/pricing/blob/be988b0851b4313af81f1db475bc33248700e39c/pricing/metaconfigure.py#L49-L55 | [
"def",
"exchange",
"(",
"_context",
",",
"component",
",",
"backend",
",",
"base",
",",
"name",
"=",
"''",
")",
":",
"_context",
".",
"action",
"(",
"discriminator",
"=",
"(",
"'currency'",
",",
"'exchange'",
",",
"component",
")",
",",
"callable",
"=",
... | be988b0851b4313af81f1db475bc33248700e39c |
test | print_results | Print the informations from installed distributions found. | capybara/virtualenv/lib/python2.7/site-packages/pip/commands/show.py | def print_results(distributions, list_all_files):
"""
Print the informations from installed distributions found.
"""
results_printed = False
for dist in distributions:
results_printed = True
logger.info("---")
logger.info("Metadata-Version: %s" % dist.get('metadata-version'))... | def print_results(distributions, list_all_files):
"""
Print the informations from installed distributions found.
"""
results_printed = False
for dist in distributions:
results_printed = True
logger.info("---")
logger.info("Metadata-Version: %s" % dist.get('metadata-version'))... | [
"Print",
"the",
"informations",
"from",
"installed",
"distributions",
"found",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/commands/show.py#L101-L130 | [
"def",
"print_results",
"(",
"distributions",
",",
"list_all_files",
")",
":",
"results_printed",
"=",
"False",
"for",
"dist",
"in",
"distributions",
":",
"results_printed",
"=",
"True",
"logger",
".",
"info",
"(",
"\"---\"",
")",
"logger",
".",
"info",
"(",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | HTTPResponse._decode | Decode the data passed in and potentially flush the decoder. | capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py | def _decode(self, data, decode_content, flush_decoder):
"""
Decode the data passed in and potentially flush the decoder.
"""
try:
if decode_content and self._decoder:
data = self._decoder.decompress(data)
except (IOError, zlib.error) as e:
... | def _decode(self, data, decode_content, flush_decoder):
"""
Decode the data passed in and potentially flush the decoder.
"""
try:
if decode_content and self._decoder:
data = self._decoder.decompress(data)
except (IOError, zlib.error) as e:
... | [
"Decode",
"the",
"data",
"passed",
"in",
"and",
"potentially",
"flush",
"the",
"decoder",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py#L186-L203 | [
"def",
"_decode",
"(",
"self",
",",
"data",
",",
"decode_content",
",",
"flush_decoder",
")",
":",
"try",
":",
"if",
"decode_content",
"and",
"self",
".",
"_decoder",
":",
"data",
"=",
"self",
".",
"_decoder",
".",
"decompress",
"(",
"data",
")",
"except... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | HTTPResponse.read | Similar to :meth:`httplib.HTTPResponse.read`, but with two additional
parameters: ``decode_content`` and ``cache_content``.
:param amt:
How much of the content to read. If specified, caching is skipped
because it doesn't make sense to cache partial content as the full
... | capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py | def read(self, amt=None, decode_content=None, cache_content=False):
"""
Similar to :meth:`httplib.HTTPResponse.read`, but with two additional
parameters: ``decode_content`` and ``cache_content``.
:param amt:
How much of the content to read. If specified, caching is skipped
... | def read(self, amt=None, decode_content=None, cache_content=False):
"""
Similar to :meth:`httplib.HTTPResponse.read`, but with two additional
parameters: ``decode_content`` and ``cache_content``.
:param amt:
How much of the content to read. If specified, caching is skipped
... | [
"Similar",
"to",
":",
"meth",
":",
"httplib",
".",
"HTTPResponse",
".",
"read",
"but",
"with",
"two",
"additional",
"parameters",
":",
"decode_content",
"and",
"cache_content",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py#L205-L284 | [
"def",
"read",
"(",
"self",
",",
"amt",
"=",
"None",
",",
"decode_content",
"=",
"None",
",",
"cache_content",
"=",
"False",
")",
":",
"self",
".",
"_init_decoder",
"(",
")",
"if",
"decode_content",
"is",
"None",
":",
"decode_content",
"=",
"self",
".",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | HTTPResponse.stream | A generator wrapper for the read() method. A call will block until
``amt`` bytes have been read from the connection or until the
connection is closed.
:param amt:
How much of the content to read. The generator will return up to
much data per iteration, but may return les... | capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py | def stream(self, amt=2**16, decode_content=None):
"""
A generator wrapper for the read() method. A call will block until
``amt`` bytes have been read from the connection or until the
connection is closed.
:param amt:
How much of the content to read. The generator wil... | def stream(self, amt=2**16, decode_content=None):
"""
A generator wrapper for the read() method. A call will block until
``amt`` bytes have been read from the connection or until the
connection is closed.
:param amt:
How much of the content to read. The generator wil... | [
"A",
"generator",
"wrapper",
"for",
"the",
"read",
"()",
"method",
".",
"A",
"call",
"will",
"block",
"until",
"amt",
"bytes",
"have",
"been",
"read",
"from",
"the",
"connection",
"or",
"until",
"the",
"connection",
"is",
"closed",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py#L286-L310 | [
"def",
"stream",
"(",
"self",
",",
"amt",
"=",
"2",
"**",
"16",
",",
"decode_content",
"=",
"None",
")",
":",
"if",
"self",
".",
"chunked",
":",
"for",
"line",
"in",
"self",
".",
"read_chunked",
"(",
"amt",
",",
"decode_content",
"=",
"decode_content",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | HTTPResponse.read_chunked | Similar to :meth:`HTTPResponse.read`, but with an additional
parameter: ``decode_content``.
:param decode_content:
If True, will attempt to decode the body based on the
'content-encoding' header. | capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py | def read_chunked(self, amt=None, decode_content=None):
"""
Similar to :meth:`HTTPResponse.read`, but with an additional
parameter: ``decode_content``.
:param decode_content:
If True, will attempt to decode the body based on the
'content-encoding' header.
... | def read_chunked(self, amt=None, decode_content=None):
"""
Similar to :meth:`HTTPResponse.read`, but with an additional
parameter: ``decode_content``.
:param decode_content:
If True, will attempt to decode the body based on the
'content-encoding' header.
... | [
"Similar",
"to",
":",
"meth",
":",
"HTTPResponse",
".",
"read",
"but",
"with",
"an",
"additional",
"parameter",
":",
"decode_content",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.py#L425-L466 | [
"def",
"read_chunked",
"(",
"self",
",",
"amt",
"=",
"None",
",",
"decode_content",
"=",
"None",
")",
":",
"self",
".",
"_init_decoder",
"(",
")",
"# FIXME: Rewrite this method and make it a class with a better structured logic.",
"if",
"not",
"self",
".",
"chunked",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | _default_template_ctx_processor | Default template context processor. Injects `request`,
`session` and `g`. | capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py | def _default_template_ctx_processor():
"""Default template context processor. Injects `request`,
`session` and `g`.
"""
reqctx = _request_ctx_stack.top
appctx = _app_ctx_stack.top
rv = {}
if appctx is not None:
rv['g'] = appctx.g
if reqctx is not None:
rv['request'] = re... | def _default_template_ctx_processor():
"""Default template context processor. Injects `request`,
`session` and `g`.
"""
reqctx = _request_ctx_stack.top
appctx = _app_ctx_stack.top
rv = {}
if appctx is not None:
rv['g'] = appctx.g
if reqctx is not None:
rv['request'] = re... | [
"Default",
"template",
"context",
"processor",
".",
"Injects",
"request",
"session",
"and",
"g",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py#L21-L33 | [
"def",
"_default_template_ctx_processor",
"(",
")",
":",
"reqctx",
"=",
"_request_ctx_stack",
".",
"top",
"appctx",
"=",
"_app_ctx_stack",
".",
"top",
"rv",
"=",
"{",
"}",
"if",
"appctx",
"is",
"not",
"None",
":",
"rv",
"[",
"'g'",
"]",
"=",
"appctx",
".... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | _render | Renders the template and fires the signal | capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py | def _render(template, context, app):
"""Renders the template and fires the signal"""
rv = template.render(context)
template_rendered.send(app, template=template, context=context)
return rv | def _render(template, context, app):
"""Renders the template and fires the signal"""
rv = template.render(context)
template_rendered.send(app, template=template, context=context)
return rv | [
"Renders",
"the",
"template",
"and",
"fires",
"the",
"signal"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py#L108-L112 | [
"def",
"_render",
"(",
"template",
",",
"context",
",",
"app",
")",
":",
"rv",
"=",
"template",
".",
"render",
"(",
"context",
")",
"template_rendered",
".",
"send",
"(",
"app",
",",
"template",
"=",
"template",
",",
"context",
"=",
"context",
")",
"re... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | render_template | Renders a template from the template folder with the given
context.
:param template_name_or_list: the name of the template to be
rendered, or an iterable with template names
the first one existing will be rendered
:param context: the varia... | capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py | def render_template(template_name_or_list, **context):
"""Renders a template from the template folder with the given
context.
:param template_name_or_list: the name of the template to be
rendered, or an iterable with template names
the fir... | def render_template(template_name_or_list, **context):
"""Renders a template from the template folder with the given
context.
:param template_name_or_list: the name of the template to be
rendered, or an iterable with template names
the fir... | [
"Renders",
"a",
"template",
"from",
"the",
"template",
"folder",
"with",
"the",
"given",
"context",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py#L115-L128 | [
"def",
"render_template",
"(",
"template_name_or_list",
",",
"*",
"*",
"context",
")",
":",
"ctx",
"=",
"_app_ctx_stack",
".",
"top",
"ctx",
".",
"app",
".",
"update_template_context",
"(",
"context",
")",
"return",
"_render",
"(",
"ctx",
".",
"app",
".",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | render_template_string | Renders a template from the given template source string
with the given context.
:param source: the sourcecode of the template to be
rendered
:param context: the variables that should be available in the
context of the template. | capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py | def render_template_string(source, **context):
"""Renders a template from the given template source string
with the given context.
:param source: the sourcecode of the template to be
rendered
:param context: the variables that should be available in the
context of... | def render_template_string(source, **context):
"""Renders a template from the given template source string
with the given context.
:param source: the sourcecode of the template to be
rendered
:param context: the variables that should be available in the
context of... | [
"Renders",
"a",
"template",
"from",
"the",
"given",
"template",
"source",
"string",
"with",
"the",
"given",
"context",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/flask/templating.py#L131-L143 | [
"def",
"render_template_string",
"(",
"source",
",",
"*",
"*",
"context",
")",
":",
"ctx",
"=",
"_app_ctx_stack",
".",
"top",
"ctx",
".",
"app",
".",
"update_template_context",
"(",
"context",
")",
"return",
"_render",
"(",
"ctx",
".",
"app",
".",
"jinja_e... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | parse_version | Use parse_version from pkg_resources or distutils as available. | capybara/virtualenv/lib/python2.7/site-packages/wheel/install.py | def parse_version(version):
"""Use parse_version from pkg_resources or distutils as available."""
global parse_version
try:
from pkg_resources import parse_version
except ImportError:
from distutils.version import LooseVersion as parse_version
return parse_version(version) | def parse_version(version):
"""Use parse_version from pkg_resources or distutils as available."""
global parse_version
try:
from pkg_resources import parse_version
except ImportError:
from distutils.version import LooseVersion as parse_version
return parse_version(version) | [
"Use",
"parse_version",
"from",
"pkg_resources",
"or",
"distutils",
"as",
"available",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/wheel/install.py#L42-L49 | [
"def",
"parse_version",
"(",
"version",
")",
":",
"global",
"parse_version",
"try",
":",
"from",
"pkg_resources",
"import",
"parse_version",
"except",
"ImportError",
":",
"from",
"distutils",
".",
"version",
"import",
"LooseVersion",
"as",
"parse_version",
"return",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | WheelFile.install | Install the wheel into site-packages. | capybara/virtualenv/lib/python2.7/site-packages/wheel/install.py | def install(self, force=False, overrides={}):
"""
Install the wheel into site-packages.
"""
# Utility to get the target directory for a particular key
def get_path(key):
return overrides.get(key) or self.install_paths[key]
# The base target location is eithe... | def install(self, force=False, overrides={}):
"""
Install the wheel into site-packages.
"""
# Utility to get the target directory for a particular key
def get_path(key):
return overrides.get(key) or self.install_paths[key]
# The base target location is eithe... | [
"Install",
"the",
"wheel",
"into",
"site",
"-",
"packages",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/wheel/install.py#L258-L366 | [
"def",
"install",
"(",
"self",
",",
"force",
"=",
"False",
",",
"overrides",
"=",
"{",
"}",
")",
":",
"# Utility to get the target directory for a particular key",
"def",
"get_path",
"(",
"key",
")",
":",
"return",
"overrides",
".",
"get",
"(",
"key",
")",
"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | WheelFile.verify | Configure the VerifyingZipFile `zipfile` by verifying its signature
and setting expected hashes for every hash in RECORD.
Caller must complete the verification process by completely reading
every file in the archive (e.g. with extractall). | capybara/virtualenv/lib/python2.7/site-packages/wheel/install.py | def verify(self, zipfile=None):
"""Configure the VerifyingZipFile `zipfile` by verifying its signature
and setting expected hashes for every hash in RECORD.
Caller must complete the verification process by completely reading
every file in the archive (e.g. with extractall)."""
... | def verify(self, zipfile=None):
"""Configure the VerifyingZipFile `zipfile` by verifying its signature
and setting expected hashes for every hash in RECORD.
Caller must complete the verification process by completely reading
every file in the archive (e.g. with extractall)."""
... | [
"Configure",
"the",
"VerifyingZipFile",
"zipfile",
"by",
"verifying",
"its",
"signature",
"and",
"setting",
"expected",
"hashes",
"for",
"every",
"hash",
"in",
"RECORD",
".",
"Caller",
"must",
"complete",
"the",
"verification",
"process",
"by",
"completely",
"read... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/wheel/install.py#L368-L410 | [
"def",
"verify",
"(",
"self",
",",
"zipfile",
"=",
"None",
")",
":",
"sig",
"=",
"None",
"if",
"zipfile",
"is",
"None",
":",
"zipfile",
"=",
"self",
".",
"zipfile",
"zipfile",
".",
"strict",
"=",
"True",
"record_name",
"=",
"'/'",
".",
"join",
"(",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Identifiers.is_declared | Check if a name is declared in this or an outer scope. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py | def is_declared(self, name):
"""Check if a name is declared in this or an outer scope."""
if name in self.declared_locally or name in self.declared_parameter:
return True
return name in self.declared | def is_declared(self, name):
"""Check if a name is declared in this or an outer scope."""
if name in self.declared_locally or name in self.declared_parameter:
return True
return name in self.declared | [
"Check",
"if",
"a",
"name",
"is",
"declared",
"in",
"this",
"or",
"an",
"outer",
"scope",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py#L128-L132 | [
"def",
"is_declared",
"(",
"self",
",",
"name",
")",
":",
"if",
"name",
"in",
"self",
".",
"declared_locally",
"or",
"name",
"in",
"self",
".",
"declared_parameter",
":",
"return",
"True",
"return",
"name",
"in",
"self",
".",
"declared"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Frame.inspect | Walk the node and check for identifiers. If the scope is hard (eg:
enforce on a python level) overrides from outer scopes are tracked
differently. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py | def inspect(self, nodes):
"""Walk the node and check for identifiers. If the scope is hard (eg:
enforce on a python level) overrides from outer scopes are tracked
differently.
"""
visitor = FrameIdentifierVisitor(self.identifiers)
for node in nodes:
visitor.v... | def inspect(self, nodes):
"""Walk the node and check for identifiers. If the scope is hard (eg:
enforce on a python level) overrides from outer scopes are tracked
differently.
"""
visitor = FrameIdentifierVisitor(self.identifiers)
for node in nodes:
visitor.v... | [
"Walk",
"the",
"node",
"and",
"check",
"for",
"identifiers",
".",
"If",
"the",
"scope",
"is",
"hard",
"(",
"eg",
":",
"enforce",
"on",
"a",
"python",
"level",
")",
"overrides",
"from",
"outer",
"scopes",
"are",
"tracked",
"differently",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py#L192-L199 | [
"def",
"inspect",
"(",
"self",
",",
"nodes",
")",
":",
"visitor",
"=",
"FrameIdentifierVisitor",
"(",
"self",
".",
"identifiers",
")",
"for",
"node",
"in",
"nodes",
":",
"visitor",
".",
"visit",
"(",
"node",
")"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | FrameIdentifierVisitor.visit_Name | All assignments to names go through this function. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py | def visit_Name(self, node):
"""All assignments to names go through this function."""
if node.ctx == 'store':
self.identifiers.declared_locally.add(node.name)
elif node.ctx == 'param':
self.identifiers.declared_parameter.add(node.name)
elif node.ctx == 'load' and n... | def visit_Name(self, node):
"""All assignments to names go through this function."""
if node.ctx == 'store':
self.identifiers.declared_locally.add(node.name)
elif node.ctx == 'param':
self.identifiers.declared_parameter.add(node.name)
elif node.ctx == 'load' and n... | [
"All",
"assignments",
"to",
"names",
"go",
"through",
"this",
"function",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py#L277-L285 | [
"def",
"visit_Name",
"(",
"self",
",",
"node",
")",
":",
"if",
"node",
".",
"ctx",
"==",
"'store'",
":",
"self",
".",
"identifiers",
".",
"declared_locally",
".",
"add",
"(",
"node",
".",
"name",
")",
"elif",
"node",
".",
"ctx",
"==",
"'param'",
":",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | CodeGenerator.visit_Include | Handles includes. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py | def visit_Include(self, node, frame):
"""Handles includes."""
if node.with_context:
self.unoptimize_scope(frame)
if node.ignore_missing:
self.writeline('try:')
self.indent()
func_name = 'get_or_select_template'
if isinstance(node.template, nod... | def visit_Include(self, node, frame):
"""Handles includes."""
if node.with_context:
self.unoptimize_scope(frame)
if node.ignore_missing:
self.writeline('try:')
self.indent()
func_name = 'get_or_select_template'
if isinstance(node.template, nod... | [
"Handles",
"includes",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py#L922-L963 | [
"def",
"visit_Include",
"(",
"self",
",",
"node",
",",
"frame",
")",
":",
"if",
"node",
".",
"with_context",
":",
"self",
".",
"unoptimize_scope",
"(",
"frame",
")",
"if",
"node",
".",
"ignore_missing",
":",
"self",
".",
"writeline",
"(",
"'try:'",
")",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | CodeGenerator.visit_FromImport | Visit named imports. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py | def visit_FromImport(self, node, frame):
"""Visit named imports."""
self.newline(node)
self.write('included_template = environment.get_template(')
self.visit(node.template, frame)
self.write(', %r).' % self.name)
if node.with_context:
self.write('make_module(c... | def visit_FromImport(self, node, frame):
"""Visit named imports."""
self.newline(node)
self.write('included_template = environment.get_template(')
self.visit(node.template, frame)
self.write(', %r).' % self.name)
if node.with_context:
self.write('make_module(c... | [
"Visit",
"named",
"imports",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/compiler.py#L983-L1034 | [
"def",
"visit_FromImport",
"(",
"self",
",",
"node",
",",
"frame",
")",
":",
"self",
".",
"newline",
"(",
"node",
")",
"self",
".",
"write",
"(",
"'included_template = environment.get_template('",
")",
"self",
".",
"visit",
"(",
"node",
".",
"template",
",",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | make_wheelfile_inner | Create a whl file from all the files under 'base_dir'.
Places .dist-info at the end of the archive. | capybara/virtualenv/lib/python2.7/site-packages/wheel/archive.py | def make_wheelfile_inner(base_name, base_dir='.'):
"""Create a whl file from all the files under 'base_dir'.
Places .dist-info at the end of the archive."""
zip_filename = base_name + ".whl"
log.info("creating '%s' and adding '%s' to it", zip_filename, base_dir)
# XXX support bz2, xz when availa... | def make_wheelfile_inner(base_name, base_dir='.'):
"""Create a whl file from all the files under 'base_dir'.
Places .dist-info at the end of the archive."""
zip_filename = base_name + ".whl"
log.info("creating '%s' and adding '%s' to it", zip_filename, base_dir)
# XXX support bz2, xz when availa... | [
"Create",
"a",
"whl",
"file",
"from",
"all",
"the",
"files",
"under",
"base_dir",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/wheel/archive.py#L25-L61 | [
"def",
"make_wheelfile_inner",
"(",
"base_name",
",",
"base_dir",
"=",
"'.'",
")",
":",
"zip_filename",
"=",
"base_name",
"+",
"\".whl\"",
"log",
".",
"info",
"(",
"\"creating '%s' and adding '%s' to it\"",
",",
"zip_filename",
",",
"base_dir",
")",
"# XXX support b... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | atomize | Decorate a function with a reentrant lock to prevent multiple
threads from calling said thread simultaneously. | jaraco/util/concurrency.py | def atomize(f, lock=None):
"""
Decorate a function with a reentrant lock to prevent multiple
threads from calling said thread simultaneously.
"""
lock = lock or threading.RLock()
@functools.wraps(f)
def exec_atomic(*args, **kwargs):
lock.acquire()
try:
return f(*args, **kwargs)
finally:
... | def atomize(f, lock=None):
"""
Decorate a function with a reentrant lock to prevent multiple
threads from calling said thread simultaneously.
"""
lock = lock or threading.RLock()
@functools.wraps(f)
def exec_atomic(*args, **kwargs):
lock.acquire()
try:
return f(*args, **kwargs)
finally:
... | [
"Decorate",
"a",
"function",
"with",
"a",
"reentrant",
"lock",
"to",
"prevent",
"multiple",
"threads",
"from",
"calling",
"said",
"thread",
"simultaneously",
"."
] | jaraco/jaraco.util | python | https://github.com/jaraco/jaraco.util/blob/f21071c64f165a5cf844db15e39356e1a47f4b02/jaraco/util/concurrency.py#L7-L21 | [
"def",
"atomize",
"(",
"f",
",",
"lock",
"=",
"None",
")",
":",
"lock",
"=",
"lock",
"or",
"threading",
".",
"RLock",
"(",
")",
"@",
"functools",
".",
"wraps",
"(",
"f",
")",
"def",
"exec_atomic",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
... | f21071c64f165a5cf844db15e39356e1a47f4b02 |
test | service_factory | Create service, start server.
:param app: application to instantiate a service
:param host: interface to bound provider
:param port: port to bound provider
:param report_message: message format to report port
:param provider_cls: server class provide a service | service_factory/factory.py | def service_factory(app, host, port,
report_message='service factory port {port}',
provider_cls=HTTPServiceProvider):
"""Create service, start server.
:param app: application to instantiate a service
:param host: interface to bound provider
:param port: port to b... | def service_factory(app, host, port,
report_message='service factory port {port}',
provider_cls=HTTPServiceProvider):
"""Create service, start server.
:param app: application to instantiate a service
:param host: interface to bound provider
:param port: port to b... | [
"Create",
"service",
"start",
"server",
"."
] | proofit404/service-factory | python | https://github.com/proofit404/service-factory/blob/a09d4e097e5599244564a2a7f0611e58efb4156a/service_factory/factory.py#L19-L34 | [
"def",
"service_factory",
"(",
"app",
",",
"host",
",",
"port",
",",
"report_message",
"=",
"'service factory port {port}'",
",",
"provider_cls",
"=",
"HTTPServiceProvider",
")",
":",
"service",
"=",
"Service",
"(",
"app",
")",
"server",
"=",
"provider_cls",
"("... | a09d4e097e5599244564a2a7f0611e58efb4156a |
test | unicode_urlencode | URL escapes a single bytestring or unicode string with the
given charset if applicable to URL safe quoting under all rules
that need to be considered under all supported Python versions.
If non strings are provided they are converted to their unicode
representation first. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/utils.py | def unicode_urlencode(obj, charset='utf-8'):
"""URL escapes a single bytestring or unicode string with the
given charset if applicable to URL safe quoting under all rules
that need to be considered under all supported Python versions.
If non strings are provided they are converted to their unicode
... | def unicode_urlencode(obj, charset='utf-8'):
"""URL escapes a single bytestring or unicode string with the
given charset if applicable to URL safe quoting under all rules
that need to be considered under all supported Python versions.
If non strings are provided they are converted to their unicode
... | [
"URL",
"escapes",
"a",
"single",
"bytestring",
"or",
"unicode",
"string",
"with",
"the",
"given",
"charset",
"if",
"applicable",
"to",
"URL",
"safe",
"quoting",
"under",
"all",
"rules",
"that",
"need",
"to",
"be",
"considered",
"under",
"all",
"supported",
"... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/utils.py#L279-L291 | [
"def",
"unicode_urlencode",
"(",
"obj",
",",
"charset",
"=",
"'utf-8'",
")",
":",
"if",
"not",
"isinstance",
"(",
"obj",
",",
"string_types",
")",
":",
"obj",
"=",
"text_type",
"(",
"obj",
")",
"if",
"isinstance",
"(",
"obj",
",",
"text_type",
")",
":"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | matches_requirement | List of wheels matching a requirement.
:param req: The requirement to satisfy
:param wheels: List of wheels to search. | capybara/virtualenv/lib/python2.7/site-packages/wheel/util.py | def matches_requirement(req, wheels):
"""List of wheels matching a requirement.
:param req: The requirement to satisfy
:param wheels: List of wheels to search.
"""
try:
from pkg_resources import Distribution, Requirement
except ImportError:
raise RuntimeError("Cannot use require... | def matches_requirement(req, wheels):
"""List of wheels matching a requirement.
:param req: The requirement to satisfy
:param wheels: List of wheels to search.
"""
try:
from pkg_resources import Distribution, Requirement
except ImportError:
raise RuntimeError("Cannot use require... | [
"List",
"of",
"wheels",
"matching",
"a",
"requirement",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/wheel/util.py#L127-L146 | [
"def",
"matches_requirement",
"(",
"req",
",",
"wheels",
")",
":",
"try",
":",
"from",
"pkg_resources",
"import",
"Distribution",
",",
"Requirement",
"except",
"ImportError",
":",
"raise",
"RuntimeError",
"(",
"\"Cannot use requirements without pkg_resources\"",
")",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | RequirementCommand.populate_requirement_set | Marshal cmd line args into a requirement set. | capybara/virtualenv/lib/python2.7/site-packages/pip/basecommand.py | def populate_requirement_set(requirement_set, args, options, finder,
session, name, wheel_cache):
"""
Marshal cmd line args into a requirement set.
"""
for req in args:
requirement_set.add_requirement(
InstallRequirement.from_l... | def populate_requirement_set(requirement_set, args, options, finder,
session, name, wheel_cache):
"""
Marshal cmd line args into a requirement set.
"""
for req in args:
requirement_set.add_requirement(
InstallRequirement.from_l... | [
"Marshal",
"cmd",
"line",
"args",
"into",
"a",
"requirement",
"set",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/basecommand.py#L259-L301 | [
"def",
"populate_requirement_set",
"(",
"requirement_set",
",",
"args",
",",
"options",
",",
"finder",
",",
"session",
",",
"name",
",",
"wheel_cache",
")",
":",
"for",
"req",
"in",
"args",
":",
"requirement_set",
".",
"add_requirement",
"(",
"InstallRequirement... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Context.call | Call the callable with the arguments and keyword arguments
provided but inject the active context or environment as first
argument if the callable is a :func:`contextfunction` or
:func:`environmentfunction`. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/runtime.py | def call(__self, __obj, *args, **kwargs):
"""Call the callable with the arguments and keyword arguments
provided but inject the active context or environment as first
argument if the callable is a :func:`contextfunction` or
:func:`environmentfunction`.
"""
if __debug__:
... | def call(__self, __obj, *args, **kwargs):
"""Call the callable with the arguments and keyword arguments
provided but inject the active context or environment as first
argument if the callable is a :func:`contextfunction` or
:func:`environmentfunction`.
"""
if __debug__:
... | [
"Call",
"the",
"callable",
"with",
"the",
"arguments",
"and",
"keyword",
"arguments",
"provided",
"but",
"inject",
"the",
"active",
"context",
"or",
"environment",
"as",
"first",
"argument",
"if",
"the",
"callable",
"is",
"a",
":",
"func",
":",
"contextfunctio... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/runtime.py#L167-L197 | [
"def",
"call",
"(",
"__self",
",",
"__obj",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"if",
"__debug__",
":",
"__traceback_hide__",
"=",
"True",
"# Allow callable classes to take a context",
"fn",
"=",
"__obj",
".",
"__call__",
"for",
"fn_type",
"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Bazaar.export | Export the Bazaar repository at the url to the destination location | capybara/virtualenv/lib/python2.7/site-packages/pip/vcs/bazaar.py | def export(self, location):
"""
Export the Bazaar repository at the url to the destination location
"""
temp_dir = tempfile.mkdtemp('-export', 'pip-')
self.unpack(temp_dir)
if os.path.exists(location):
# Remove the location to make sure Bazaar can export it co... | def export(self, location):
"""
Export the Bazaar repository at the url to the destination location
"""
temp_dir = tempfile.mkdtemp('-export', 'pip-')
self.unpack(temp_dir)
if os.path.exists(location):
# Remove the location to make sure Bazaar can export it co... | [
"Export",
"the",
"Bazaar",
"repository",
"at",
"the",
"url",
"to",
"the",
"destination",
"location"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/vcs/bazaar.py#L39-L52 | [
"def",
"export",
"(",
"self",
",",
"location",
")",
":",
"temp_dir",
"=",
"tempfile",
".",
"mkdtemp",
"(",
"'-export'",
",",
"'pip-'",
")",
"self",
".",
"unpack",
"(",
"temp_dir",
")",
"if",
"os",
".",
"path",
".",
"exists",
"(",
"location",
")",
":"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | pip_version_check | Check for an update for pip.
Limit the frequency of checks to once per week. State is stored either in
the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix
of the pip script path. | capybara/virtualenv/lib/python2.7/site-packages/pip/utils/outdated.py | def pip_version_check(session):
"""Check for an update for pip.
Limit the frequency of checks to once per week. State is stored either in
the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix
of the pip script path.
"""
import pip # imported here to prevent circular import... | def pip_version_check(session):
"""Check for an update for pip.
Limit the frequency of checks to once per week. State is stored either in
the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix
of the pip script path.
"""
import pip # imported here to prevent circular import... | [
"Check",
"for",
"an",
"update",
"for",
"pip",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/utils/outdated.py#L95-L160 | [
"def",
"pip_version_check",
"(",
"session",
")",
":",
"import",
"pip",
"# imported here to prevent circular imports",
"pypi_version",
"=",
"None",
"try",
":",
"state",
"=",
"load_selfcheck_statefile",
"(",
")",
"current_time",
"=",
"datetime",
".",
"datetime",
".",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonAPI.lookup | Lookup an Amazon Product.
:return:
An instance of :class:`~.AmazonProduct` if one item was returned,
or a list of :class:`~.AmazonProduct` instances if multiple
items where returned. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def lookup(self, ResponseGroup="Large", **kwargs):
"""Lookup an Amazon Product.
:return:
An instance of :class:`~.AmazonProduct` if one item was returned,
or a list of :class:`~.AmazonProduct` instances if multiple
items where returned.
"""
response... | def lookup(self, ResponseGroup="Large", **kwargs):
"""Lookup an Amazon Product.
:return:
An instance of :class:`~.AmazonProduct` if one item was returned,
or a list of :class:`~.AmazonProduct` instances if multiple
items where returned.
"""
response... | [
"Lookup",
"an",
"Amazon",
"Product",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L101-L133 | [
"def",
"lookup",
"(",
"self",
",",
"ResponseGroup",
"=",
"\"Large\"",
",",
"*",
"*",
"kwargs",
")",
":",
"response",
"=",
"self",
".",
"api",
".",
"ItemLookup",
"(",
"ResponseGroup",
"=",
"ResponseGroup",
",",
"*",
"*",
"kwargs",
")",
"root",
"=",
"obj... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonSearch.iterate_pages | Iterate Pages.
A generator which iterates over all pages.
Keep in mind that Amazon limits the number of pages it makes available.
:return:
Yields lxml root elements. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def iterate_pages(self):
"""Iterate Pages.
A generator which iterates over all pages.
Keep in mind that Amazon limits the number of pages it makes available.
:return:
Yields lxml root elements.
"""
try:
while True:
yield self._que... | def iterate_pages(self):
"""Iterate Pages.
A generator which iterates over all pages.
Keep in mind that Amazon limits the number of pages it makes available.
:return:
Yields lxml root elements.
"""
try:
while True:
yield self._que... | [
"Iterate",
"Pages",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L239-L253 | [
"def",
"iterate_pages",
"(",
"self",
")",
":",
"try",
":",
"while",
"True",
":",
"yield",
"self",
".",
"_query",
"(",
"ItemPage",
"=",
"self",
".",
"current_page",
",",
"*",
"*",
"self",
".",
"kwargs",
")",
"self",
".",
"current_page",
"+=",
"1",
"ex... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonSearch._query | Query.
Query Amazon search and check for errors.
:return:
An lxml root element. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def _query(self, ResponseGroup="Large", **kwargs):
"""Query.
Query Amazon search and check for errors.
:return:
An lxml root element.
"""
response = self.api.ItemSearch(ResponseGroup=ResponseGroup, **kwargs)
root = objectify.fromstring(response)
if r... | def _query(self, ResponseGroup="Large", **kwargs):
"""Query.
Query Amazon search and check for errors.
:return:
An lxml root element.
"""
response = self.api.ItemSearch(ResponseGroup=ResponseGroup, **kwargs)
root = objectify.fromstring(response)
if r... | [
"Query",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L255-L273 | [
"def",
"_query",
"(",
"self",
",",
"ResponseGroup",
"=",
"\"Large\"",
",",
"*",
"*",
"kwargs",
")",
":",
"response",
"=",
"self",
".",
"api",
".",
"ItemSearch",
"(",
"ResponseGroup",
"=",
"ResponseGroup",
",",
"*",
"*",
"kwargs",
")",
"root",
"=",
"obj... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonBrowseNode.ancestor | This browse node's immediate ancestor in the browse node tree.
:return:
The ancestor as an :class:`~.AmazonBrowseNode`, or None. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def ancestor(self):
"""This browse node's immediate ancestor in the browse node tree.
:return:
The ancestor as an :class:`~.AmazonBrowseNode`, or None.
"""
ancestors = getattr(self.element, 'Ancestors', None)
if hasattr(ancestors, 'BrowseNode'):
return Am... | def ancestor(self):
"""This browse node's immediate ancestor in the browse node tree.
:return:
The ancestor as an :class:`~.AmazonBrowseNode`, or None.
"""
ancestors = getattr(self.element, 'Ancestors', None)
if hasattr(ancestors, 'BrowseNode'):
return Am... | [
"This",
"browse",
"node",
"s",
"immediate",
"ancestor",
"in",
"the",
"browse",
"node",
"tree",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L311-L320 | [
"def",
"ancestor",
"(",
"self",
")",
":",
"ancestors",
"=",
"getattr",
"(",
"self",
".",
"element",
",",
"'Ancestors'",
",",
"None",
")",
"if",
"hasattr",
"(",
"ancestors",
",",
"'BrowseNode'",
")",
":",
"return",
"AmazonBrowseNode",
"(",
"ancestors",
"[",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonBrowseNode.children | This browse node's children in the browse node tree.
:return:
A list of this browse node's children in the browse node tree. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def children(self):
"""This browse node's children in the browse node tree.
:return:
A list of this browse node's children in the browse node tree.
"""
children = []
child_nodes = getattr(self.element, 'Children')
for child in getattr(child_nodes, 'BrowseNode', []):
... | def children(self):
"""This browse node's children in the browse node tree.
:return:
A list of this browse node's children in the browse node tree.
"""
children = []
child_nodes = getattr(self.element, 'Children')
for child in getattr(child_nodes, 'BrowseNode', []):
... | [
"This",
"browse",
"node",
"s",
"children",
"in",
"the",
"browse",
"node",
"tree",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L337-L347 | [
"def",
"children",
"(",
"self",
")",
":",
"children",
"=",
"[",
"]",
"child_nodes",
"=",
"getattr",
"(",
"self",
".",
"element",
",",
"'Children'",
")",
"for",
"child",
"in",
"getattr",
"(",
"child_nodes",
",",
"'BrowseNode'",
",",
"[",
"]",
")",
":",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonProduct._safe_get_element | Safe Get Element.
Get a child element of root (multiple levels deep) failing silently
if any descendant does not exist.
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').
:return:
Element or None. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def _safe_get_element(self, path, root=None):
"""Safe Get Element.
Get a child element of root (multiple levels deep) failing silently
if any descendant does not exist.
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').... | def _safe_get_element(self, path, root=None):
"""Safe Get Element.
Get a child element of root (multiple levels deep) failing silently
if any descendant does not exist.
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').... | [
"Safe",
"Get",
"Element",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L374-L393 | [
"def",
"_safe_get_element",
"(",
"self",
",",
"path",
",",
"root",
"=",
"None",
")",
":",
"elements",
"=",
"path",
".",
"split",
"(",
"'.'",
")",
"parent",
"=",
"root",
"if",
"root",
"is",
"not",
"None",
"else",
"self",
".",
"item",
"for",
"element",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonProduct._safe_get_element_text | Safe get element text.
Get element as string or None,
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').
:return:
String or None. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def _safe_get_element_text(self, path, root=None):
"""Safe get element text.
Get element as string or None,
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').
:return:
String or None.
"""
elem... | def _safe_get_element_text(self, path, root=None):
"""Safe get element text.
Get element as string or None,
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').
:return:
String or None.
"""
elem... | [
"Safe",
"get",
"element",
"text",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L395-L410 | [
"def",
"_safe_get_element_text",
"(",
"self",
",",
"path",
",",
"root",
"=",
"None",
")",
":",
"element",
"=",
"self",
".",
"_safe_get_element",
"(",
"path",
",",
"root",
")",
"if",
"element",
":",
"return",
"element",
".",
"text",
"else",
":",
"return",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonProduct._safe_get_element_date | Safe get elemnent date.
Get element as datetime.date or None,
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').
:return:
datetime.date or None. | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def _safe_get_element_date(self, path, root=None):
"""Safe get elemnent date.
Get element as datetime.date or None,
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').
:return:
datetime.date or None.
"... | def _safe_get_element_date(self, path, root=None):
"""Safe get elemnent date.
Get element as datetime.date or None,
:param root:
Lxml element.
:param path:
String path (i.e. 'Items.Item.Offers.Offer').
:return:
datetime.date or None.
"... | [
"Safe",
"get",
"elemnent",
"date",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L412-L430 | [
"def",
"_safe_get_element_date",
"(",
"self",
",",
"path",
",",
"root",
"=",
"None",
")",
":",
"value",
"=",
"self",
".",
"_safe_get_element_text",
"(",
"path",
"=",
"path",
",",
"root",
"=",
"root",
")",
"if",
"value",
"is",
"not",
"None",
":",
"try",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonProduct.price_and_currency | Get Offer Price and Currency.
Return price according to the following process:
* If product has a sale return Sales Price, otherwise,
* Return Price, otherwise,
* Return lowest offer price, otherwise,
* Return None.
:return:
A tuple containing:
... | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def price_and_currency(self):
"""Get Offer Price and Currency.
Return price according to the following process:
* If product has a sale return Sales Price, otherwise,
* Return Price, otherwise,
* Return lowest offer price, otherwise,
* Return None.
:return:
... | def price_and_currency(self):
"""Get Offer Price and Currency.
Return price according to the following process:
* If product has a sale return Sales Price, otherwise,
* Return Price, otherwise,
* Return lowest offer price, otherwise,
* Return None.
:return:
... | [
"Get",
"Offer",
"Price",
"and",
"Currency",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L433-L468 | [
"def",
"price_and_currency",
"(",
"self",
")",
":",
"price",
"=",
"self",
".",
"_safe_get_element_text",
"(",
"'Offers.Offer.OfferListing.SalePrice.Amount'",
")",
"if",
"price",
":",
"currency",
"=",
"self",
".",
"_safe_get_element_text",
"(",
"'Offers.Offer.OfferListin... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | AmazonProduct.list_price | List Price.
:return:
A tuple containing:
1. Float representation of price.
2. ISO Currency code (string). | capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py | def list_price(self):
"""List Price.
:return:
A tuple containing:
1. Float representation of price.
2. ISO Currency code (string).
"""
price = self._safe_get_element_text('ItemAttributes.ListPrice.Amount')
currency = self._safe_get_el... | def list_price(self):
"""List Price.
:return:
A tuple containing:
1. Float representation of price.
2. ISO Currency code (string).
"""
price = self._safe_get_element_text('ItemAttributes.ListPrice.Amount')
currency = self._safe_get_el... | [
"List",
"Price",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/amazon/api.py#L780-L795 | [
"def",
"list_price",
"(",
"self",
")",
":",
"price",
"=",
"self",
".",
"_safe_get_element_text",
"(",
"'ItemAttributes.ListPrice.Amount'",
")",
"currency",
"=",
"self",
".",
"_safe_get_element_text",
"(",
"'ItemAttributes.ListPrice.CurrencyCode'",
")",
"if",
"price",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | CacheControlAdapter.send | Send a request. Use the request information to see if it
exists in the cache and cache the response if we need to and can. | capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.py | def send(self, request, **kw):
"""
Send a request. Use the request information to see if it
exists in the cache and cache the response if we need to and can.
"""
if request.method == 'GET':
cached_response = self.controller.cached_request(request)
if cache... | def send(self, request, **kw):
"""
Send a request. Use the request information to see if it
exists in the cache and cache the response if we need to and can.
"""
if request.method == 'GET':
cached_response = self.controller.cached_request(request)
if cache... | [
"Send",
"a",
"request",
".",
"Use",
"the",
"request",
"information",
"to",
"see",
"if",
"it",
"exists",
"in",
"the",
"cache",
"and",
"cache",
"the",
"response",
"if",
"we",
"need",
"to",
"and",
"can",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.py#L30-L48 | [
"def",
"send",
"(",
"self",
",",
"request",
",",
"*",
"*",
"kw",
")",
":",
"if",
"request",
".",
"method",
"==",
"'GET'",
":",
"cached_response",
"=",
"self",
".",
"controller",
".",
"cached_request",
"(",
"request",
")",
"if",
"cached_response",
":",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | CacheControlAdapter.build_response | Build a response by making a request or using the cache.
This will end up calling send and returning a potentially
cached response | capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.py | def build_response(self, request, response, from_cache=False):
"""
Build a response by making a request or using the cache.
This will end up calling send and returning a potentially
cached response
"""
if not from_cache and request.method == 'GET':
# apply a... | def build_response(self, request, response, from_cache=False):
"""
Build a response by making a request or using the cache.
This will end up calling send and returning a potentially
cached response
"""
if not from_cache and request.method == 'GET':
# apply a... | [
"Build",
"a",
"response",
"by",
"making",
"a",
"request",
"or",
"using",
"the",
"cache",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.py#L50-L113 | [
"def",
"build_response",
"(",
"self",
",",
"request",
",",
"response",
",",
"from_cache",
"=",
"False",
")",
":",
"if",
"not",
"from_cache",
"and",
"request",
".",
"method",
"==",
"'GET'",
":",
"# apply any expiration heuristics",
"if",
"response",
".",
"statu... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | make_attrgetter | Returns a callable that looks up the given attribute from a
passed object with the rules of the environment. Dots are allowed
to access attributes of attributes. Integer parts in paths are
looked up as integers. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py | def make_attrgetter(environment, attribute):
"""Returns a callable that looks up the given attribute from a
passed object with the rules of the environment. Dots are allowed
to access attributes of attributes. Integer parts in paths are
looked up as integers.
"""
if not isinstance(attribute, s... | def make_attrgetter(environment, attribute):
"""Returns a callable that looks up the given attribute from a
passed object with the rules of the environment. Dots are allowed
to access attributes of attributes. Integer parts in paths are
looked up as integers.
"""
if not isinstance(attribute, s... | [
"Returns",
"a",
"callable",
"that",
"looks",
"up",
"the",
"given",
"attribute",
"from",
"a",
"passed",
"object",
"with",
"the",
"rules",
"of",
"the",
"environment",
".",
"Dots",
"are",
"allowed",
"to",
"access",
"attributes",
"of",
"attributes",
".",
"Intege... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py#L54-L70 | [
"def",
"make_attrgetter",
"(",
"environment",
",",
"attribute",
")",
":",
"if",
"not",
"isinstance",
"(",
"attribute",
",",
"string_types",
")",
"or",
"(",
"'.'",
"not",
"in",
"attribute",
"and",
"not",
"attribute",
".",
"isdigit",
"(",
")",
")",
":",
"r... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | do_title | Return a titlecased version of the value. I.e. words will start with
uppercase letters, all remaining characters are lowercase. | capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py | def do_title(s):
"""Return a titlecased version of the value. I.e. words will start with
uppercase letters, all remaining characters are lowercase.
"""
rv = []
for item in re.compile(r'([-\s]+)(?u)').split(s):
if not item:
continue
rv.append(item[0].upper() + item[1:].low... | def do_title(s):
"""Return a titlecased version of the value. I.e. words will start with
uppercase letters, all remaining characters are lowercase.
"""
rv = []
for item in re.compile(r'([-\s]+)(?u)').split(s):
if not item:
continue
rv.append(item[0].upper() + item[1:].low... | [
"Return",
"a",
"titlecased",
"version",
"of",
"the",
"value",
".",
"I",
".",
"e",
".",
"words",
"will",
"start",
"with",
"uppercase",
"letters",
"all",
"remaining",
"characters",
"are",
"lowercase",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py#L181-L190 | [
"def",
"do_title",
"(",
"s",
")",
":",
"rv",
"=",
"[",
"]",
"for",
"item",
"in",
"re",
".",
"compile",
"(",
"r'([-\\s]+)(?u)'",
")",
".",
"split",
"(",
"s",
")",
":",
"if",
"not",
"item",
":",
"continue",
"rv",
".",
"append",
"(",
"item",
"[",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | do_dictsort | Sort a dict and yield (key, value) pairs. Because python dicts are
unsorted you may want to use this function to order them by either
key or value:
.. sourcecode:: jinja
{% for item in mydict|dictsort %}
sort the dict by key, case insensitive
{% for item in mydict|dictsort(tru... | capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py | def do_dictsort(value, case_sensitive=False, by='key'):
"""Sort a dict and yield (key, value) pairs. Because python dicts are
unsorted you may want to use this function to order them by either
key or value:
.. sourcecode:: jinja
{% for item in mydict|dictsort %}
sort the dict by ke... | def do_dictsort(value, case_sensitive=False, by='key'):
"""Sort a dict and yield (key, value) pairs. Because python dicts are
unsorted you may want to use this function to order them by either
key or value:
.. sourcecode:: jinja
{% for item in mydict|dictsort %}
sort the dict by ke... | [
"Sort",
"a",
"dict",
"and",
"yield",
"(",
"key",
"value",
")",
"pairs",
".",
"Because",
"python",
"dicts",
"are",
"unsorted",
"you",
"may",
"want",
"to",
"use",
"this",
"function",
"to",
"order",
"them",
"by",
"either",
"key",
"or",
"value",
":"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py#L193-L223 | [
"def",
"do_dictsort",
"(",
"value",
",",
"case_sensitive",
"=",
"False",
",",
"by",
"=",
"'key'",
")",
":",
"if",
"by",
"==",
"'key'",
":",
"pos",
"=",
"0",
"elif",
"by",
"==",
"'value'",
":",
"pos",
"=",
"1",
"else",
":",
"raise",
"FilterArgumentErr... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | do_sort | Sort an iterable. Per default it sorts ascending, if you pass it
true as first argument it will reverse the sorting.
If the iterable is made of strings the third parameter can be used to
control the case sensitiveness of the comparison which is disabled by
default.
.. sourcecode:: jinja
... | capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py | def do_sort(environment, value, reverse=False, case_sensitive=False,
attribute=None):
"""Sort an iterable. Per default it sorts ascending, if you pass it
true as first argument it will reverse the sorting.
If the iterable is made of strings the third parameter can be used to
control the ca... | def do_sort(environment, value, reverse=False, case_sensitive=False,
attribute=None):
"""Sort an iterable. Per default it sorts ascending, if you pass it
true as first argument it will reverse the sorting.
If the iterable is made of strings the third parameter can be used to
control the ca... | [
"Sort",
"an",
"iterable",
".",
"Per",
"default",
"it",
"sorts",
"ascending",
"if",
"you",
"pass",
"it",
"true",
"as",
"first",
"argument",
"it",
"will",
"reverse",
"the",
"sorting",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py#L227-L265 | [
"def",
"do_sort",
"(",
"environment",
",",
"value",
",",
"reverse",
"=",
"False",
",",
"case_sensitive",
"=",
"False",
",",
"attribute",
"=",
"None",
")",
":",
"if",
"not",
"case_sensitive",
":",
"def",
"sort_func",
"(",
"item",
")",
":",
"if",
"isinstan... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | do_groupby | Group a sequence of objects by a common attribute.
If you for example have a list of dicts or objects that represent persons
with `gender`, `first_name` and `last_name` attributes and you want to
group all users by genders you can do something like the following
snippet:
.. sourcecode:: html+jinja... | capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py | def do_groupby(environment, value, attribute):
"""Group a sequence of objects by a common attribute.
If you for example have a list of dicts or objects that represent persons
with `gender`, `first_name` and `last_name` attributes and you want to
group all users by genders you can do something like the ... | def do_groupby(environment, value, attribute):
"""Group a sequence of objects by a common attribute.
If you for example have a list of dicts or objects that represent persons
with `gender`, `first_name` and `last_name` attributes and you want to
group all users by genders you can do something like the ... | [
"Group",
"a",
"sequence",
"of",
"objects",
"by",
"a",
"common",
"attribute",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py#L663-L702 | [
"def",
"do_groupby",
"(",
"environment",
",",
"value",
",",
"attribute",
")",
":",
"expr",
"=",
"make_attrgetter",
"(",
"environment",
",",
"attribute",
")",
"return",
"sorted",
"(",
"map",
"(",
"_GroupTuple",
",",
"groupby",
"(",
"sorted",
"(",
"value",
"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | do_map | Applies a filter on a sequence of objects or looks up an attribute.
This is useful when dealing with lists of objects but you are really
only interested in a certain value of it.
The basic usage is mapping on an attribute. Imagine you have a list
of users but you are only interested in a list of usern... | capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py | def do_map(*args, **kwargs):
"""Applies a filter on a sequence of objects or looks up an attribute.
This is useful when dealing with lists of objects but you are really
only interested in a certain value of it.
The basic usage is mapping on an attribute. Imagine you have a list
of users but you ar... | def do_map(*args, **kwargs):
"""Applies a filter on a sequence of objects or looks up an attribute.
This is useful when dealing with lists of objects but you are really
only interested in a certain value of it.
The basic usage is mapping on an attribute. Imagine you have a list
of users but you ar... | [
"Applies",
"a",
"filter",
"on",
"a",
"sequence",
"of",
"objects",
"or",
"looks",
"up",
"an",
"attribute",
".",
"This",
"is",
"useful",
"when",
"dealing",
"with",
"lists",
"of",
"objects",
"but",
"you",
"are",
"really",
"only",
"interested",
"in",
"a",
"c... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/jinja2/filters.py#L798-L840 | [
"def",
"do_map",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"context",
"=",
"args",
"[",
"0",
"]",
"seq",
"=",
"args",
"[",
"1",
"]",
"if",
"len",
"(",
"args",
")",
"==",
"2",
"and",
"'attribute'",
"in",
"kwargs",
":",
"attribute",
"=... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | create_logger | Creates a logger for the given application. This logger works
similar to a regular Python logger but changes the effective logging
level based on the application's debug flag. Furthermore this
function also removes all attached handlers in case there was a
logger with the log name before. | capybara/virtualenv/lib/python2.7/site-packages/flask/logging.py | def create_logger(app):
"""Creates a logger for the given application. This logger works
similar to a regular Python logger but changes the effective logging
level based on the application's debug flag. Furthermore this
function also removes all attached handlers in case there was a
logger with th... | def create_logger(app):
"""Creates a logger for the given application. This logger works
similar to a regular Python logger but changes the effective logging
level based on the application's debug flag. Furthermore this
function also removes all attached handlers in case there was a
logger with th... | [
"Creates",
"a",
"logger",
"for",
"the",
"given",
"application",
".",
"This",
"logger",
"works",
"similar",
"to",
"a",
"regular",
"Python",
"logger",
"but",
"changes",
"the",
"effective",
"logging",
"level",
"based",
"on",
"the",
"application",
"s",
"debug",
... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/flask/logging.py#L17-L45 | [
"def",
"create_logger",
"(",
"app",
")",
":",
"Logger",
"=",
"getLoggerClass",
"(",
")",
"class",
"DebugLogger",
"(",
"Logger",
")",
":",
"def",
"getEffectiveLevel",
"(",
"x",
")",
":",
"if",
"x",
".",
"level",
"==",
"0",
"and",
"app",
".",
"debug",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | constant_time_compare | Returns True if the two strings are equal, False otherwise.
The time taken is independent of the number of characters that match. Do
not use this function for anything else than comparision with known
length targets.
This is should be implemented in C in order to get it completely right. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def constant_time_compare(val1, val2):
"""Returns True if the two strings are equal, False otherwise.
The time taken is independent of the number of characters that match. Do
not use this function for anything else than comparision with known
length targets.
This is should be implemented in C in ... | def constant_time_compare(val1, val2):
"""Returns True if the two strings are equal, False otherwise.
The time taken is independent of the number of characters that match. Do
not use this function for anything else than comparision with known
length targets.
This is should be implemented in C in ... | [
"Returns",
"True",
"if",
"the",
"two",
"strings",
"are",
"equal",
"False",
"otherwise",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L77-L97 | [
"def",
"constant_time_compare",
"(",
"val1",
",",
"val2",
")",
":",
"if",
"_builtin_constant_time_compare",
"is",
"not",
"None",
":",
"return",
"_builtin_constant_time_compare",
"(",
"val1",
",",
"val2",
")",
"len_eq",
"=",
"len",
"(",
"val1",
")",
"==",
"len"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | base64_encode | base64 encodes a single bytestring (and is tolerant to getting
called with a unicode string).
The resulting bytestring is safe for putting into URLs. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def base64_encode(string):
"""base64 encodes a single bytestring (and is tolerant to getting
called with a unicode string).
The resulting bytestring is safe for putting into URLs.
"""
string = want_bytes(string)
return base64.urlsafe_b64encode(string).strip(b'=') | def base64_encode(string):
"""base64 encodes a single bytestring (and is tolerant to getting
called with a unicode string).
The resulting bytestring is safe for putting into URLs.
"""
string = want_bytes(string)
return base64.urlsafe_b64encode(string).strip(b'=') | [
"base64",
"encodes",
"a",
"single",
"bytestring",
"(",
"and",
"is",
"tolerant",
"to",
"getting",
"called",
"with",
"a",
"unicode",
"string",
")",
".",
"The",
"resulting",
"bytestring",
"is",
"safe",
"for",
"putting",
"into",
"URLs",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L201-L207 | [
"def",
"base64_encode",
"(",
"string",
")",
":",
"string",
"=",
"want_bytes",
"(",
"string",
")",
"return",
"base64",
".",
"urlsafe_b64encode",
"(",
"string",
")",
".",
"strip",
"(",
"b'='",
")"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | base64_decode | base64 decodes a single bytestring (and is tolerant to getting
called with a unicode string).
The result is also a bytestring. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def base64_decode(string):
"""base64 decodes a single bytestring (and is tolerant to getting
called with a unicode string).
The result is also a bytestring.
"""
string = want_bytes(string, encoding='ascii', errors='ignore')
return base64.urlsafe_b64decode(string + b'=' * (-len(string) % 4)) | def base64_decode(string):
"""base64 decodes a single bytestring (and is tolerant to getting
called with a unicode string).
The result is also a bytestring.
"""
string = want_bytes(string, encoding='ascii', errors='ignore')
return base64.urlsafe_b64decode(string + b'=' * (-len(string) % 4)) | [
"base64",
"decodes",
"a",
"single",
"bytestring",
"(",
"and",
"is",
"tolerant",
"to",
"getting",
"called",
"with",
"a",
"unicode",
"string",
")",
".",
"The",
"result",
"is",
"also",
"a",
"bytestring",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L210-L216 | [
"def",
"base64_decode",
"(",
"string",
")",
":",
"string",
"=",
"want_bytes",
"(",
"string",
",",
"encoding",
"=",
"'ascii'",
",",
"errors",
"=",
"'ignore'",
")",
"return",
"base64",
".",
"urlsafe_b64decode",
"(",
"string",
"+",
"b'='",
"*",
"(",
"-",
"l... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | SigningAlgorithm.verify_signature | Verifies the given signature matches the expected signature | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def verify_signature(self, key, value, sig):
"""Verifies the given signature matches the expected signature"""
return constant_time_compare(sig, self.get_signature(key, value)) | def verify_signature(self, key, value, sig):
"""Verifies the given signature matches the expected signature"""
return constant_time_compare(sig, self.get_signature(key, value)) | [
"Verifies",
"the",
"given",
"signature",
"matches",
"the",
"expected",
"signature"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L241-L243 | [
"def",
"verify_signature",
"(",
"self",
",",
"key",
",",
"value",
",",
"sig",
")",
":",
"return",
"constant_time_compare",
"(",
"sig",
",",
"self",
".",
"get_signature",
"(",
"key",
",",
"value",
")",
")"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Signer.derive_key | This method is called to derive the key. If you're unhappy with
the default key derivation choices you can override them here.
Keep in mind that the key derivation in itsdangerous is not intended
to be used as a security method to make a complex key out of a short
password. Instead you... | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def derive_key(self):
"""This method is called to derive the key. If you're unhappy with
the default key derivation choices you can override them here.
Keep in mind that the key derivation in itsdangerous is not intended
to be used as a security method to make a complex key out of a sho... | def derive_key(self):
"""This method is called to derive the key. If you're unhappy with
the default key derivation choices you can override them here.
Keep in mind that the key derivation in itsdangerous is not intended
to be used as a security method to make a complex key out of a sho... | [
"This",
"method",
"is",
"called",
"to",
"derive",
"the",
"key",
".",
"If",
"you",
"re",
"unhappy",
"with",
"the",
"default",
"key",
"derivation",
"choices",
"you",
"can",
"override",
"them",
"here",
".",
"Keep",
"in",
"mind",
"that",
"the",
"key",
"deriv... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L322-L342 | [
"def",
"derive_key",
"(",
"self",
")",
":",
"salt",
"=",
"want_bytes",
"(",
"self",
".",
"salt",
")",
"if",
"self",
".",
"key_derivation",
"==",
"'concat'",
":",
"return",
"self",
".",
"digest_method",
"(",
"salt",
"+",
"self",
".",
"secret_key",
")",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Signer.get_signature | Returns the signature for the given value | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def get_signature(self, value):
"""Returns the signature for the given value"""
value = want_bytes(value)
key = self.derive_key()
sig = self.algorithm.get_signature(key, value)
return base64_encode(sig) | def get_signature(self, value):
"""Returns the signature for the given value"""
value = want_bytes(value)
key = self.derive_key()
sig = self.algorithm.get_signature(key, value)
return base64_encode(sig) | [
"Returns",
"the",
"signature",
"for",
"the",
"given",
"value"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L344-L349 | [
"def",
"get_signature",
"(",
"self",
",",
"value",
")",
":",
"value",
"=",
"want_bytes",
"(",
"value",
")",
"key",
"=",
"self",
".",
"derive_key",
"(",
")",
"sig",
"=",
"self",
".",
"algorithm",
".",
"get_signature",
"(",
"key",
",",
"value",
")",
"r... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Signer.sign | Signs the given string. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def sign(self, value):
"""Signs the given string."""
return value + want_bytes(self.sep) + self.get_signature(value) | def sign(self, value):
"""Signs the given string."""
return value + want_bytes(self.sep) + self.get_signature(value) | [
"Signs",
"the",
"given",
"string",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L351-L353 | [
"def",
"sign",
"(",
"self",
",",
"value",
")",
":",
"return",
"value",
"+",
"want_bytes",
"(",
"self",
".",
"sep",
")",
"+",
"self",
".",
"get_signature",
"(",
"value",
")"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Signer.verify_signature | Verifies the signature for the given value. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def verify_signature(self, value, sig):
"""Verifies the signature for the given value."""
key = self.derive_key()
try:
sig = base64_decode(sig)
except Exception:
return False
return self.algorithm.verify_signature(key, value, sig) | def verify_signature(self, value, sig):
"""Verifies the signature for the given value."""
key = self.derive_key()
try:
sig = base64_decode(sig)
except Exception:
return False
return self.algorithm.verify_signature(key, value, sig) | [
"Verifies",
"the",
"signature",
"for",
"the",
"given",
"value",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L355-L362 | [
"def",
"verify_signature",
"(",
"self",
",",
"value",
",",
"sig",
")",
":",
"key",
"=",
"self",
".",
"derive_key",
"(",
")",
"try",
":",
"sig",
"=",
"base64_decode",
"(",
"sig",
")",
"except",
"Exception",
":",
"return",
"False",
"return",
"self",
".",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Signer.unsign | Unsigns the given string. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def unsign(self, signed_value):
"""Unsigns the given string."""
signed_value = want_bytes(signed_value)
sep = want_bytes(self.sep)
if sep not in signed_value:
raise BadSignature('No %r found in value' % self.sep)
value, sig = signed_value.rsplit(sep, 1)
if sel... | def unsign(self, signed_value):
"""Unsigns the given string."""
signed_value = want_bytes(signed_value)
sep = want_bytes(self.sep)
if sep not in signed_value:
raise BadSignature('No %r found in value' % self.sep)
value, sig = signed_value.rsplit(sep, 1)
if sel... | [
"Unsigns",
"the",
"given",
"string",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L364-L374 | [
"def",
"unsign",
"(",
"self",
",",
"signed_value",
")",
":",
"signed_value",
"=",
"want_bytes",
"(",
"signed_value",
")",
"sep",
"=",
"want_bytes",
"(",
"self",
".",
"sep",
")",
"if",
"sep",
"not",
"in",
"signed_value",
":",
"raise",
"BadSignature",
"(",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | TimestampSigner.sign | Signs the given string and also attaches a time information. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def sign(self, value):
"""Signs the given string and also attaches a time information."""
value = want_bytes(value)
timestamp = base64_encode(int_to_bytes(self.get_timestamp()))
sep = want_bytes(self.sep)
value = value + sep + timestamp
return value + sep + self.get_signa... | def sign(self, value):
"""Signs the given string and also attaches a time information."""
value = want_bytes(value)
timestamp = base64_encode(int_to_bytes(self.get_timestamp()))
sep = want_bytes(self.sep)
value = value + sep + timestamp
return value + sep + self.get_signa... | [
"Signs",
"the",
"given",
"string",
"and",
"also",
"attaches",
"a",
"time",
"information",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L406-L412 | [
"def",
"sign",
"(",
"self",
",",
"value",
")",
":",
"value",
"=",
"want_bytes",
"(",
"value",
")",
"timestamp",
"=",
"base64_encode",
"(",
"int_to_bytes",
"(",
"self",
".",
"get_timestamp",
"(",
")",
")",
")",
"sep",
"=",
"want_bytes",
"(",
"self",
"."... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | TimestampSigner.unsign | Works like the regular :meth:`~Signer.unsign` but can also
validate the time. See the base docstring of the class for
the general behavior. If `return_timestamp` is set to `True`
the timestamp of the signature will be returned as naive
:class:`datetime.datetime` object in UTC. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def unsign(self, value, max_age=None, return_timestamp=False):
"""Works like the regular :meth:`~Signer.unsign` but can also
validate the time. See the base docstring of the class for
the general behavior. If `return_timestamp` is set to `True`
the timestamp of the signature will be re... | def unsign(self, value, max_age=None, return_timestamp=False):
"""Works like the regular :meth:`~Signer.unsign` but can also
validate the time. See the base docstring of the class for
the general behavior. If `return_timestamp` is set to `True`
the timestamp of the signature will be re... | [
"Works",
"like",
"the",
"regular",
":",
"meth",
":",
"~Signer",
".",
"unsign",
"but",
"can",
"also",
"validate",
"the",
"time",
".",
"See",
"the",
"base",
"docstring",
"of",
"the",
"class",
"for",
"the",
"general",
"behavior",
".",
"If",
"return_timestamp"... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L414-L467 | [
"def",
"unsign",
"(",
"self",
",",
"value",
",",
"max_age",
"=",
"None",
",",
"return_timestamp",
"=",
"False",
")",
":",
"try",
":",
"result",
"=",
"Signer",
".",
"unsign",
"(",
"self",
",",
"value",
")",
"sig_error",
"=",
"None",
"except",
"BadSignat... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | TimestampSigner.validate | Just validates the given signed value. Returns `True` if the
signature exists and is valid, `False` otherwise. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def validate(self, signed_value, max_age=None):
"""Just validates the given signed value. Returns `True` if the
signature exists and is valid, `False` otherwise."""
try:
self.unsign(signed_value, max_age=max_age)
return True
except BadSignature:
retur... | def validate(self, signed_value, max_age=None):
"""Just validates the given signed value. Returns `True` if the
signature exists and is valid, `False` otherwise."""
try:
self.unsign(signed_value, max_age=max_age)
return True
except BadSignature:
retur... | [
"Just",
"validates",
"the",
"given",
"signed",
"value",
".",
"Returns",
"True",
"if",
"the",
"signature",
"exists",
"and",
"is",
"valid",
"False",
"otherwise",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L469-L476 | [
"def",
"validate",
"(",
"self",
",",
"signed_value",
",",
"max_age",
"=",
"None",
")",
":",
"try",
":",
"self",
".",
"unsign",
"(",
"signed_value",
",",
"max_age",
"=",
"max_age",
")",
"return",
"True",
"except",
"BadSignature",
":",
"return",
"False"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer.load_payload | Loads the encoded object. This function raises :class:`BadPayload`
if the payload is not valid. The `serializer` parameter can be used to
override the serializer stored on the class. The encoded payload is
always byte based. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def load_payload(self, payload, serializer=None):
"""Loads the encoded object. This function raises :class:`BadPayload`
if the payload is not valid. The `serializer` parameter can be used to
override the serializer stored on the class. The encoded payload is
always byte based.
... | def load_payload(self, payload, serializer=None):
"""Loads the encoded object. This function raises :class:`BadPayload`
if the payload is not valid. The `serializer` parameter can be used to
override the serializer stored on the class. The encoded payload is
always byte based.
... | [
"Loads",
"the",
"encoded",
"object",
".",
"This",
"function",
"raises",
":",
"class",
":",
"BadPayload",
"if",
"the",
"payload",
"is",
"not",
"valid",
".",
"The",
"serializer",
"parameter",
"can",
"be",
"used",
"to",
"override",
"the",
"serializer",
"stored"... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L525-L543 | [
"def",
"load_payload",
"(",
"self",
",",
"payload",
",",
"serializer",
"=",
"None",
")",
":",
"if",
"serializer",
"is",
"None",
":",
"serializer",
"=",
"self",
".",
"serializer",
"is_text",
"=",
"self",
".",
"is_text_serializer",
"else",
":",
"is_text",
"=... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer.make_signer | A method that creates a new instance of the signer to be used.
The default implementation uses the :class:`Signer` baseclass. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def make_signer(self, salt=None):
"""A method that creates a new instance of the signer to be used.
The default implementation uses the :class:`Signer` baseclass.
"""
if salt is None:
salt = self.salt
return self.signer(self.secret_key, salt=salt, **self.signer_kwargs... | def make_signer(self, salt=None):
"""A method that creates a new instance of the signer to be used.
The default implementation uses the :class:`Signer` baseclass.
"""
if salt is None:
salt = self.salt
return self.signer(self.secret_key, salt=salt, **self.signer_kwargs... | [
"A",
"method",
"that",
"creates",
"a",
"new",
"instance",
"of",
"the",
"signer",
"to",
"be",
"used",
".",
"The",
"default",
"implementation",
"uses",
"the",
":",
"class",
":",
"Signer",
"baseclass",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L552-L558 | [
"def",
"make_signer",
"(",
"self",
",",
"salt",
"=",
"None",
")",
":",
"if",
"salt",
"is",
"None",
":",
"salt",
"=",
"self",
".",
"salt",
"return",
"self",
".",
"signer",
"(",
"self",
".",
"secret_key",
",",
"salt",
"=",
"salt",
",",
"*",
"*",
"s... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer.dumps | Returns a signed string serialized with the internal serializer.
The return value can be either a byte or unicode string depending
on the format of the internal serializer. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def dumps(self, obj, salt=None):
"""Returns a signed string serialized with the internal serializer.
The return value can be either a byte or unicode string depending
on the format of the internal serializer.
"""
payload = want_bytes(self.dump_payload(obj))
rv = self.make... | def dumps(self, obj, salt=None):
"""Returns a signed string serialized with the internal serializer.
The return value can be either a byte or unicode string depending
on the format of the internal serializer.
"""
payload = want_bytes(self.dump_payload(obj))
rv = self.make... | [
"Returns",
"a",
"signed",
"string",
"serialized",
"with",
"the",
"internal",
"serializer",
".",
"The",
"return",
"value",
"can",
"be",
"either",
"a",
"byte",
"or",
"unicode",
"string",
"depending",
"on",
"the",
"format",
"of",
"the",
"internal",
"serializer",
... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L560-L569 | [
"def",
"dumps",
"(",
"self",
",",
"obj",
",",
"salt",
"=",
"None",
")",
":",
"payload",
"=",
"want_bytes",
"(",
"self",
".",
"dump_payload",
"(",
"obj",
")",
")",
"rv",
"=",
"self",
".",
"make_signer",
"(",
"salt",
")",
".",
"sign",
"(",
"payload",... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer.dump | Like :meth:`dumps` but dumps into a file. The file handle has
to be compatible with what the internal serializer expects. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def dump(self, obj, f, salt=None):
"""Like :meth:`dumps` but dumps into a file. The file handle has
to be compatible with what the internal serializer expects.
"""
f.write(self.dumps(obj, salt)) | def dump(self, obj, f, salt=None):
"""Like :meth:`dumps` but dumps into a file. The file handle has
to be compatible with what the internal serializer expects.
"""
f.write(self.dumps(obj, salt)) | [
"Like",
":",
"meth",
":",
"dumps",
"but",
"dumps",
"into",
"a",
"file",
".",
"The",
"file",
"handle",
"has",
"to",
"be",
"compatible",
"with",
"what",
"the",
"internal",
"serializer",
"expects",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L571-L575 | [
"def",
"dump",
"(",
"self",
",",
"obj",
",",
"f",
",",
"salt",
"=",
"None",
")",
":",
"f",
".",
"write",
"(",
"self",
".",
"dumps",
"(",
"obj",
",",
"salt",
")",
")"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer.loads | Reverse of :meth:`dumps`, raises :exc:`BadSignature` if the
signature validation fails. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def loads(self, s, salt=None):
"""Reverse of :meth:`dumps`, raises :exc:`BadSignature` if the
signature validation fails.
"""
s = want_bytes(s)
return self.load_payload(self.make_signer(salt).unsign(s)) | def loads(self, s, salt=None):
"""Reverse of :meth:`dumps`, raises :exc:`BadSignature` if the
signature validation fails.
"""
s = want_bytes(s)
return self.load_payload(self.make_signer(salt).unsign(s)) | [
"Reverse",
"of",
":",
"meth",
":",
"dumps",
"raises",
":",
"exc",
":",
"BadSignature",
"if",
"the",
"signature",
"validation",
"fails",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L577-L582 | [
"def",
"loads",
"(",
"self",
",",
"s",
",",
"salt",
"=",
"None",
")",
":",
"s",
"=",
"want_bytes",
"(",
"s",
")",
"return",
"self",
".",
"load_payload",
"(",
"self",
".",
"make_signer",
"(",
"salt",
")",
".",
"unsign",
"(",
"s",
")",
")"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer._loads_unsafe_impl | Lowlevel helper function to implement :meth:`loads_unsafe` in
serializer subclasses. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def _loads_unsafe_impl(self, s, salt, load_kwargs=None,
load_payload_kwargs=None):
"""Lowlevel helper function to implement :meth:`loads_unsafe` in
serializer subclasses.
"""
try:
return True, self.loads(s, salt=salt, **(load_kwargs or {}))
... | def _loads_unsafe_impl(self, s, salt, load_kwargs=None,
load_payload_kwargs=None):
"""Lowlevel helper function to implement :meth:`loads_unsafe` in
serializer subclasses.
"""
try:
return True, self.loads(s, salt=salt, **(load_kwargs or {}))
... | [
"Lowlevel",
"helper",
"function",
"to",
"implement",
":",
"meth",
":",
"loads_unsafe",
"in",
"serializer",
"subclasses",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L603-L617 | [
"def",
"_loads_unsafe_impl",
"(",
"self",
",",
"s",
",",
"salt",
",",
"load_kwargs",
"=",
"None",
",",
"load_payload_kwargs",
"=",
"None",
")",
":",
"try",
":",
"return",
"True",
",",
"self",
".",
"loads",
"(",
"s",
",",
"salt",
"=",
"salt",
",",
"*"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer.load_unsafe | Like :meth:`loads_unsafe` but loads from a file.
.. versionadded:: 0.15 | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def load_unsafe(self, f, *args, **kwargs):
"""Like :meth:`loads_unsafe` but loads from a file.
.. versionadded:: 0.15
"""
return self.loads_unsafe(f.read(), *args, **kwargs) | def load_unsafe(self, f, *args, **kwargs):
"""Like :meth:`loads_unsafe` but loads from a file.
.. versionadded:: 0.15
"""
return self.loads_unsafe(f.read(), *args, **kwargs) | [
"Like",
":",
"meth",
":",
"loads_unsafe",
"but",
"loads",
"from",
"a",
"file",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L619-L624 | [
"def",
"load_unsafe",
"(",
"self",
",",
"f",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"return",
"self",
".",
"loads_unsafe",
"(",
"f",
".",
"read",
"(",
")",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")"
] | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | TimedSerializer.loads | Reverse of :meth:`dumps`, raises :exc:`BadSignature` if the
signature validation fails. If a `max_age` is provided it will
ensure the signature is not older than that time in seconds. In
case the signature is outdated, :exc:`SignatureExpired` is raised
which is a subclass of :exc:`BadS... | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def loads(self, s, max_age=None, return_timestamp=False, salt=None):
"""Reverse of :meth:`dumps`, raises :exc:`BadSignature` if the
signature validation fails. If a `max_age` is provided it will
ensure the signature is not older than that time in seconds. In
case the signature is outda... | def loads(self, s, max_age=None, return_timestamp=False, salt=None):
"""Reverse of :meth:`dumps`, raises :exc:`BadSignature` if the
signature validation fails. If a `max_age` is provided it will
ensure the signature is not older than that time in seconds. In
case the signature is outda... | [
"Reverse",
"of",
":",
"meth",
":",
"dumps",
"raises",
":",
"exc",
":",
"BadSignature",
"if",
"the",
"signature",
"validation",
"fails",
".",
"If",
"a",
"max_age",
"is",
"provided",
"it",
"will",
"ensure",
"the",
"signature",
"is",
"not",
"older",
"than",
... | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L634-L647 | [
"def",
"loads",
"(",
"self",
",",
"s",
",",
"max_age",
"=",
"None",
",",
"return_timestamp",
"=",
"False",
",",
"salt",
"=",
"None",
")",
":",
"base64d",
",",
"timestamp",
"=",
"self",
".",
"make_signer",
"(",
"salt",
")",
".",
"unsign",
"(",
"s",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | JSONWebSignatureSerializer.dumps | Like :meth:`~Serializer.dumps` but creates a JSON Web Signature. It
also allows for specifying additional fields to be included in the JWS
Header. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def dumps(self, obj, salt=None, header_fields=None):
"""Like :meth:`~Serializer.dumps` but creates a JSON Web Signature. It
also allows for specifying additional fields to be included in the JWS
Header.
"""
header = self.make_header(header_fields)
signer = self.make_sign... | def dumps(self, obj, salt=None, header_fields=None):
"""Like :meth:`~Serializer.dumps` but creates a JSON Web Signature. It
also allows for specifying additional fields to be included in the JWS
Header.
"""
header = self.make_header(header_fields)
signer = self.make_sign... | [
"Like",
":",
"meth",
":",
"~Serializer",
".",
"dumps",
"but",
"creates",
"a",
"JSON",
"Web",
"Signature",
".",
"It",
"also",
"allows",
"for",
"specifying",
"additional",
"fields",
"to",
"be",
"included",
"in",
"the",
"JWS",
"Header",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L735-L742 | [
"def",
"dumps",
"(",
"self",
",",
"obj",
",",
"salt",
"=",
"None",
",",
"header_fields",
"=",
"None",
")",
":",
"header",
"=",
"self",
".",
"make_header",
"(",
"header_fields",
")",
"signer",
"=",
"self",
".",
"make_signer",
"(",
"salt",
",",
"self",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | JSONWebSignatureSerializer.loads | Reverse of :meth:`dumps`. If requested via `return_header` it will
return a tuple of payload and header. | capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py | def loads(self, s, salt=None, return_header=False):
"""Reverse of :meth:`dumps`. If requested via `return_header` it will
return a tuple of payload and header.
"""
payload, header = self.load_payload(
self.make_signer(salt, self.algorithm).unsign(want_bytes(s)),
r... | def loads(self, s, salt=None, return_header=False):
"""Reverse of :meth:`dumps`. If requested via `return_header` it will
return a tuple of payload and header.
"""
payload, header = self.load_payload(
self.make_signer(salt, self.algorithm).unsign(want_bytes(s)),
r... | [
"Reverse",
"of",
":",
"meth",
":",
"dumps",
".",
"If",
"requested",
"via",
"return_header",
"it",
"will",
"return",
"a",
"tuple",
"of",
"payload",
"and",
"header",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/itsdangerous.py#L744-L756 | [
"def",
"loads",
"(",
"self",
",",
"s",
",",
"salt",
"=",
"None",
",",
"return_header",
"=",
"False",
")",
":",
"payload",
",",
"header",
"=",
"self",
".",
"load_payload",
"(",
"self",
".",
"make_signer",
"(",
"salt",
",",
"self",
".",
"algorithm",
")... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | server_error | JSON-RPC server error.
:param request_id: JSON-RPC request id
:type request_id: int or str or None
:param error: server error
:type error: Exception | service_factory/errors.py | def server_error(request_id, error):
"""JSON-RPC server error.
:param request_id: JSON-RPC request id
:type request_id: int or str or None
:param error: server error
:type error: Exception
"""
response = {
'jsonrpc': '2.0',
'id': request_id,
'error': {
... | def server_error(request_id, error):
"""JSON-RPC server error.
:param request_id: JSON-RPC request id
:type request_id: int or str or None
:param error: server error
:type error: Exception
"""
response = {
'jsonrpc': '2.0',
'id': request_id,
'error': {
... | [
"JSON",
"-",
"RPC",
"server",
"error",
"."
] | proofit404/service-factory | python | https://github.com/proofit404/service-factory/blob/a09d4e097e5599244564a2a7f0611e58efb4156a/service_factory/errors.py#L72-L91 | [
"def",
"server_error",
"(",
"request_id",
",",
"error",
")",
":",
"response",
"=",
"{",
"'jsonrpc'",
":",
"'2.0'",
",",
"'id'",
":",
"request_id",
",",
"'error'",
":",
"{",
"'code'",
":",
"-",
"32000",
",",
"'message'",
":",
"'Server error'",
",",
"'data... | a09d4e097e5599244564a2a7f0611e58efb4156a |
test | findall | Find all files under 'dir' and return the list of full filenames
(relative to 'dir'). | capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py | def findall(dir = os.curdir):
"""Find all files under 'dir' and return the list of full filenames
(relative to 'dir').
"""
all_files = []
for base, dirs, files in os.walk(dir, followlinks=True):
if base==os.curdir or base.startswith(os.curdir+os.sep):
base = base[2:]
if b... | def findall(dir = os.curdir):
"""Find all files under 'dir' and return the list of full filenames
(relative to 'dir').
"""
all_files = []
for base, dirs, files in os.walk(dir, followlinks=True):
if base==os.curdir or base.startswith(os.curdir+os.sep):
base = base[2:]
if b... | [
"Find",
"all",
"files",
"under",
"dir",
"and",
"return",
"the",
"list",
"of",
"full",
"filenames",
"(",
"relative",
"to",
"dir",
")",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py#L136-L147 | [
"def",
"findall",
"(",
"dir",
"=",
"os",
".",
"curdir",
")",
":",
"all_files",
"=",
"[",
"]",
"for",
"base",
",",
"dirs",
",",
"files",
"in",
"os",
".",
"walk",
"(",
"dir",
",",
"followlinks",
"=",
"True",
")",
":",
"if",
"base",
"==",
"os",
".... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | PackageFinder.find | Return a list all Python packages found within directory 'where'
'where' should be supplied as a "cross-platform" (i.e. URL-style)
path; it will be converted to the appropriate local path syntax.
'exclude' is a sequence of package names to exclude; '*' can be used
as a wildcard in the n... | capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py | def find(cls, where='.', exclude=(), include=('*',)):
"""Return a list all Python packages found within directory 'where'
'where' should be supplied as a "cross-platform" (i.e. URL-style)
path; it will be converted to the appropriate local path syntax.
'exclude' is a sequence of package... | def find(cls, where='.', exclude=(), include=('*',)):
"""Return a list all Python packages found within directory 'where'
'where' should be supplied as a "cross-platform" (i.e. URL-style)
path; it will be converted to the appropriate local path syntax.
'exclude' is a sequence of package... | [
"Return",
"a",
"list",
"all",
"Python",
"packages",
"found",
"within",
"directory",
"where"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py#L34-L57 | [
"def",
"find",
"(",
"cls",
",",
"where",
"=",
"'.'",
",",
"exclude",
"=",
"(",
")",
",",
"include",
"=",
"(",
"'*'",
",",
")",
")",
":",
"out",
"=",
"cls",
".",
"_find_packages_iter",
"(",
"convert_path",
"(",
"where",
")",
")",
"out",
"=",
"cls"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | PackageFinder.require_parents | Exclude any apparent package that apparently doesn't include its
parent.
For example, exclude 'foo.bar' if 'foo' is not present. | capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py | def require_parents(packages):
"""
Exclude any apparent package that apparently doesn't include its
parent.
For example, exclude 'foo.bar' if 'foo' is not present.
"""
found = []
for pkg in packages:
base, sep, child = pkg.rpartition('.')
... | def require_parents(packages):
"""
Exclude any apparent package that apparently doesn't include its
parent.
For example, exclude 'foo.bar' if 'foo' is not present.
"""
found = []
for pkg in packages:
base, sep, child = pkg.rpartition('.')
... | [
"Exclude",
"any",
"apparent",
"package",
"that",
"apparently",
"doesn",
"t",
"include",
"its",
"parent",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py#L60-L73 | [
"def",
"require_parents",
"(",
"packages",
")",
":",
"found",
"=",
"[",
"]",
"for",
"pkg",
"in",
"packages",
":",
"base",
",",
"sep",
",",
"child",
"=",
"pkg",
".",
"rpartition",
"(",
"'.'",
")",
"if",
"base",
"and",
"base",
"not",
"in",
"found",
"... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | PackageFinder._all_dirs | Return all dirs in base_path, relative to base_path | capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py | def _all_dirs(base_path):
"""
Return all dirs in base_path, relative to base_path
"""
for root, dirs, files in os.walk(base_path, followlinks=True):
for dir in dirs:
yield os.path.relpath(os.path.join(root, dir), base_path) | def _all_dirs(base_path):
"""
Return all dirs in base_path, relative to base_path
"""
for root, dirs, files in os.walk(base_path, followlinks=True):
for dir in dirs:
yield os.path.relpath(os.path.join(root, dir), base_path) | [
"Return",
"all",
"dirs",
"in",
"base_path",
"relative",
"to",
"base_path"
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/setuptools/__init__.py#L76-L82 | [
"def",
"_all_dirs",
"(",
"base_path",
")",
":",
"for",
"root",
",",
"dirs",
",",
"files",
"in",
"os",
".",
"walk",
"(",
"base_path",
",",
"followlinks",
"=",
"True",
")",
":",
"for",
"dir",
"in",
"dirs",
":",
"yield",
"os",
".",
"path",
".",
"relpa... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | Serializer.prepare_response | Verify our vary headers match and construct a real urllib3
HTTPResponse object. | capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/serialize.py | def prepare_response(self, request, cached):
"""Verify our vary headers match and construct a real urllib3
HTTPResponse object.
"""
# Special case the '*' Vary value as it means we cannot actually
# determine if the cached response is suitable for this request.
if "*" in ... | def prepare_response(self, request, cached):
"""Verify our vary headers match and construct a real urllib3
HTTPResponse object.
"""
# Special case the '*' Vary value as it means we cannot actually
# determine if the cached response is suitable for this request.
if "*" in ... | [
"Verify",
"our",
"vary",
"headers",
"match",
"and",
"construct",
"a",
"real",
"urllib3",
"HTTPResponse",
"object",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/serialize.py#L114-L146 | [
"def",
"prepare_response",
"(",
"self",
",",
"request",
",",
"cached",
")",
":",
"# Special case the '*' Vary value as it means we cannot actually",
"# determine if the cached response is suitable for this request.",
"if",
"\"*\"",
"in",
"cached",
".",
"get",
"(",
"\"vary\"",
... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
test | keygen | Generate a public/private key pair. | capybara/virtualenv/lib/python2.7/site-packages/wheel/tool/__init__.py | def keygen(get_keyring=get_keyring):
"""Generate a public/private key pair."""
WheelKeys, keyring = get_keyring()
ed25519ll = signatures.get_ed25519ll()
wk = WheelKeys().load()
keypair = ed25519ll.crypto_sign_keypair()
vk = native(urlsafe_b64encode(keypair.vk))
sk = native(urlsafe_b64enco... | def keygen(get_keyring=get_keyring):
"""Generate a public/private key pair."""
WheelKeys, keyring = get_keyring()
ed25519ll = signatures.get_ed25519ll()
wk = WheelKeys().load()
keypair = ed25519ll.crypto_sign_keypair()
vk = native(urlsafe_b64encode(keypair.vk))
sk = native(urlsafe_b64enco... | [
"Generate",
"a",
"public",
"/",
"private",
"key",
"pair",
"."
] | AkihikoITOH/capybara | python | https://github.com/AkihikoITOH/capybara/blob/e86c2173ea386654f4ae061148e8fbe3f25e715c/capybara/virtualenv/lib/python2.7/site-packages/wheel/tool/__init__.py#L36-L62 | [
"def",
"keygen",
"(",
"get_keyring",
"=",
"get_keyring",
")",
":",
"WheelKeys",
",",
"keyring",
"=",
"get_keyring",
"(",
")",
"ed25519ll",
"=",
"signatures",
".",
"get_ed25519ll",
"(",
")",
"wk",
"=",
"WheelKeys",
"(",
")",
".",
"load",
"(",
")",
"keypai... | e86c2173ea386654f4ae061148e8fbe3f25e715c |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.