Upload 3 files
Browse files- bugfixes_test.csv +162 -162
- bugfixes_train.csv +2 -2
- bugfixes_valid.csv +2 -2
bugfixes_test.csv
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
before_merge,after_merge,url,bug type,bug description,bug filename,bug function_name,bug lines,full_traceback,traceback_type
|
| 2 |
"def remove_lb_backend_address_pool_address(
|
| 3 |
cmd,
|
| 4 |
resource_group_name,
|
|
@@ -65,7 +65,7 @@ File ""/opt/az/lib/python3.6/site-packages/azure/cli/core/__init__.py"", line 54
|
|
| 65 |
return op(**command_args)
|
| 66 |
File ""/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/network/custom.py"", line 2989, in add_lb_backend_address_pool_address
|
| 67 |
address_pool.load_balancer_backend_addresses.append(new_address)
|
| 68 |
-
AttributeError: 'NoneType' object has no attribute 'append'",AttributeError
|
| 69 |
"def split_action(arguments):
|
| 70 |
class SplitAction(argparse.Action): # pylint: disable=too-few-public-methods
|
| 71 |
def __call__(self, parser, namespace, values, option_string=None):
|
|
@@ -123,7 +123,7 @@ AttributeError: 'NoneType' object has no attribute 'append'",AttributeError,,
|
|
| 123 |
Traceback (most recent call last):
|
| 124 |
File ""c:\users\trpresco\documents\github\azure-cli\src\azure\cli\commands\arm.py"", line 110, in __call__
|
| 125 |
existing_values.append(parts[arg.id_part])
|
| 126 |
-
AttributeError: 'str' object has no attribute 'append'",AttributeError
|
| 127 |
"def parse_series(self, data, **kwargs):
|
| 128 |
log.debug(""Parsing series: `%s` [options: %s]"", data, kwargs)
|
| 129 |
guessit_options = self._guessit_options(kwargs)
|
|
@@ -494,7 +494,7 @@ name = capwords(name)
|
|
| 494 |
File ""/usr/lib/python3.6/string.py"", line 48, in capwords
|
| 495 |
return (sep or ' ').join(x.capitalize() for x in s.split(sep))
|
| 496 |
AttributeError: 'NoneType' object has no attribute 'split'
|
| 497 |
-
2018-12-10 19:39 WARNING task moving_anime Aborting task (plugin: metainfo_series)",AttributeError
|
| 498 |
"def __init__(self, **kwargs):
|
| 499 |
# Save values so that we can revert to their initial values
|
| 500 |
self.old_defaults = {}
|
|
@@ -554,7 +554,7 @@ File ""/opt/miniconda3/envs/liam/lib/python3.7/site-packages/pygmt/modules.py"",
|
|
| 554 |
self.old_defaults[key] = lib.get_default(key)
|
| 555 |
File ""/opt/miniconda3/envs/liam/lib/python3.7/site-packages/pygmt/clib/session.py"", line 458, in get_default
|
| 556 |
name, status
|
| 557 |
-
pygmt.exceptions.GMTCLibError: Error getting default value for 'FONT' (error code 67).",pygmt.exceptions.GMTCLibError
|
| 558 |
"def dump_checkpoint(self, weights_only: bool = False) -> dict:
|
| 559 |
""""""Creating model checkpoint.
|
| 560 |
|
|
@@ -749,7 +749,7 @@ checkpoint = self.dump_checkpoint(weights_only)
|
|
| 749 |
File ""/home/gianluca/git/kaggle/siim-isic-melanoma-classification/.venv/lib/python3.7/site-packages/pytorch_lightning/trainer/training_io.py"", line 362, in dump_checkpoint
|
| 750 |
checkpoint['native_amp_scaling_state'] = self.scaler.state_dict()
|
| 751 |
AttributeError: 'NoneType' object has no attribute 'state_dict'
|
| 752 |
-
ERROR: failed to reproduce 'train_cnn.dvc': stage: 'train_cnn.dvc' cmd 'python pipe/train_cnn.py' failed",AttributeError
|
| 753 |
"@classmethod
|
| 754 |
def _load_model_state(cls, checkpoint: Dict[str, Any], *cls_args, **cls_kwargs):
|
| 755 |
cls_spec = inspect.getfullargspec(cls.__init__)
|
|
@@ -842,7 +842,7 @@ File ""/home/siahuat0727/.local/lib/python3.8/site-packages/pytorch_lightning/co
|
|
| 842 |
model = cls(*cls_args, **cls_kwargs)
|
| 843 |
File ""main.py"", line 46, in __init__
|
| 844 |
super().__init__(*args, **kwargs)
|
| 845 |
-
TypeError: __init__() missing 1 required positional argument: 'hparams'",TypeError
|
| 846 |
"def __init__(
|
| 847 |
self,
|
| 848 |
text: base.String,
|
|
@@ -885,7 +885,7 @@ File ""/usr/lib/python3.8/site-packages/aiogram/types/fields.py"", line 161, in
|
|
| 885 |
row_result.append(deserialize(item, parent=parent))
|
| 886 |
File ""/usr/lib/python3.8/site-packages/aiogram/types/fields.py"", line 112, in deserialize
|
| 887 |
return self.base_object(conf={'parent': parent}, **value)
|
| 888 |
-
TypeError: __init__() got an unexpected keyword argument 'conf'",TypeError
|
| 889 |
"def get_vars(
|
| 890 |
self,
|
| 891 |
play=None,
|
|
@@ -1570,7 +1570,7 @@ File ""/home/lmadsen/.local/lib/python2.7/site-packages/ansible/parsing/quoting.
|
|
| 1570 |
if is_quoted(data):
|
| 1571 |
File ""/home/lmadsen/.local/lib/python2.7/site-packages/ansible/parsing/quoting.py"", line 24, in is_quoted
|
| 1572 |
return len(data) > 1 and data[0] == data[-1] and data[0] in ('""', ""'"") and data[-2] != '\\'
|
| 1573 |
-
KeyError: 0",KeyError
|
| 1574 |
"def _get_elb_info(self, elb):
|
| 1575 |
elb_info = {
|
| 1576 |
""name"": elb.name,
|
|
@@ -1682,7 +1682,7 @@ File ""/tmp/ansible_mX7IN8/ansible_module_ec2_elb_facts.py"", line 215, in list_
|
|
| 1682 |
return list(map(self._get_elb_info, elb_array))
|
| 1683 |
File ""/tmp/ansible_mX7IN8/ansible_module_ec2_elb_facts.py"", line 195, in _get_elb_info
|
| 1684 |
float(elb_info['instances_outofservice_count']))*100
|
| 1685 |
-
ZeroDivisionError: float division by zero",ZeroDivisionError
|
| 1686 |
"def disconnect_all_containers(self):
|
| 1687 |
containers = self.client.inspect_network(self.parameters.network_name)[""Containers""]
|
| 1688 |
for cont in containers.values():
|
|
@@ -1716,7 +1716,7 @@ failed: [192.168.1.120 -> 127.0.0.1] (item={u'driver': u'overlay', u'name': u'ne
|
|
| 1716 |
""module_stderr"": ""Traceback (most recent call last):\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 392, in <module>\n main()\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 385, in main\n cm = DockerNetworkManager(client)\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 218, in __init__\n self.present()\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 352, in present\n self.disconnect_missing()\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 323, in disconnect_missing\n for c in self.existing_network['Containers'].values():\nAttributeError: 'NoneType' object has no attribute 'values'\n"",
|
| 1717 |
""module_stdout"": """",
|
| 1718 |
""msg"": ""MODULE FAILURE"",
|
| 1719 |
-
""rc"": 0",AttributeError
|
| 1720 |
"def main():
|
| 1721 |
""""""main entry point for module execution""""""
|
| 1722 |
argument_spec = dict(
|
|
@@ -1896,7 +1896,7 @@ to retry, use: --limit @/home/users/cody.john/virtualenv/ansible-git/playbook/de
|
|
| 1896 |
PLAY RECAP **********************************************************************************************************************************
|
| 1897 |
cor-001a.sea0.service-now.com : ok=0 changed=0 unreachable=0 failed=1
|
| 1898 |
|
| 1899 |
-
(ansible-git)[cns04.sea3:/home/users/cody.john/virtualenv/ansible-git/playbook/deploy]$",UnicodeEncodeError
|
| 1900 |
"def list_databases(self):
|
| 1901 |
""""""
|
| 1902 |
List the databases available from the WFAU archive.
|
|
@@ -1926,7 +1926,7 @@ TypeError Traceback (most recent call last)
|
|
| 1926 |
677 return self.databases
|
| 1927 |
678
|
| 1928 |
|
| 1929 |
-
TypeError: can only concatenate tuple (not ""list"") to tuple",TypeError
|
| 1930 |
"def distribution(self, distr_args, loc=None, scale=None) -> Distribution:
|
| 1931 |
assert loc is None and scale is None
|
| 1932 |
distr = Dirichlet(distr_args)
|
|
@@ -2002,7 +2002,7 @@ AssertionError Traceback (most recent call last)
|
|
| 2002 |
185 distr = DirichletMultinomial(self.dim, self.n_trials, distr_args)
|
| 2003 |
186 return distr
|
| 2004 |
|
| 2005 |
-
AssertionError:",AssertionError
|
| 2006 |
"def qimage_indexed_from_array(
|
| 2007 |
arr: np.ndarray, colortable: Sequence[Sequence[int]]
|
| 2008 |
) -> QImage:
|
|
@@ -2128,7 +2128,7 @@ buffer = img.bits().asarray(w * h * 4)
|
|
| 2128 |
AttributeError: 'NoneType' object has no attribute 'asarray'
|
| 2129 |
-------------------------------------------------------------------------------
|
| 2130 |
QLayout: Attempting to add QLayout """" to ErrorReporting """", which already has a layout
|
| 2131 |
-
Segmentation fault (core dumped)",AttributeError
|
| 2132 |
"@contextmanager
|
| 2133 |
def _emit_changed(self):
|
| 2134 |
""""""
|
|
@@ -2177,7 +2177,7 @@ self.store.select(selection, flags)
|
|
| 2177 |
File ""/Users/ajda/orange/orange3/Orange/widgets/evaluate/owpredictions.py"", line 1057, in select
|
| 2178 |
rows = {selection.model().mapToSource(selection).row()}
|
| 2179 |
AttributeError: 'NoneType' object has no attribute 'mapToSource'
|
| 2180 |
-
-------------------------------------------------------------------------------",AttributeError
|
| 2181 |
"def latinify(string, default=""?"", pure_ascii=False):
|
| 2182 |
""""""
|
| 2183 |
Convert a unicode string to ""safe"" ascii/latin-1 characters.
|
|
@@ -2322,7 +2322,7 @@ AttributeError: 'str' object has no attribute 'decode'
|
|
| 2322 |
----------------------------------------------------------------------
|
| 2323 |
Ran 4 tests in 2.104s
|
| 2324 |
|
| 2325 |
-
FAILED (errors=4)",AttributeError
|
| 2326 |
"def perform_codegen():
|
| 2327 |
# Set root codegen output directory
|
| 2328 |
# ---------------------------------
|
|
@@ -2716,7 +2716,7 @@ from ._figurewidget import FigureWidget
|
|
| 2716 |
File ""C:\Users\Artemis\Anaconda3\lib\site-packages\plotly\graph_objs\_figurewidget.py"", line 12, in <module>
|
| 2717 |
class FigureWidget(BaseFigureWidget):
|
| 2718 |
|
| 2719 |
-
TypeError: function() argument 1 must be code, not str",TypeError
|
| 2720 |
"def compare_subnets(self):
|
| 2721 |
""""""
|
| 2722 |
Compare user subnets with current ELB subnets
|
|
@@ -2787,7 +2787,7 @@ TypeError: function() argument 1 must be code, not str",TypeError,,
|
|
| 2787 |
)
|
| 2788 |
",https://github.com/ansible/ansible/issues/49558,"CWE-166: Improper Handling of Missing Special Element, CWE-248: Uncaught Exception","The application load balancer sometimes fails to initialize because the subnet variable does not always have LoadBalancerAddresses key. The situation where this key is absent is a normal because it contains the list of network load balancers, not the application ones",lib/ansible/module_utils/aws/elbv2.py,ElasticLoadBalancerV2.compare_subnets,25,"TASK [ELB (Application)] ***********************************************************************************************
|
| 2789 |
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: KeyError: 'LoadBalancerAddresses'
|
| 2790 |
-
fatal: [localhost -> localhost]: FAILED! => {""changed"": false, ""module_stderr"": ""Traceback (most recent call last):\n File \""/home/cho/.ansible/tmp/ansible-tmp-1544029326.15-8855540780494/AnsiballZ_elb_application_lb.py\"", line 113, in <module>\n _ansiballz_main()\n File \""/home/cho/.ansible/tmp/ansible-tmp-1544029326.15-8855540780494/AnsiballZ_elb_application_lb.py\"", line 105, in _ansiballz_main\n invoke_module(zipped_mod, temp_path, ANSIBALLZ_PARAMS)\n File \""/home/cho/.ansible/tmp/ansible-tmp-1544029326.15-8855540780494/AnsiballZ_elb_application_lb.py\"", line 48, in invoke_module\n imp.load_module('__main__', mod, module, MOD_DESC)\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/__main__.py\"", line 574, in <module>\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/__main__.py\"", line 568, in main\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/__main__.py\"", line 390, in create_or_update_elb\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/ansible_elb_application_lb_payload.zip/ansible/module_utils/aws/elbv2.py\"", line 172, in compare_subnets\nKeyError: 'LoadBalancerAddresses'\n"", ""module_stdout"": """", ""msg"": ""MODULE FAILURE\nSee stdout/stderr for the exact error"", ""rc"": 1}",KeyError
|
| 2791 |
"def get_client(
|
| 2792 |
self, keystore, force_pair=True, *, devices=None, allow_user_interaction=True
|
| 2793 |
) -> Optional[""KeepKeyClient""]:
|
|
@@ -2825,7 +2825,7 @@ buf = self.dev.read(64, timeout_ms=(timeout or 0))
|
|
| 2825 |
File ""hid.pyx"", line 123, in hid.device.read
|
| 2826 |
OSError: read error
|
| 2827 |
double free or corruption (fasttop)
|
| 2828 |
-
Aborted",OSError
|
| 2829 |
"def mod_hostname(hostname):
|
| 2830 |
""""""
|
| 2831 |
Modify hostname
|
|
@@ -3109,7 +3109,7 @@ Succeeded: 0
|
|
| 3109 |
Failed: 1
|
| 3110 |
------------
|
| 3111 |
Total states run: 1
|
| 3112 |
-
Total run time: 2.073 ms",TypeError
|
| 3113 |
"def hash_params(params):
|
| 3114 |
if not isinstance(params, dict):
|
| 3115 |
if isinstance(params, list):
|
|
@@ -3201,7 +3201,7 @@ File ""/usr/local/Cellar/ansible/2.2.0.0_1/libexec/lib/python2.7/site-packages/a
|
|
| 3201 |
s.update((k, hash_params(v)))
|
| 3202 |
File ""/usr/local/Cellar/ansible/2.2.0.0_1/libexec/lib/python2.7/site-packages/ansible/playbook/role/__init__.py"", line 61, in hash_params
|
| 3203 |
s.update((k, v))
|
| 3204 |
-
TypeError: unhashable type: 'dict'",TypeError
|
| 3205 |
"async def is_online(self):
|
| 3206 |
if not self.id:
|
| 3207 |
self.id = await self.fetch_id()
|
|
@@ -3268,7 +3268,7 @@ File ""C:\Users\jason\AppData\Local\Programs\Python\Python36\lib\site-packages\r
|
|
| 3268 |
return [x for x in streams if not (x.name.lower() in seen or seen_add(x.name.lower()))]
|
| 3269 |
File ""C:\Users\jason\AppData\Local\Programs\Python\Python36\lib\site-packages\redbot\cogs\streams\streams.py"", line 618, in <listcomp>
|
| 3270 |
return [x for x in streams if not (x.name.lower() in seen or seen_add(x.name.lower()))]
|
| 3271 |
-
AttributeError: 'NoneType' object has no attribute 'lower'",AttributeError
|
| 3272 |
"def skip_200_and_304(record: logging.LogRecord) -> bool:
|
| 3273 |
# Apparently, `status_code` is added by Django and is not an actual
|
| 3274 |
# attribute of LogRecord; as a result, mypy throws an error if we
|
|
@@ -3327,7 +3327,7 @@ if self.callback(record):
|
|
| 3327 |
File ""/home/sjoerd/zulip/zerver/lib/logging_util.py"", line 122, in skip_200_and_304
|
| 3328 |
if getattr(record, 'status_code') in [200, 304]:
|
| 3329 |
AttributeError: 'LogRecord' object has no attribute 'status_code'
|
| 3330 |
-
----------------------------------------",AttributeError
|
| 3331 |
"@hydra.main(config_name=""config"")
|
| 3332 |
def my_app(cfg: DictConfig):
|
| 3333 |
log.info(f""Process ID {os.getpid()} executing task {cfg.task} ..."")
|
|
@@ -3354,7 +3354,7 @@ File ""/private/home/calebh/miniconda3/envs/bench-detectron2/lib/python3.7/site-
|
|
| 3354 |
return plugins.get_job_environment()
|
| 3355 |
File ""/private/home/calebh/miniconda3/envs/bench-detectron2/lib/python3.7/site-packages/submitit/core/plugins.py"", line 82, in get_job_environment
|
| 3356 |
f""Could not figure out which environment the job is runnning in. Known environments: {', '.join(envs.keys())}.""
|
| 3357 |
-
RuntimeError: Could not figure out which environment the job is runnning in. Known environments: slurm, local, debug.",RuntimeError
|
| 3358 |
"def populate(self):
|
| 3359 |
self.get_cpu_facts()
|
| 3360 |
self.get_memory_facts()
|
|
@@ -3391,7 +3391,7 @@ puppet-d01 | FAILED! => {
|
|
| 3391 |
""module_stdout"": ""Traceback (most recent call last):\r\n File \""/tmp/ansible_c31TXu/ansible_module_setup.py\"", line 139, in <module>\r\n main()\r\n File \""/tmp/ansible_c31TXu/ansible_module_setup.py\"", line 131, in main\r\n data = get_all_facts(module)\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 3932, in get_all_facts\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 3875, in ansible_facts\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 1569, in populate\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 1728, in get_uptime_facts\r\nValueError: invalid literal for float(): 26761555,805674\r\n\r\n"",
|
| 3392 |
""msg"": ""MODULE FAILURE"",
|
| 3393 |
""rc"": 0
|
| 3394 |
-
}",nValueError
|
| 3395 |
"def isintlike(x):
|
| 3396 |
""""""Is x appropriate as an index into a sparse matrix? Returns True
|
| 3397 |
if it can be cast safely to a machine int.
|
|
@@ -3429,7 +3429,7 @@ File ""/home/jbw/data/src/kwant/python3-env/lib/python3.4/site-packages/scipy/sp
|
|
| 3429 |
if isintlike(M) and isintlike(N):
|
| 3430 |
File ""/home/jbw/data/src/kwant/python3-env/lib/python3.4/site-packages/scipy/sparse/sputils.py"", line 195, in isintlike
|
| 3431 |
if int(x) == x:
|
| 3432 |
-
ValueError: invalid literal for int() with base 10: b'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00",ValueError
|
| 3433 |
"def cachedir_index_del(minion_id, base=None):
|
| 3434 |
""""""
|
| 3435 |
Delete an entry from the cachedir index. This generally only needs to happen
|
|
@@ -3485,7 +3485,7 @@ instances = query(params)
|
|
| 3485 |
File ""/usr/lib/python2.7/dist-packages/salt/cloud/clouds/ec2.py"", line 345, in query
|
| 3486 |
result.text
|
| 3487 |
UnicodeEncodeError: 'ascii' codec can't encode characters in position 70860-70863: ordinal not in range(128)
|
| 3488 |
-
......",UnicodeEncodeError
|
| 3489 |
"def execute(
|
| 3490 |
self,
|
| 3491 |
idempotent=False,
|
|
@@ -3709,7 +3709,7 @@ File ""/Users/jodewey/git/molecule/molecule/cli.py"", line 64, in main
|
|
| 3709 |
util.sysexit(c.execute()[0])
|
| 3710 |
File ""/Users/jodewey/git/molecule/molecule/command/converge.py"", line 136, in execute
|
| 3711 |
util.debug('ANSIBLE PLAYBOOK', str(ansible.ansible))
|
| 3712 |
-
AttributeError: 'AnsiblePlaybook' object has no attribute 'ansible'",AttributeError
|
| 3713 |
"@attach_runtime_statistics(u""{0.__class__.__name__}.{function_name}"")
|
| 3714 |
@call_on_reactor_thread
|
| 3715 |
def data_came_in(self, addr, data):
|
|
@@ -3851,7 +3851,7 @@ File ""Tribler\Core\TFTP\handler.py"", line 516, in _send_packet
|
|
| 3851 |
|
| 3852 |
File ""Tribler\dispersy\candidate.py"", line 30, in __init__
|
| 3853 |
|
| 3854 |
-
exceptions.AssertionError: ('182.30.65.219', 0)",RuntimeError
|
| 3855 |
"def setup_readline():
|
| 3856 |
""""""Sets up the readline module and completion suppression, if available.""""""
|
| 3857 |
global \
|
|
@@ -4090,7 +4090,7 @@ File ""C:\Users\mel\Anaconda3\lib\site-packages\xonsh\__amalgam__.py"", line 187
|
|
| 4090 |
show_completions = self._querycompletions(completions, endidx - begidx)
|
| 4091 |
File ""C:\Users\mel\Anaconda3\lib\site-packages\xonsh\__amalgam__.py"", line 18695, in _querycompletions
|
| 4092 |
rl_on_new_line()
|
| 4093 |
-
TypeError: 'NoneType' object is not callable",TypeError
|
| 4094 |
"def visualize(
|
| 4095 |
self, flow_state: ""prefect.engine.state.State"" = None, filename: str = None
|
| 4096 |
) -> object:
|
|
@@ -4346,7 +4346,7 @@ File ""min_example.py"", line 28, in <module>
|
|
| 4346 |
flow.visualize(flow_state=state)
|
| 4347 |
File ""/Users/jtherhaa/miniconda3/envs/prefect/lib/python3.6/site-packages/prefect/core/flow.py"", line 1089, in visualize
|
| 4348 |
for map_index, _ in enumerate(flow_state.result[t].map_states):
|
| 4349 |
-
AttributeError: 'Skipped' object has no attribute 'map_states'",AttributeError
|
| 4350 |
"def _update_magp_data(self, magp_data):
|
| 4351 |
for magp_item in magp_data:
|
| 4352 |
magp_id = self.get_magp_id(magp_item)
|
|
@@ -4371,7 +4371,7 @@ AttributeError: 'Skipped' object has no attribute 'map_states'",AttributeError,,
|
|
| 4371 |
""module_stdout"": """",
|
| 4372 |
""msg"": ""MODULE FAILURE"",
|
| 4373 |
""rc"": 1
|
| 4374 |
-
}",nAttributeError
|
| 4375 |
"def make_main(argv=sys.argv):
|
| 4376 |
""""""Sphinx build ""make mode"" entry.""""""
|
| 4377 |
warnings.warn(
|
|
@@ -4403,7 +4403,7 @@ File ""./build-deploy.py"", line 44, in _sphinx_build
|
|
| 4403 |
return sphinx.make_main(arglist)
|
| 4404 |
File ""/usr/local/lib/python3.6/site-packages/sphinx/__init__.py"", line 91, in make_main
|
| 4405 |
return build.make_main(argv[1:]) # skip first argument to adjust arguments (refs: #4615)
|
| 4406 |
-
NameError: name 'build' is not defined",NameError
|
| 4407 |
"def write_data_to_db(self, workspace, post_group=False, image_number=None):
|
| 4408 |
""""""Write the data in the measurements out to the database
|
| 4409 |
workspace - contains the measurements
|
|
@@ -5154,7 +5154,7 @@ Worker 1: File ""/usr/local/Cellar/python@3.8/3.8.2/Frameworks/Python.framewor
|
|
| 5154 |
Worker 1: return _iterencode(o, 0)
|
| 5155 |
Worker 1: File ""/Users/bcimini/Documents/GitHub/CellProfiler/core/cellprofiler_core/utilities/zmq/__init__.py"", line 70, in encoder
|
| 5156 |
Worker 1: raise TypeError(""%r of type %r is not JSON serializable"" % (data, type(data)))
|
| 5157 |
-
Worker 1: TypeError: b'iVBORw0KGgoAAAANSUhEUgA[...]I=' of type <class 'bytes'> is not JSON serializable",TypeError
|
| 5158 |
"def get_available_translations():
|
| 5159 |
""""""
|
| 5160 |
List available translations for spyder based on the folders found in the
|
|
@@ -5225,7 +5225,7 @@ File ""/home/yang/anaconda3/lib/python3.6/site-packages/spyder/config/base.py"",
|
|
| 5225 |
spyder_languages = get_available_translations()
|
| 5226 |
File ""/home/yang/anaconda3/lib/python3.6/site-packages/spyder/config/base.py"", line 297, in get_available_translations
|
| 5227 |
error = _('Update LANGUAGE_CODES (inside config/base.py) if a new '
|
| 5228 |
-
NameError: name '_' is not defined",NameError
|
| 5229 |
"def render_config(self, spec, conf, vlan_info):
|
| 5230 |
""""""
|
| 5231 |
Render config as dictionary structure and delete keys
|
|
@@ -5328,7 +5328,7 @@ An exception occurred during task execution. To see the full traceback, use -vvv
|
|
| 5328 |
fatal: [sccs-2ug-07]: FAILED! => {""changed"": false, ""module_stderr"": ""Traceback (most recent call last):\n File \""/home/misch/.ansible/tmp/ansible-local-112400ljdojbw/ansible-tmp-1573048754.5352461-196207205443014/AnsiballZ_ios_vlans.py\"", line 102, in <module>\n _ansiballz_main()\n File \""/home/misch/.ansible/tmp/ansible-local-112400ljdojbw/ansible-tmp-1573048754.5352461-196207205443014/AnsiballZ_ios_vlans.py\"", line 94, in _ansiballz_main\n invoke_module(zipped_mod, temp_path, ANSIBALLZ_PARAMS)\n File \""/home/misch/.ansible/tmp/ansible-local-112400ljdojbw/ansible-tmp-1573048754.5352461-196207205443014/AnsiballZ_ios_vlans.py\"", line 40, in invoke_module\n runpy.run_module(mod_name='ansible.modules.network.ios.ios_vlans', init_globals=None, run_name='__main__', alter_sys=False)\n File \""/usr/lib64/python3.6/runpy.py\"", line 208, in run_module\n return _run_code(code, {}, init_globals, run_name, mod_spec)\n File \""/usr/lib64/python3.6/runpy.py\"", line 85, in _run_code\n exec(code, run_globals)\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/modules/network/ios/ios_vlans.py\"", line 464, in <module>\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/modules/network/ios/ios_vlans.py\"", line 459, in main\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/config/vlans/vlans.py\"", line 63, in execute_module\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/config/vlans/vlans.py\"", line 47, in get_interfaces_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/facts/facts.py\"", line 68, in get_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/common/facts/facts.py\"", line 105, in get_network_resources_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/facts/vlans/vlans.py\"", line 69, in populate_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/facts/vlans/vlans.py\"", line 115, in render_config\nTypeError: 'filter' object is not subscriptable\n"", ""module_stdout"": """", ""msg"": ""MODULE FAILURE\nSee stdout/stderr for the exact error"", ""rc"": 1}
|
| 5329 |
|
| 5330 |
PLAY RECAP **************************************************************************************************************
|
| 5331 |
-
sccs-2ug-07 : ok=1 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0",TypeError
|
| 5332 |
"def check_handle_timedout(timeoutvalue: int) -> None:
|
| 5333 |
""""""
|
| 5334 |
Check if any orders are timed out and cancel if neccessary
|
|
@@ -5447,7 +5447,7 @@ File ""/home/freqtrade/freqtrade/freqtrade/exchange/__init__.py"", line 150, in
|
|
| 5447 |
return _API.cancel_order(order_id)
|
| 5448 |
File ""/home/freqtrade/freqtrade/freqtrade/exchange/bittrex.py"", line 197, in cancel_order
|
| 5449 |
order_id=order_id))
|
| 5450 |
-
freqtrade.OperationalException: ORDER_NOT_OPEN params=(03b02exx-adxx-4xx9-xxfc-xx258XXX26xx)",freqtrade.OperationalException
|
| 5451 |
"def render_GET(self, request):
|
| 5452 |
""""""
|
| 5453 |
.. http:get:: /torrents/(string: torrent infohash)/health
|
|
@@ -5608,7 +5608,7 @@ RuntimeError: [Failure instance: Traceback: <type 'exceptions.AttributeError'>:
|
|
| 5608 |
/usr/share/tribler/Tribler/Core/Modules/restapi/torrents_endpoint.py:218:on_request_error
|
| 5609 |
/usr/lib/python2.7/site-packages/twisted/web/server.py:234:write
|
| 5610 |
/usr/lib/python2.7/site-packages/twisted/web/http.py:1084:write
|
| 5611 |
-
]",RuntimeError
|
| 5612 |
"def transform(self, y):
|
| 5613 |
""""""Transform labels to normalized encoding.
|
| 5614 |
|
|
@@ -5678,7 +5678,7 @@ File ""[...]\Python36\lib\site-packages\numpy\core\fromnumeric.py"", line 67, in
|
|
| 5678 |
return _wrapit(obj, method, *args, **kwds)
|
| 5679 |
File ""[...]\Python36\lib\site-packages\numpy\core\fromnumeric.py"", line 47, in _wrapit
|
| 5680 |
result = getattr(asarray(obj), method)(*args, **kwds)
|
| 5681 |
-
TypeError: Cannot cast array data from dtype('float64') to dtype('<U32') according to the rule 'safe'",TypeError
|
| 5682 |
"def solve_collocation_system(
|
| 5683 |
fun, t, y, h, Z0, scale, tol, LU_real, LU_complex, solve_lu
|
| 5684 |
):
|
|
@@ -5869,7 +5869,7 @@ File ""/Users/gabriel/Library/Python/3.7/lib/python/site-packages/scipy/integrat
|
|
| 5869 |
LU_real, LU_complex, self.solve_lu)
|
| 5870 |
File ""/Users/gabriel/Library/Python/3.7/lib/python/site-packages/scipy/integrate/_ivp/radau.py"", line 138, in solve_collocation_system
|
| 5871 |
return converged, k + 1, Z, rate
|
| 5872 |
-
UnboundLocalError: local variable 'rate' referenced before assignment",UnboundLocalError
|
| 5873 |
"def parse_txt_dict(data, msg):
|
| 5874 |
""""""Parse DNS TXT record containing a dict.""""""
|
| 5875 |
output = {}
|
|
@@ -5904,7 +5904,7 @@ File ""/home/jacob/.local/lib/python3.6/site-packages/pyatv/udns.py"", line 58,
|
|
| 5904 |
key, value = prop.split(b'=')
|
| 5905 |
ValueError: too many values to unpack (expected 2)
|
| 5906 |
Scan Results
|
| 5907 |
-
========================================",ValueError
|
| 5908 |
"def main():
|
| 5909 |
argument_spec = ec2_argument_spec()
|
| 5910 |
argument_spec.update(
|
|
@@ -6782,7 +6782,7 @@ fatal: [localhost]: FAILED! => {
|
|
| 6782 |
""module_stdout"": """",
|
| 6783 |
""msg"": ""MODULE FAILURE"",
|
| 6784 |
""rc"": 0
|
| 6785 |
-
}",UnboundLocalError
|
| 6786 |
"def append(self, cmd):
|
| 6787 |
if not self.remember_history:
|
| 6788 |
return
|
|
@@ -6874,7 +6874,7 @@ cursor.execute(sql, (input,))
|
|
| 6874 |
sqlite3.OperationalError: database or disk is full
|
| 6875 |
Xonsh encountered an issue during launch
|
| 6876 |
Failback to /bin/bash
|
| 6877 |
-
(base) pc@pc:~$",sqlite3.OperationalError
|
| 6878 |
"def batch_to(data):
|
| 6879 |
# try to move torchtext data first
|
| 6880 |
if TORCHTEXT_AVAILABLE and isinstance(data, Batch):
|
|
@@ -6914,7 +6914,7 @@ AttributeError Traceback (most recent call last)
|
|
| 6914 |
118 setattr(device_data, field, device_field)
|
| 6915 |
119 return device_data
|
| 6916 |
|
| 6917 |
-
AttributeError: 'Batch' object has no attribute 'TITLE'",AttributeError
|
| 6918 |
"def pageChanged(self, event):
|
| 6919 |
""""""Event called when the user swtiches between editor tabs.""""""
|
| 6920 |
old = event.GetOldSelection()
|
|
@@ -7021,7 +7021,7 @@ File ""C:\Program Files\PsychoPy3\lib\site-packages\psychopy\app\coder\coder.py"
|
|
| 7021 |
oldPage = self.notebook.GetPage(old)
|
| 7022 |
File ""C:\Program Files\PsychoPy3\lib\site-packages\wx\lib\agw\aui\auibook.py"", line 4440, in GetPage
|
| 7023 |
raise Exception(""invalid notebook page"")
|
| 7024 |
-
Exception: invalid notebook page",Exception
|
| 7025 |
"def _add_group(self, host, result_item):
|
| 7026 |
""""""
|
| 7027 |
Helper function to add a group (if it does not exist), and to assign the
|
|
@@ -7138,7 +7138,7 @@ File ""/usr/local/lib/python3.5/dist-packages/ansible/plugins/strategy/__init__.
|
|
| 7138 |
self._add_group(original_host, result_item)
|
| 7139 |
File ""/usr/local/lib/python3.5/dist-packages/ansible/plugins/strategy/__init__.py"", line 632, in _add_group
|
| 7140 |
real_host = self._inventory.hosts[host.name]
|
| 7141 |
-
KeyError: 'localhost'",KeyError
|
| 7142 |
"def msg(self, text=None, from_obj=None, session=None, options=None, **kwargs):
|
| 7143 |
""""""
|
| 7144 |
Evennia -> User
|
|
@@ -7235,7 +7235,7 @@ File ""/evennia/evennia/server/amp.py"", line 319, in <lambda>
|
|
| 7235 |
dumps = lambda data: to_str(pickle.dumps(to_str(data), pickle.HIGHEST_PROTOCOL))
|
| 7236 |
File ""/pyenv/local/lib/python2.7/site-packages/twisted/persisted/styles.py"", line 119, in _pickleFunction
|
| 7237 |
tuple([""."".join([f.__module__, f.__qualname__])]))
|
| 7238 |
-
AttributeError: 'function' object has no attribute '__qualname__'",AttributeError
|
| 7239 |
"def html(self, obj, fmt=None, css=None, comm=True, **kwargs):
|
| 7240 |
""""""
|
| 7241 |
Renders plot or data structure and wraps the output in HTML.
|
|
@@ -7365,7 +7365,7 @@ AttributeError: 'function' object has no attribute '__qualname__'",AttributeErro
|
|
| 7365 |
AttributeError: 'NoneType' object has no attribute 'format'
|
| 7366 |
|
| 7367 |
Out[13]:
|
| 7368 |
-
:DynamicMap []",AttributeError
|
| 7369 |
"def _wait_for_task(task, vm_name, task_type, sleep_seconds=1, log_level=""debug""):
|
| 7370 |
time_counter = 0
|
| 7371 |
starttime = time.time()
|
|
@@ -7425,7 +7425,7 @@ Exception: None
|
|
| 7425 |
<machine>:
|
| 7426 |
----------
|
| 7427 |
Error:
|
| 7428 |
-
Error creating <machine>: None",Exception
|
| 7429 |
"def close(self):
|
| 7430 |
if self.conn and not self._closed:
|
| 7431 |
self.conn.shutdown(socket.SHUT_RDWR)
|
|
@@ -7528,7 +7528,7 @@ File ""/judge/dmoj/packet.py"", line 145, in close
|
|
| 7528 |
self.conn.shutdown(socket.SHUT_RDWR)
|
| 7529 |
File ""/usr/lib/python3.8/ssl.py"", line 1280, in shutdown
|
| 7530 |
super().shutdown(how)
|
| 7531 |
-
OSError: [Errno 107] Transport endpoint is not connected",BrokenPipeError
|
| 7532 |
"@classmethod
|
| 7533 |
def write_content(cls, filename, content, rewrite_html=True):
|
| 7534 |
""""""Write content to file.""""""
|
|
@@ -7579,7 +7579,7 @@ File ""/usr/local/lib/python3.5/site-packages/nikola/plugins/basic_import.py"",
|
|
| 7579 |
doc = html.document_fromstring(content)
|
| 7580 |
File ""/usr/local/lib/python3.5/site-packages/lxml/html/__init__.py"", line 755, in document_fromstring
|
| 7581 |
""Document is empty"")
|
| 7582 |
-
lxml.etree.ParserError: Document is empty",lxml.etree.ParserError
|
| 7583 |
"def _restore_or_init_optimizer(
|
| 7584 |
self,
|
| 7585 |
completed_trials: ""List[optuna.trial.FrozenTrial]"",
|
|
@@ -7677,7 +7677,7 @@ File ""mtrand.pyx"", line 745, in numpy.random.mtrand.RandomState.randint
|
|
| 7677 |
|
| 7678 |
File ""_bounded_integers.pyx"", line 1360, in numpy.random._bounded_integers._rand_int32
|
| 7679 |
|
| 7680 |
-
ValueError: high is out of bounds for int32",ValueError
|
| 7681 |
"def setup_vpn(runner: Runner, args):
|
| 7682 |
runner.require(
|
| 7683 |
[""sshuttle-telepresence""], ""Part of the Telepresence package. Try reinstalling.""
|
|
@@ -7741,7 +7741,7 @@ File ""/usr/lib64/python3.6/subprocess.py"", line 709, in __init__
|
|
| 7741 |
restore_signals, start_new_session)
|
| 7742 |
File ""/usr/lib64/python3.6/subprocess.py"", line 1344, in _execute_child
|
| 7743 |
raise child_exception_type(errno_num, err_msg, err_filename)
|
| 7744 |
-
FileNotFoundError: [Errno 2] No such file or directory: 'bash--norc': 'bash--norc'",FileNotFoundError
|
| 7745 |
"@classmethod
|
| 7746 |
def from_line(cls, line):
|
| 7747 |
""""""Create a Log Line from a string line.
|
|
@@ -7877,7 +7877,7 @@ Traceback (most recent call last):
|
|
| 7877 |
lines = line.split('\n')
|
| 7878 |
File ""C:\Python27\lib\encodings\cp1252.py"", line 15, in decode
|
| 7879 |
return codecs.charmap_decode(input,errors,decoding_table)
|
| 7880 |
-
UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 106: character maps to <undefined>",UnicodeDecodeError
|
| 7881 |
"def get_ticker_history(self, pair: str, tick_interval: int) -> List[Dict]:
|
| 7882 |
if tick_interval == 1:
|
| 7883 |
interval = ""oneMin""
|
|
@@ -7949,7 +7949,7 @@ File ""/Users/sgrimm/dev/cryptos/bots/freqtrade/freqtrade/exchange/__init__.py""
|
|
| 7949 |
return _API.get_ticker_history(pair, tick_interval)
|
| 7950 |
File ""/Users/sgrimm/dev/cryptos/bots/freqtrade/freqtrade/exchange/bittrex.py"", line 106, in get_ticker_history
|
| 7951 |
for tick in data['result']:
|
| 7952 |
-
TypeError: 'NoneType' object is not iterable",TypeError
|
| 7953 |
"def validateMasterArgument(self, master_arg):
|
| 7954 |
""""""
|
| 7955 |
Parse the <master> argument.
|
|
@@ -8034,7 +8034,7 @@ File ""/usr/lib/python3/dist-packages/buildbot_worker/scripts/runner.py"", line
|
|
| 8034 |
self['host'], self['port'] = self.validateMasterArgument(master)
|
| 8035 |
File ""/usr/lib/python3/dist-packages/buildbot_worker/scripts/runner.py"", line 161, in validateMasterArgument
|
| 8036 |
master, port = master_arg.split("":"")
|
| 8037 |
-
ValueError: too many values to unpack (expected 2)",ValueError
|
| 8038 |
"def highest_precedence_type(exprs):
|
| 8039 |
# Return the highest precedence type from the passed expressions. Also
|
| 8040 |
# verifies that there are valid implicit casts between any of the types and
|
|
@@ -8193,7 +8193,7 @@ KeyError Traceback (most recent call last)
|
|
| 8193 |
169
|
| 8194 |
170 scores.append((score, k))
|
| 8195 |
|
| 8196 |
-
KeyError: 'timestamp'",KeyError
|
| 8197 |
"def list_nodes(full=False, call=None):
|
| 8198 |
""""""
|
| 8199 |
list of nodes, keeping only a brief listing
|
|
@@ -8417,7 +8417,7 @@ return future_cell[0].result()
|
|
| 8417 |
File ""/usr/lib64/python2.7/site-packages/tornado/concurrent.py"", line 214, in result
|
| 8418 |
raise_exc_info(self._exc_info)
|
| 8419 |
File ""<string>"", line 3, in raise_exc_info
|
| 8420 |
-
gaierror: [Errno -2] Name or service not known",gaierror
|
| 8421 |
"def run_job(self, name):
|
| 8422 |
""""""
|
| 8423 |
Run a schedule job now
|
|
@@ -8510,7 +8510,7 @@ File ""/usr/lib/python2.7/site-packages/salt/utils/schedule.py"", line 467, in r
|
|
| 8510 |
datetime.datetime.now())
|
| 8511 |
File ""/usr/lib/python2.7/site-packages/salt/utils/schedule.py"", line 212, in _check_max_running
|
| 8512 |
if not data['run']:
|
| 8513 |
-
KeyError: u'run'",KeyError
|
| 8514 |
"def object_description(object):
|
| 8515 |
# type: (Any) -> unicode
|
| 8516 |
""""""A repr() implementation that returns text safe to use in reST context.""""""
|
|
@@ -8583,7 +8583,7 @@ File ""/usr/lib/python2.7/site-packages/sphinx/util/inspect.py"", line 243, in o
|
|
| 8583 |
sorted_keys = sorted(object)
|
| 8584 |
File ""/opt/fabrix/fabrix/config.py"", line 59, in __iter__
|
| 8585 |
return self.__super__getitem__(env.host_string).__iter__()
|
| 8586 |
-
KeyError: None",KeyError
|
| 8587 |
"def get_current_subtitles(video_path):
|
| 8588 |
""""""Returns a list of current subtitles for the episode
|
| 8589 |
|
|
@@ -8619,7 +8619,7 @@ File ""/home/dariox/.sickrage/sickbeard/subtitles.py"", line 325, in download_be
|
|
| 8619 |
get_subtitle_description(subtitle)), logger.DEBUG)
|
| 8620 |
File ""/home/dariox/.sickrage/sickbeard/subtitles.py"", line 489, in get_subtitle_description
|
| 8621 |
return subtitle.id + '-' + desc if desc not in subtitle.id else desc
|
| 8622 |
-
TypeError: argument of type 'int' is not iterable",TypeError
|
| 8623 |
"def get_additional_deps(self, file: MypyFile) -> List[Tuple[int, str, int]]:
|
| 8624 |
# for settings
|
| 8625 |
if file.fullname() == ""django.conf"" and self.django_context.django_settings_module:
|
|
@@ -8743,7 +8743,7 @@ File ""/usr/local/lib/python3.6/site-packages/mypy/plugin.py"", line 743, in get
|
|
| 8743 |
deps.extend(plugin.get_additional_deps(file))
|
| 8744 |
File ""/usr/local/lib/python3.6/site-packages/mypy_django_plugin/main.py"", line 152, in get_additional_deps
|
| 8745 |
related_model_module = related_model_cls.__module__
|
| 8746 |
-
AttributeError: 'NoneType' object has no attribute '__module__'",AttributeError
|
| 8747 |
"def show_tree(self):
|
| 8748 |
""""""Populate the tree with profiler data and display it.""""""
|
| 8749 |
self.initialize_view() # Clear before re-populating
|
|
@@ -8778,7 +8778,7 @@ File ""C:\ProgramData\Anaconda3\lib\site-packages\spyder_profiler\widgets\profil
|
|
| 8778 |
rootkey = self.find_root() # This root contains profiler overhead
|
| 8779 |
File ""C:\ProgramData\Anaconda3\lib\site-packages\spyder_profiler\widgets\profilergui.py"", line 507, in find_root
|
| 8780 |
self.profdata.sort_stats(""cumulative"")
|
| 8781 |
-
AttributeError: 'NoneType' object has no attribute 'sort_stats'",AttributeError
|
| 8782 |
"def _find_domains_or_certname(config, installer):
|
| 8783 |
""""""Retrieve domains and certname from config or user input.""""""
|
| 8784 |
domains = None
|
|
@@ -8856,7 +8856,7 @@ File ""/home/ubuntu/letsencrypt/certbot/main.py"", line 570, in run
|
|
| 8856 |
lineage.chain, lineage.fullchain)
|
| 8857 |
File ""/home/ubuntu/letsencrypt/certbot/client.py"", line 380, in deploy_certificate
|
| 8858 |
for dom in domains:
|
| 8859 |
-
TypeError: 'NoneType' object is not iterable",TypeError
|
| 8860 |
"def _catch_login_errors(func) -> Callable:
|
| 8861 |
""""""Detect AlexapyLoginError and attempt relogin.""""""
|
| 8862 |
import functools
|
|
@@ -8985,7 +8985,7 @@ File ""/usr/src/homeassistant/homeassistant/helpers/service.py"", line 373, in _
|
|
| 8985 |
await func(entity, data)
|
| 8986 |
File ""/config/custom_components/alexa_media/helpers.py"", line 159, in wrapper
|
| 8987 |
['configurator'])):
|
| 8988 |
-
KeyError: 'configurator'",alexapy.errors.AlexapyLoginError
|
| 8989 |
"def get_volume_info(volume, region):
|
| 8990 |
attachment = volume[""attachments""]
|
| 8991 |
|
|
@@ -9072,7 +9072,7 @@ fatal: [poc1-web -> localhost]: FAILED! => {
|
|
| 9072 |
""module_stdout"": """",
|
| 9073 |
""msg"": ""MODULE FAILURE\nSee stdout/stderr for the exact error"",
|
| 9074 |
""rc"": 1
|
| 9075 |
-
}",KeyError
|
| 9076 |
"def __init__(self, serial=""""):
|
| 9077 |
self._serial = serial
|
| 9078 |
# logging.log_path only exists when this is used in an Mobly test run.
|
|
@@ -9136,7 +9136,7 @@ File ""/usr/lib/python2.7/subprocess.py"", line 711, in __init__
|
|
| 9136 |
errread, errwrite)
|
| 9137 |
File ""/usr/lib/python2.7/subprocess.py"", line 1343, in _execute_child
|
| 9138 |
raise child_exception
|
| 9139 |
-
TypeError: execv() arg 2 must contain only strings",TypeError
|
| 9140 |
"def _get_series_episodes(self, task, config, series_name, series_url, series_info):
|
| 9141 |
log.info(""Retrieving new episodes for %s"", series_name)
|
| 9142 |
response = requests.get(
|
|
@@ -9185,7 +9185,7 @@ File ""/usr/local/lib/python2.7/dist-packages/flexget/plugins/input/npo_watchlis
|
|
| 9185 |
series_info = self._get_series_info(task, config, series_name, url)
|
| 9186 |
File ""/usr/local/lib/python2.7/dist-packages/flexget/plugins/input/npo_watchlist.py"", line 180, in _get_series_info
|
| 9187 |
series_info['npo_url'] = tvseries.find('a', itemprop='url')['href']
|
| 9188 |
-
AttributeError: 'NoneType' object has no attribute 'find'",AttributeError
|
| 9189 |
"def execute(self, cmdstr: str):
|
| 9190 |
""""""
|
| 9191 |
Execute a command string. May raise CommandError.
|
|
@@ -9244,7 +9244,7 @@ File ""/usr/lib/python3.5/shlex.py"", line 90, in get_token
|
|
| 9244 |
raw = self.read_token()
|
| 9245 |
File ""/usr/lib/python3.5/shlex.py"", line 185, in read_token
|
| 9246 |
raise ValueError(""No escaped character"")
|
| 9247 |
-
ValueError: No escaped character",ValueError
|
| 9248 |
"def update(self):
|
| 9249 |
""""""Update the stats.""""""
|
| 9250 |
if batinfo_tag:
|
|
@@ -9310,7 +9310,7 @@ File ""/usr/local/lib/python2.7/site-packages/psutil/__init__.py"", line 2263, i
|
|
| 9310 |
return _psplatform.sensors_battery()
|
| 9311 |
File ""/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py"", line 411, in sensors_battery
|
| 9312 |
percent, minsleft, power_plugged = cext.sensors_battery()
|
| 9313 |
-
OSError: [Errno 2] No such file or directory",OSError
|
| 9314 |
"@command.command(""export.file"")
|
| 9315 |
def file(self, fmt: str, f: flow.Flow, path: mitmproxy.types.Path) -> None:
|
| 9316 |
""""""
|
|
@@ -9383,7 +9383,7 @@ File ""/home/kajoj/Mitmproxy/mitmproxy/mitmproxy/command.py"", line 251, in wrap
|
|
| 9383 |
return function(*args, **kwargs)
|
| 9384 |
File ""/home/kajoj/Mitmproxy/mitmproxy/mitmproxy/tools/console/consoleaddons.py"", line 463, in grideditor_save
|
| 9385 |
with open(path, ""w"", newline='', encoding=""utf8"") as fp:
|
| 9386 |
-
PermissionError: [Errno 13] Permission denied: '/file.txt'",PermissionError
|
| 9387 |
"def __m3u_export(self, file_path, files):
|
| 9388 |
try:
|
| 9389 |
fhandler = open(file_path, ""w"")
|
|
@@ -9421,7 +9421,7 @@ File ""/home/nick/workspace/quodlibet/quodlibet/quodlibet/ext/songsmenu/playlist
|
|
| 9421 |
self.__m3u_export(file_path, files)
|
| 9422 |
File ""/home/nick/workspace/quodlibet/quodlibet/quodlibet/ext/songsmenu/playlist.py"", line 147, in __m3u_export
|
| 9423 |
fhandler.write(text.encode(""utf-8""))
|
| 9424 |
-
TypeError: write() argument must be str, not bytes",TypeError
|
| 9425 |
"@audioset.command()
|
| 9426 |
@checks.mod_or_permissions(administrator=True)
|
| 9427 |
async def thumbnail(self, ctx):
|
|
@@ -9450,7 +9450,7 @@ File ""/usr/local/lib/python3.7/site-packages/discord/ext/commands/core.py"", li
|
|
| 9450 |
ret = await coro(*args, **kwargs)
|
| 9451 |
File ""/usr/local/lib/python3.7/site-packages/redbot/cogs/audio/audio.py"", line 1100, in _playlist_list
|
| 9452 |
_(""Author: {name}"").format(self.bot.get_user(author)),
|
| 9453 |
-
KeyError: 'name'",KeyError
|
| 9454 |
"def on_play_file(self, file_info):
|
| 9455 |
self.window().left_menu_button_video_player.click()
|
| 9456 |
self.window().video_player_page.play_media_item(
|
|
@@ -9464,7 +9464,7 @@ KeyError: 'name'",KeyError,,
|
|
| 9464 |
",https://github.com/Tribler/tribler/issues/3681,"CWE-166: Improper Handling of Missing Special Element, CWE-754: Improper Check for Unusual or Exceptional Conditions",No checking if file_info is None,TriblerGUI/widgets/downloadsdetailstabwidget.py,DownloadsDetailsTabWidget.on_play_file,[4],"Traceback (most recent call last):
|
| 9465 |
File ""TriblerGUI/widgets/videoplayerpage.py"", line 155, in on_files_list_loaded
|
| 9466 |
File ""TriblerGUI/widgets/videoplayerpage.py"", line 178, in play_active_item
|
| 9467 |
-
TypeError: 'NoneType' object has no attribute '__getitem__'",TypeError
|
| 9468 |
"def delete_service_certificate(kwargs=None, conn=None, call=None):
|
| 9469 |
""""""
|
| 9470 |
.. versionadded:: 2015.8.0
|
|
@@ -9566,7 +9566,7 @@ File ""/usr/local/lib/python2.7/site-packages/salt/cloud/clouds/msazure.py"", li
|
|
| 9566 |
old_endpoints = list_input_endpoints(kwargs, call='function')
|
| 9567 |
File ""/usr/local/lib/python2.7/site-packages/salt/cloud/clouds/msazure.py"", line 2013, in list_input_endpoints
|
| 9568 |
for item in data:
|
| 9569 |
-
TypeError: 'NoneType' object is not iterable",TypeError
|
| 9570 |
"def normalize_known_hosts_key(key):
|
| 9571 |
""""""
|
| 9572 |
Transform a key, either taken from a known_host file or provided by the
|
|
@@ -9625,7 +9625,7 @@ File ""/tmp/ansible_nz17ajoh/ansible_module_known_hosts.py"", line 254, in searc
|
|
| 9625 |
hashed_host = normalize_known_hosts_key(hashed_lines[lnum])
|
| 9626 |
File ""/tmp/ansible_nz17ajoh/ansible_module_known_hosts.py"", line 278, in normalize_known_hosts_key
|
| 9627 |
if k[0][0] == '@':
|
| 9628 |
-
IndexError: list index out of range",IndexError
|
| 9629 |
"def shutdown_multiprocessing_logging_listener(daemonizing=False):
|
| 9630 |
global __MP_LOGGING_QUEUE
|
| 9631 |
global __MP_LOGGING_QUEUE_PROCESS
|
|
@@ -9723,7 +9723,7 @@ assert not self._closed
|
|
| 9723 |
AssertionError
|
| 9724 |
Logged from file setup.py, line 973
|
| 9725 |
send(obj)
|
| 9726 |
-
IOError: [Errno 232] The pipe is being closed",IOError
|
| 9727 |
"def run(self):
|
| 9728 |
""""""Start the primary Qt event loop for the interface""""""
|
| 9729 |
|
|
@@ -9787,7 +9787,7 @@ File ""openshot_qt/launch.py"", line 103, in <module>
|
|
| 9787 |
File ""openshot_qt/launch.py"", line 99, in main
|
| 9788 |
File ""I:\Temp\OpenShot-dev\01\{app}\classes\app.py"", line 231, in run
|
| 9789 |
log.error(""Couldn't save user settings on exit.\n{}"".format(ex))
|
| 9790 |
-
NameError: name 'log' is not defined",PermissionError
|
| 9791 |
"def _link_package_versions(self, link, search_name):
|
| 9792 |
""""""
|
| 9793 |
Return an iterable of triples (pkg_resources_version_key,
|
|
@@ -9895,7 +9895,7 @@ IOError: [Errno 2] No such file or directory: '/home/zyv/Desktop/build/pygame/se
|
|
| 9895 |
|
| 9896 |
----------------------------------------
|
| 9897 |
Command python setup.py egg_info failed with error code 1
|
| 9898 |
-
Storing complete log in /home/zyv/.pip/pip.log",IOError
|
| 9899 |
"def main(args):
|
| 9900 |
""""""
|
| 9901 |
Store the defect results in the specified input list as bug reports in the
|
|
@@ -10077,7 +10077,7 @@ File ""/home/compass/srv/CodeCheckerv6/workspace/install/CodeChecker/lib/python2
|
|
| 10077 |
s
|
| 10078 |
file_path = files[event['location']['file']]
|
| 10079 |
IndexError: list index out of range
|
| 10080 |
-
[14:02] - Session timeout for run 4",IndexError
|
| 10081 |
"def handle_compare(self, args):
|
| 10082 |
if len(args) < 2:
|
| 10083 |
print(""Error: missing argument"")
|
|
@@ -10284,7 +10284,7 @@ raise FlashFailure('init error: %i' % result, result_code=result)
|
|
| 10284 |
FlashFailure: init error: 536870913
|
| 10285 |
0008342:INFO:gdbserver:Client detached
|
| 10286 |
0008342:INFO:gdbserver:Client disconnected!
|
| 10287 |
-
0008546:INFO:server:Semihost server stopped",AttributeError
|
| 10288 |
"def query(self, view_kwargs):
|
| 10289 |
""""""
|
| 10290 |
query method for Attendees List
|
|
@@ -10397,7 +10397,7 @@ File ""/media/srv_twry/work/Projects/Community-Projects/Fossasia/open-event-serv
|
|
| 10397 |
return fn(*args, **kwargs)
|
| 10398 |
File ""/media/srv_twry/work/Projects/Community-Projects/Fossasia/open-event-server/app/api/helpers/permission_manager.py"", line 109, in is_user_itself
|
| 10399 |
if not user.is_admin and not user.is_super_admin and user.id != kwargs['user_id']:
|
| 10400 |
-
KeyError: 'user_id'",KeyError
|
| 10401 |
"@blocking_call_on_reactor_thread
|
| 10402 |
def load_communities(self):
|
| 10403 |
self._logger.info(""tribler: Preparing communities..."")
|
|
@@ -10546,7 +10546,7 @@ File ""lib\site-packages\twisted\internet\posixbase.py"", line 478, in listenTCP
|
|
| 10546 |
|
| 10547 |
File ""lib\site-packages\twisted\internet\tcp.py"", line 983, in startListening
|
| 10548 |
|
| 10549 |
-
twisted.internet.error.CannotListenError: Couldn't listen on any:55661: [Errno 10048] Elk socketadres (protocol/netwerkadres/poort) kan normaal slechts n keer worden gebruikt.",RuntimeError
|
| 10550 |
"def single_string(self):
|
| 10551 |
""""""Creates a long string with the ascii art.
|
| 10552 |
|
|
@@ -10583,7 +10583,7 @@ File ""C:\\projects\\qiskit-sdk-py\\examples\\python\\circuit_draw.py"", line 34
|
|
| 10583 |
print(bell_circuit)\r'
|
| 10584 |
File ""C:\\Python37\\lib\\encodings\\cp1252.py"", line 19, in encode\r'
|
| 10585 |
return codecs.charmap_encode(input,self.errors,encoding_table)[0]\r'
|
| 10586 |
-
UnicodeEncodeError: 'charmap' codec can't encode characters in position 8-12: character maps to <undefined>\r""",AssertionError
|
| 10587 |
"def EqualityString(self):
|
| 10588 |
""""""Return a string describing the EventObject in terms of object equality.
|
| 10589 |
|
|
@@ -10699,7 +10699,7 @@ File ""/usr/local/lib/python2.7/dist-packages/plaso-1.2.1_20150602-py2.7.egg/pla
|
|
| 10699 |
File ""/usr/local/lib/python2.7/dist-packages/plaso-1.2.1_20150602-py2.7.egg/plaso/parsers/interface.py"", line 256, in Parse
|
| 10700 |
File ""/usr/local/lib/python2.7/dist-packages/plaso-1.2.1_20150602-py2.7.egg/plaso/parsers/pe.py"", line 259, in ParseFileObject
|
| 10701 |
File ""/usr/local/lib/python2.7/dist-packages/plaso-1.2.1_20150602-py2.7.egg/plaso/parsers/pe.py"", line 132, in _GetSectionNames
|
| 10702 |
-
UnicodeDecodeError: 'ascii' codec can't decode byte 0x90 in position 7: ordinal not in range(128)",UnicodeDecodeError
|
| 10703 |
"def write_PN(fp, data_element, padding=b"" "", encoding=None):
|
| 10704 |
if not encoding:
|
| 10705 |
encoding = [default_encoding] * 3
|
|
@@ -10747,7 +10747,7 @@ UnicodeDecodeError: 'ascii' codec can't decode byte 0x90 in position 7: ordinal
|
|
| 10747 |
File ""<stdin>"", line 1, in <module>
|
| 10748 |
File ""../pydicom/pydicom/filewriter.py"", line 228, in write_PN
|
| 10749 |
val = [elem.encode(encoding) for elem in val]
|
| 10750 |
-
TypeError: encode() argument 1 must be string, not list",TypeError
|
| 10751 |
"def _connect(
|
| 10752 |
self,
|
| 10753 |
client,
|
|
@@ -10920,7 +10920,7 @@ File ""pssh/pssh_client.py"", line 689, in run_command
|
|
| 10920 |
self.get_output(cmd, output, encoding=encoding)
|
| 10921 |
File ""pssh/pssh_client.py"", line 778, in get_output
|
| 10922 |
stdout = self.host_clients[host].read_output_buffer(
|
| 10923 |
-
KeyError: '10.0.2.4'",KeyError
|
| 10924 |
"def _infer_xy_labels_3d(darray, x, y, rgb):
|
| 10925 |
""""""
|
| 10926 |
Determine x and y labels for showing RGB images.
|
|
@@ -11076,7 +11076,7 @@ ValueError Traceback (most recent call last)
|
|
| 11076 |
315 y, x = darray.dims
|
| 11077 |
316 elif x is None:
|
| 11078 |
|
| 11079 |
-
ValueError: DataArray must be 2d",ValueError
|
| 11080 |
"def guess_format(filename: Text) -> Text:
|
| 11081 |
""""""Applies heuristics to guess the data format of a file.
|
| 11082 |
|
|
@@ -11164,7 +11164,7 @@ File ""/Users/erohmensing/rasa/rasa/core/training/interactive.py"", line 566, in
|
|
| 11164 |
await _write_stories_to_file(story_path, events)
|
| 11165 |
File ""/Users/erohmensing/rasa/rasa/core/training/interactive.py"", line 764, in _write_stories_to_file
|
| 11166 |
with open(export_story_path, append_write, encoding=""utf-8"") as f:
|
| 11167 |
-
FileNotFoundError: [Errno 2] No such file or directory: ''",FileNotFoundError
|
| 11168 |
"def prepare(self):
|
| 11169 |
""""""Initialize important variables""""""
|
| 11170 |
if not hasattr(self, ""HOSTER_NAME""):
|
|
@@ -11241,7 +11241,7 @@ PluginParseError: 'Parse error (DIRECT LINK) - plugin may be out of date'
|
|
| 11241 |
04.09.2013 23:52:25 DEBUG UptoboxCom: URL: http://uptobox.com/d507fg2b4w9b
|
| 11242 |
04.09.2013 23:52:25 DEBUG UptoboxCom: {'status': 3, 'name': '', 'size': 0}
|
| 11243 |
04.09.2013 23:52:25 DEBUG UptoboxCom: uptobox.com | {u'rand': u'tisa6omstximt6fbfdyde7hp23iwxqsqnmymbly', u'method_premium': u'1', u'down_direct': u'1', u'referer': u'http://uptobox.com/d507fg2b4w9b', u'method_free': '', u'id': u'd507fg2b4w9b', u'op': u'download2'}
|
| 11244 |
-
04.09.2013 23:52:26 DEBUG UptoboxCom: DIRECT LINK: http://www5.uptobox.com:8080/d/uyyyv54jf4csmtsqkbyzmw3heem4lbpapk2uxggvw5e4lpffsqpijogg/Zone-Telechargement.comNCIS.S10E14.FRENCH.LD.HDTV.XviD-MiND.avi",PluginParseError
|
| 11245 |
"def mapper_fn(x):
|
| 11246 |
return mapper(x)
|
| 11247 |
","def mapper_fn(x):
|
|
@@ -11270,7 +11270,7 @@ KeyError Traceback (most recent call last)
|
|
| 11270 |
3185 keys = [key if isinstance(key, tuple) else (key,) for key in keys]
|
| 11271 |
3186
|
| 11272 |
|
| 11273 |
-
KeyError: 'day'",KeyError
|
| 11274 |
"def __call__(self, data, **metadata):
|
| 11275 |
opts = jsbeautifier.default_options()
|
| 11276 |
opts.indent_size = 2
|
|
@@ -11297,7 +11297,7 @@ token_text, token_type = self.get_next_token()
|
|
| 11297 |
File ""/Users/cortesi/mitmproxy/mitmproxy/mitmproxy/contrib/jsbeautifier/__init__.py"", line 443, in
|
| 11298 |
get_next_token
|
| 11299 |
if c in self.wordchar:
|
| 11300 |
-
TypeError: 'in <string>' requires string as left operand, not int",TypeError
|
| 11301 |
"def decode(
|
| 11302 |
self,
|
| 11303 |
inputs,
|
|
@@ -11512,7 +11512,7 @@ File ""/root/tf-1.4/local/lib/python2.7/site-packages/tensorflow/python/framewor
|
|
| 11512 |
self._traceback = self._graph._extract_stack() # pylint: disable=protected-access
|
| 11513 |
|
| 11514 |
InvalidArgumentError (see above for traceback): logits and labels must be same size: logits_size=[196,101] labels_size=[203,101]
|
| 11515 |
-
[[Node: seq2seq/parallel_1/seq2seq/SoftmaxCrossEntropyWithLogits = SoftmaxCrossEntropyWithLogits[T=DT_FLOAT, _device=""/job:localhost/replica:0/task:0/device:CPU:0""](seq2seq/parallel_1/seq2seq/Reshape, seq2seq/parallel_1/seq2seq/Reshape_1)]]",tensorflow.python.framework.errors_impl.InvalidArgumentError
|
| 11516 |
"def _update_terminal_region(
|
| 11517 |
self, tree, terminal_regions, leaf, X, y, residual, pred, sample_weight
|
| 11518 |
):
|
|
@@ -11589,7 +11589,7 @@ File ""/home/podda/.venvs/vermont/local/lib/python2.7/site-packages/sklearn/util
|
|
| 11589 |
_assert_all_finite(X.data if sp.issparse(X) else X)
|
| 11590 |
File ""/home/podda/.venvs/vermont/local/lib/python2.7/site-packages/sklearn/utils/validation.py"", line 58, in _assert_all_finite
|
| 11591 |
"" or a value too large for %r."" % X.dtype)
|
| 11592 |
-
ValueError: Input contains NaN, infinity or a value too large for dtype('float64').",ValueError
|
| 11593 |
"def install(self):
|
| 11594 |
# the file is a tar, so open it that way and extract it
|
| 11595 |
# to the specified (or default) roles directory
|
|
@@ -11974,7 +11974,7 @@ File ""/Users/jodewey/.pyenv/versions/3.6.1/lib/python3.6/distutils/version.py""
|
|
| 11974 |
c = self._cmp(other)
|
| 11975 |
File ""/Users/jodewey/.pyenv/versions/3.6.1/lib/python3.6/distutils/version.py"", line 337, in _cmp
|
| 11976 |
if self.version < other.version:
|
| 11977 |
-
TypeError: '<' not supported between instances of 'int' and 'str'",TypeError
|
| 11978 |
"def rescale(
|
| 11979 |
image,
|
| 11980 |
scale,
|
|
@@ -12207,7 +12207,7 @@ gaussian_filter1d(input, sigma, axis, order, output,
|
|
| 12207 |
File ""SOME_PATH\scipy\ndimage\filters.py"", line 257, in gaussian_filter1d
|
| 12208 |
lw = int(truncate * sd + 0.5)
|
| 12209 |
OverflowError: cannot convert float infinity to integer
|
| 12210 |
-
Process finished with exit code 1",OverflowError
|
| 12211 |
"def _build_laplacian(data, spacing, mask, beta, multichannel):
|
| 12212 |
l_x, l_y, l_z = data.shape[:3]
|
| 12213 |
edges = _make_graph_edges_3d(l_x, l_y, l_z)
|
|
@@ -12281,7 +12281,7 @@ File ""/Users/jni/conda/envs/all/lib/python3.8/site-packages/scipy/sparse/_index
|
|
| 12281 |
row = self._asindices(row, M)
|
| 12282 |
File ""/Users/jni/conda/envs/all/lib/python3.8/site-packages/scipy/sparse/_index.py"", line 169, in _asindices
|
| 12283 |
raise IndexError('index (%d) out of range' % max_indx)
|
| 12284 |
-
IndexError: index (6) out of range",IndexError
|
| 12285 |
"def hough_line_peaks(
|
| 12286 |
hspace,
|
| 12287 |
angles,
|
|
@@ -12430,7 +12430,7 @@ File ""C:\Users\Mark4\anaconda3\lib\site-packages\skimage\transform\hough_transf
|
|
| 12430 |
num_peaks=num_peaks)
|
| 12431 |
File ""C:\Users\Mark4\anaconda3\lib\site-packages\skimage\feature\peak.py"", line 316, in _prominent_peaks
|
| 12432 |
img_max[ycoords_nh, xcoords_nh] = 0
|
| 12433 |
-
IndexError: index -9 is out of bounds for axis 1 with size 1",IndexError
|
| 12434 |
"def _find_min_diff(image):
|
| 12435 |
""""""
|
| 12436 |
Find the minimal difference of grey levels inside the image.
|
|
@@ -12463,7 +12463,7 @@ File ""/usr/local/lib/python3.5/dist-packages/numpy/core/fromnumeric.py"", line
|
|
| 12463 |
out=out, **kwargs)
|
| 12464 |
File ""/usr/local/lib/python3.5/dist-packages/numpy/core/_methods.py"", line 29, in _amin
|
| 12465 |
return umr_minimum(a, axis, None, out, keepdims)
|
| 12466 |
-
ValueError: zero-size array to reduction operation minimum which has no identity",ValueError
|
| 12467 |
"def set_image(self, *, url):
|
| 12468 |
""""""Sets the image for the embed content.
|
| 12469 |
|
|
@@ -12530,7 +12530,7 @@ File ""D:\Programs\Python\Discord Bots\Bots\S4\s4\utils\embed.py"", line 35, in
|
|
| 12530 |
embed.set_thumbnail(url=Embed.Empty)
|
| 12531 |
File ""D:\Programs\Python\Discord Bots\Bots\S4\.venv\lib\site-packages\discord\embeds.py"", line 328, in set_thumbnail
|
| 12532 |
del self._thumbnail
|
| 12533 |
-
AttributeError: _thumbnail",AttributeError
|
| 12534 |
"def set_thumbnail(self, *, url):
|
| 12535 |
""""""Sets the thumbnail for the embed content.
|
| 12536 |
|
|
@@ -12597,7 +12597,7 @@ File ""D:\Programs\Python\Discord Bots\Bots\S4\s4\utils\embed.py"", line 35, in
|
|
| 12597 |
embed.set_thumbnail(url=Embed.Empty)
|
| 12598 |
File ""D:\Programs\Python\Discord Bots\Bots\S4\.venv\lib\site-packages\discord\embeds.py"", line 328, in set_thumbnail
|
| 12599 |
del self._thumbnail
|
| 12600 |
-
AttributeError: _thumbnail",AttributeError
|
| 12601 |
"def get_staticfiles_finders(self):
|
| 12602 |
""""""
|
| 12603 |
Returns a sorted mapping between the finder path and the list
|
|
@@ -12658,7 +12658,7 @@ File ""/Users/paul/.dev/police-records/.direnv/python-3.8.5/lib/python3.8/site-p
|
|
| 12658 |
directories, files = storage.listdir(location)
|
| 12659 |
File ""/Users/paul/.dev/police-records/.direnv/python-3.8.5/lib/python3.8/site-packages/django/core/files/storage.py"", line 316, in listdir
|
| 12660 |
for entry in os.scandir(path):
|
| 12661 |
-
FileNotFoundError: [Errno 2] No such file or directory: '/Users/paul/.dev/police-records/static'",FileNotFoundError
|
| 12662 |
"def invert(image, signed_float=False):
|
| 12663 |
""""""Invert an image.
|
| 12664 |
|
|
@@ -12827,7 +12827,7 @@ KeyError Traceback (most recent call last)
|
|
| 12827 |
51 if clip_negative:
|
| 12828 |
52 imin = 0
|
| 12829 |
|
| 12830 |
-
KeyError: <type 'numpy.uint64'>",KeyError
|
| 12831 |
"def detect_and_extract(self, image):
|
| 12832 |
""""""Detect oriented FAST keypoints and extract rBRIEF descriptors.
|
| 12833 |
|
|
@@ -12980,7 +12980,7 @@ IndexError Traceback (most recent call last)
|
|
| 12980 |
278 return _nx.concatenate(arrs, 0)
|
| 12981 |
279 else:
|
| 12982 |
|
| 12983 |
-
IndexError: list index out of range",IndexError
|
| 12984 |
"def blob_log(
|
| 12985 |
image,
|
| 12986 |
min_sigma=1,
|
|
@@ -13215,7 +13215,7 @@ IndexError: list index out of range",IndexError,,
|
|
| 13215 |
309 local_maxima = lm
|
| 13216 |
310 return _prune_blobs(local_maxima, overlap)
|
| 13217 |
|
| 13218 |
-
IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError
|
| 13219 |
"def blob_doh(
|
| 13220 |
image,
|
| 13221 |
min_sigma=1,
|
|
@@ -13466,7 +13466,7 @@ IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError,,
|
|
| 13466 |
309 local_maxima = lm
|
| 13467 |
310 return _prune_blobs(local_maxima, overlap)
|
| 13468 |
|
| 13469 |
-
IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError
|
| 13470 |
"def blob_dog(
|
| 13471 |
image,
|
| 13472 |
min_sigma=1,
|
|
@@ -13707,7 +13707,7 @@ IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError,,
|
|
| 13707 |
309 local_maxima = lm
|
| 13708 |
310 return _prune_blobs(local_maxima, overlap)
|
| 13709 |
|
| 13710 |
-
IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError
|
| 13711 |
"def random_walker(
|
| 13712 |
data,
|
| 13713 |
labels,
|
|
@@ -14305,7 +14305,7 @@ IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError,,
|
|
| 14305 |
460 for i in range(1, int(labels.max()) + 1):
|
| 14306 |
461 mask_i = np.squeeze(labels == i)
|
| 14307 |
|
| 14308 |
-
UnboundLocalError: local variable 'X' referenced before assignment",UnboundLocalError
|
| 14309 |
"def _load(self, jwt):
|
| 14310 |
if isinstance(jwt, text_type):
|
| 14311 |
jwt = jwt.encode(""utf-8"")
|
|
@@ -14386,7 +14386,7 @@ payload, signing_input, header, signature = self._load(jwt)
|
|
| 14386 |
File ""C:\Python27\lib\site-packages\jwt\api_jws.py"", line 135, in _load
|
| 14387 |
signing_input, crypto_segment = jwt.rsplit(b'.', 1)
|
| 14388 |
AttributeError: 'NoneType' object has no attribute 'rsplit'
|
| 14389 |
-
",AttributeError
|
| 14390 |
"def _verify_signature(
|
| 14391 |
self, payload, signing_input, header, signature, key="""", algorithms=None
|
| 14392 |
):
|
|
@@ -14433,7 +14433,7 @@ key, algorithms)
|
|
| 14433 |
File "".../site-packages/jwt/api_jws.py"", line 168, in _verify_signature
|
| 14434 |
alg = header['alg']
|
| 14435 |
KeyError: 'alg'
|
| 14436 |
-
",KeyError
|
| 14437 |
"def _from_data(self, guild):
|
| 14438 |
# according to Stan, this is always available even if the guild is unavailable
|
| 14439 |
# I don't have this guarantee when someone updates the guild.
|
|
@@ -14594,7 +14594,7 @@ File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discor
|
|
| 14594 |
cache_online_members = self._state._member_cache_flags.online
|
| 14595 |
File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\template.py"", line 75, in __getattr__
|
| 14596 |
raise AttributeError('PartialTemplateState does not support {0!r}.'.format(attr))
|
| 14597 |
-
AttributeError: PartialTemplateState does not support '_member_cache_flags'.",AttributeError
|
| 14598 |
"async def query_member_named(self, guild, argument):
|
| 14599 |
cache = guild._state._member_cache_flags.joined
|
| 14600 |
if len(argument) > 5 and argument[-5] == ""#"":
|
|
@@ -14633,7 +14633,7 @@ File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discor
|
|
| 14633 |
cache_online_members = self._state._member_cache_flags.online
|
| 14634 |
File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\template.py"", line 75, in __getattr__
|
| 14635 |
raise AttributeError('PartialTemplateState does not support {0!r}.'.format(attr))
|
| 14636 |
-
AttributeError: PartialTemplateState does not support '_member_cache_flags'.",AttributeError
|
| 14637 |
"async def query_member_by_id(self, bot, guild, user_id):
|
| 14638 |
ws = bot._get_websocket(shard_id=guild.shard_id)
|
| 14639 |
cache = guild._state._member_cache_flags.joined
|
|
@@ -14690,7 +14690,7 @@ File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discor
|
|
| 14690 |
cache_online_members = self._state._member_cache_flags.online
|
| 14691 |
File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\template.py"", line 75, in __getattr__
|
| 14692 |
raise AttributeError('PartialTemplateState does not support {0!r}.'.format(attr))
|
| 14693 |
-
AttributeError: PartialTemplateState does not support '_member_cache_flags'.",AttributeError
|
| 14694 |
"async def _create_socket(self, server_id, data):
|
| 14695 |
async with self._handshake_check:
|
| 14696 |
if self._handshaking:
|
|
@@ -14778,7 +14778,7 @@ packages\discord\voice_client.py:172> exception=gaierror(11001, 'getaddrinfo fai
|
|
| 14778 |
Traceback (most recent call last):
|
| 14779 |
File ""D:\Python\lib\site-packages\discord\voice_client.py"", line 192, in _create_socket
|
| 14780 |
self.endpoint_ip = socket.gethostbyname(self.endpoint)
|
| 14781 |
-
socket.gaierror: [Errno 11001] getaddrinfo failed",socket.gaierror
|
| 14782 |
"@classmethod
|
| 14783 |
def from_incomplete(cls, *, state, data):
|
| 14784 |
guild_id = int(data['guild']['id'])
|
|
@@ -14831,7 +14831,7 @@ File ""/usr/local/lib/python3.7/site-packages/discord/client.py"", line 1054, in
|
|
| 14831 |
return Invite.from_incomplete(state=self._connection, data=data)
|
| 14832 |
File ""/usr/local/lib/python3.7/site-packages/discord/invite.py"", line 278, in from_incomplete
|
| 14833 |
guild_id = int(data['guild']['id'])
|
| 14834 |
-
KeyError: 'guild'",KeyError
|
| 14835 |
"def execute_webhook(self, *, payload, wait=False, file=None, files=None):
|
| 14836 |
if file is not None:
|
| 14837 |
multipart = {""file"": file, ""payload_json"": utils.to_json(payload)}
|
|
@@ -14911,7 +14911,7 @@ File ""/usr/local/lib64/python3.7/site-packages/aiohttp/multipart.py"", line 745
|
|
| 14911 |
size = payload.size
|
| 14912 |
File ""/usr/local/lib64/python3.7/site-packages/aiohttp/payload.py"", line 284, in size
|
| 14913 |
return os.fstat(self._value.fileno()).st_size - self._value.tell()
|
| 14914 |
-
ValueError: I/O operation on closed file",ValueError
|
| 14915 |
"def send(
|
| 14916 |
self,
|
| 14917 |
content=None,
|
|
@@ -15160,7 +15160,7 @@ File ""/usr/local/lib64/python3.7/site-packages/aiohttp/multipart.py"", line 745
|
|
| 15160 |
size = payload.size
|
| 15161 |
File ""/usr/local/lib64/python3.7/site-packages/aiohttp/payload.py"", line 284, in size
|
| 15162 |
return os.fstat(self._value.fileno()).st_size - self._value.tell()
|
| 15163 |
-
ValueError: I/O operation on closed file",ValueError
|
| 15164 |
"def main(args=None):
|
| 15165 |
if args is None:
|
| 15166 |
args = sys.argv[1:]
|
|
@@ -15573,7 +15573,7 @@ File ""/usr/share/doc/s3ql/contrib/benchmark.py"", line 225, in <module>
|
|
| 15573 |
main(sys.argv[1:])
|
| 15574 |
File ""/usr/share/doc/s3ql/contrib/benchmark.py"", line 163, in main
|
| 15575 |
backend = ComprencBackend(b'pass', (alg, 6), Backend('local://' + backend_dir, None, None))
|
| 15576 |
-
TypeError: __init__() takes 2 positional arguments but 4 were given",TypeError
|
| 15577 |
"def post_process(
|
| 15578 |
self,
|
| 15579 |
i: int,
|
|
@@ -16012,7 +16012,7 @@ File ""/home/kan-bayashi/work/espnet/espnet/nets/batch_beam_search.py"", line 34
|
|
| 16012 |
running_hyps.yseq[torch.arange(n_batch), running_hyps.length - 1]
|
| 16013 |
IndexError: index 19 is out of bounds for dimension 1 with size 10
|
| 16014 |
# Accounting: time=335 threads=1
|
| 16015 |
-
# Ended (code 1) at Wed Sep 16 11:55:29 JST 2020, elapsed time 335 seconds",IndexError
|
| 16016 |
"def train(args):
|
| 16017 |
""""""Train with the given args.
|
| 16018 |
|
|
@@ -16890,7 +16890,7 @@ File ""/export/db/espnet/egs/voxforge/asr1/../../../espnet/bin/asr_train.py"", l
|
|
| 16890 |
train(args)
|
| 16891 |
File ""/export/db/espnet/espnet/asr/chainer_backend/asr.py"", line 81, in train
|
| 16892 |
if args.atype not in ['noatt', 'dot', 'location']:
|
| 16893 |
-
AttributeError: 'Namespace' object has no attribute 'atype'",AttributeError
|
| 16894 |
"def att_for(args):
|
| 16895 |
""""""Returns an attention layer given the program arguments.
|
| 16896 |
|
|
@@ -16943,7 +16943,7 @@ File ""/export/db/espnet/egs/voxforge/asr1/../../../espnet/bin/asr_train.py"", l
|
|
| 16943 |
train(args)
|
| 16944 |
File ""/export/db/espnet/espnet/asr/chainer_backend/asr.py"", line 81, in train
|
| 16945 |
if args.atype not in ['noatt', 'dot', 'location']:
|
| 16946 |
-
AttributeError: 'Namespace' object has no attribute 'atype'",AttributeError
|
| 16947 |
"def forward(
|
| 16948 |
self, xs, ilens, ys, labels, olens, spembs=None, spcs=None, *args, **kwargs
|
| 16949 |
):
|
|
@@ -17150,7 +17150,7 @@ File ""/home/abelab/k_inoue/work/tool/espnet/tools/venv/lib/python3.7/site-packa
|
|
| 17150 |
result = self.forward(*input, **kwargs)
|
| 17151 |
File ""/home/abelab/k_inoue/work/tool/espnet/espnet/nets/pytorch_backend/e2e_tts_tacotron2.py"", line 68, in forward
|
| 17152 |
losses = self.guided_attn_masks * att_ws
|
| 17153 |
-
RuntimeError: The size of tensor a (864) must match the size of tensor b (432) at non-singleton dimension 1",RuntimeError
|
| 17154 |
"def train(args):
|
| 17155 |
# display chainer version
|
| 17156 |
logging.info(""chainer version = "" + chainer.__version__)
|
|
@@ -17497,7 +17497,7 @@ File ""/home/christopher/gitrepos/espnet-1/src/lm/lm_chainer.py"", line 242, in
|
|
| 17497 |
x, t = convert.concat_examples(batch, gpu_id)
|
| 17498 |
UnboundLocalError: local variable 'gpu_id' referenced before assignment
|
| 17499 |
# Accounting: time=17 threads=1
|
| 17500 |
-
# Ended (code 1) at Fri Jul 27 22:34:01 UTC 2018, elapsed time 17 seconds",UnboundLocalError
|
| 17501 |
"def _decode(self, param):
|
| 17502 |
# make sure datetime, date and time are converted to string by force_text
|
| 17503 |
CONVERT_TYPES = (datetime.datetime, datetime.date, datetime.time)
|
|
@@ -17558,7 +17558,7 @@ django.db.utils.DataError: invalid input syntax for type json
|
|
| 17558 |
LINE 1: ...r"".""id"") WHERE ""app_model1"".""foo_versions"" = '''""{''''x...
|
| 17559 |
^
|
| 17560 |
DETAIL: Token ""'"" is invalid.
|
| 17561 |
-
CONTEXT: JSON data, line 1: '...",psycopg2.DataError
|
| 17562 |
"def _summary_coord_extra(self, coord, indent):
|
| 17563 |
# Returns the text needed to ensure this coordinate can be
|
| 17564 |
# distinguished from all others with the same name.
|
|
@@ -17621,7 +17621,7 @@ File ""[site-packages-path]/lib/python3.6/site-packages/iris/cube.py"", line 221
|
|
| 17621 |
extra = self._summary_coord_extra(coord, indent)
|
| 17622 |
File ""[site-packages-path]/lib/python3.6/site-packages/iris/cube.py"", line 2198, in _summary_coord_extra
|
| 17623 |
if attributes.setdefault(key, value) != value:
|
| 17624 |
-
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()",ValueError
|
| 17625 |
"def __init__(
|
| 17626 |
self,
|
| 17627 |
latitude_of_projection_origin=0.0,
|
|
@@ -17869,7 +17869,7 @@ y:axis = ""Y"" ;
|
|
| 17869 |
:comment = ""CORDEX Europe EUR-11 CNRM-ALADIN 6.3 L91 ECMWF-ERAINT: EUC12v63-1.100. Reference : Daniel M., Lemonsu A., Déqué M., Somot S., Alias A., Masson V. (2018) Benefits of explicit urban parametrization in regional climate modelling to study climate and city interactions. Climate Dynamics, 1-20, doi:10.1007/s00382-018-4289-x"" ;
|
| 17870 |
:frequency = ""day"" ;
|
| 17871 |
:tracking_id = ""hdl:21.14103/0efca508-2ffb-420b-8093-fffe58a7ae75"" ;
|
| 17872 |
-
}",TypeError
|
| 17873 |
"def __init__(
|
| 17874 |
self,
|
| 17875 |
latitude_of_projection_origin,
|
|
@@ -18141,7 +18141,7 @@ y:axis = ""Y"" ;
|
|
| 18141 |
:comment = ""CORDEX Europe EUR-11 CNRM-ALADIN 6.3 L91 ECMWF-ERAINT: EUC12v63-1.100. Reference : Daniel M., Lemonsu A., Déqué M., Somot S., Alias A., Masson V. (2018) Benefits of explicit urban parametrization in regional climate modelling to study climate and city interactions. Climate Dynamics, 1-20, doi:10.1007/s00382-018-4289-x"" ;
|
| 18142 |
:frequency = ""day"" ;
|
| 18143 |
:tracking_id = ""hdl:21.14103/0efca508-2ffb-420b-8093-fffe58a7ae75"" ;
|
| 18144 |
-
}",TypeError
|
| 18145 |
"def get_lockfile_meta(self):
|
| 18146 |
from .vendor.plette.lockfiles import PIPFILE_SPEC_CURRENT
|
| 18147 |
|
|
@@ -18208,7 +18208,7 @@ File ""/opt/miniconda3/lib/python3.7/site-packages/pipenv/project.py"", line 790
|
|
| 18208 |
sources = [dict(source) for source in self.parsed_pipfile[""source""]]
|
| 18209 |
File ""/opt/miniconda3/lib/python3.7/site-packages/pipenv/vendor/tomlkit/container.py"", line 500, in __getitem__
|
| 18210 |
raise NonExistentKey(key)
|
| 18211 |
-
tomlkit.exceptions.NonExistentKey: 'Key ""source"" does not exist.'",tomlkit.exceptions.NonExistentKey
|
| 18212 |
"@classmethod
|
| 18213 |
def get_deps_from_req(cls, req, resolver=None):
|
| 18214 |
# type: (Requirement, Optional[""Resolver""]) -> Tuple[Set[str], Dict[str, Dict[str, Union[str, bool, List[str]]]]]
|
|
@@ -18467,7 +18467,7 @@ File ""/usr/lib/python3.8/site-packages/pipenv/patched/piptools/repositories/pyp
|
|
| 18467 |
raise NoCandidateFound(ireq, all_candidates, self.finder)
|
| 18468 |
pipenv.patched.piptools.exceptions.NoCandidateFound: Could not find a version that matches pywin32==227
|
| 18469 |
No versions found
|
| 18470 |
-
Were https://pypi.org/simple or https://mirrors.aliyun.com/pypi/simple/ or https://pypi.tuna.tsinghua.edu.cn/simple reachable?",pipenv.patched.piptools.exceptions.NoCandidateFound
|
| 18471 |
"def do_outdated(pypi_mirror=None, pre=False, clear=False):
|
| 18472 |
# TODO: Allow --skip-lock here?
|
| 18473 |
from .vendor.requirementslib.models.requirements import Requirement
|
|
@@ -18664,7 +18664,7 @@ File ""C:\Users\gabri\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8
|
|
| 18664 |
do_outdated(clear=state.clear, pre=state.installstate.pre, pypi_mirror=state.pypi_mirror)
|
| 18665 |
File ""C:\Users\gabri\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\pipenv\core.py"", line 1845, in do_outdated
|
| 18666 |
reverse_deps = reverse_deps.get(name_in_pipfile)
|
| 18667 |
-
AttributeError: 'NoneType' object has no attribute 'get'",AttributeError
|
| 18668 |
"def ensure_project(
|
| 18669 |
three=None,
|
| 18670 |
python=None,
|
|
@@ -18842,7 +18842,7 @@ File ""/usr/lib/python3.7/site-packages/pipenv/cli/command.py"", line 319, in lo
|
|
| 18842 |
ensure_project(three=state.three, python=state.python, pypi_mirror=state.pypi_mirror)
|
| 18843 |
File ""/usr/lib/python3.7/site-packages/pipenv/core.py"", line 590, in ensure_project
|
| 18844 |
crayons.green(shorten_path(path_to_python)),
|
| 18845 |
-
TypeError: __str__ returned non-string (type NoneType)",TypeError
|
| 18846 |
"def get_item_dict():
|
| 18847 |
default_uom = frappe.db.get_single_value(""Stock Settings"", ""stock_uom"") or _(""Nos"")
|
| 18848 |
cost_center = frappe.db.get_value(""Company"", self.company, ""cost_center"")
|
|
@@ -18912,7 +18912,7 @@ File ""/Users/umairsayyed/frappe-bench/apps/frappe/frappe/model/document.py"", l
|
|
| 18912 |
fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
|
| 18913 |
File ""/Users/umairsayyed/frappe-bench/apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py"", line 68, in make_invoices
|
| 18914 |
if not row.qty:
|
| 18915 |
-
AttributeError: 'OpeningInvoiceCreationToolItem' object has no attribute 'qty'",AttributeError
|
| 18916 |
"def get_invoice_dict(self, row=None):
|
| 18917 |
def get_item_dict():
|
| 18918 |
default_uom = frappe.db.get_single_value(""Stock Settings"", ""stock_uom"") or _(
|
|
@@ -19044,7 +19044,7 @@ File ""/Users/umairsayyed/frappe-bench/apps/frappe/frappe/model/document.py"", l
|
|
| 19044 |
fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
|
| 19045 |
File ""/Users/umairsayyed/frappe-bench/apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py"", line 68, in make_invoices
|
| 19046 |
if not row.qty:
|
| 19047 |
-
AttributeError: 'OpeningInvoiceCreationToolItem' object has no attribute 'qty'",AttributeError
|
| 19048 |
"def make_invoices(self):
|
| 19049 |
names = []
|
| 19050 |
mandatory_error_msg = _(
|
|
@@ -19180,7 +19180,7 @@ File ""/Users/umairsayyed/frappe-bench/apps/frappe/frappe/model/document.py"", l
|
|
| 19180 |
fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
|
| 19181 |
File ""/Users/umairsayyed/frappe-bench/apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py"", line 68, in make_invoices
|
| 19182 |
if not row.qty:
|
| 19183 |
-
AttributeError: 'OpeningInvoiceCreationToolItem' object has no attribute 'qty'",AttributeError
|
| 19184 |
"def handle(self):
|
| 19185 |
from clikit.utils.terminal import Terminal
|
| 19186 |
from poetry.repositories.installed_repository import InstalledRepository
|
|
@@ -19546,7 +19546,7 @@ return getattr(handler, handler_method)(args, io, self)
|
|
| 19546 |
File ""/home/oakkitten/.poetry/lib/poetry/_vendor/py3.7/cleo/commands/command.py"", line 92, in wrap_handle
|
| 19547 |
return self.handle()
|
| 19548 |
File ""/home/oakkitten/.poetry/lib/poetry/console/commands/show.py"", line 177, in handle
|
| 19549 |
-
color, name, name_length - len(install_marker), install_marker",ValueError
|
| 19550 |
"def handle(self):
|
| 19551 |
from poetry.config.config import Config
|
| 19552 |
from poetry.config.config_source import ConfigSource
|
|
@@ -19885,7 +19885,7 @@ self._settings_config.add_property(key, normalizer(value))
|
|
| 19885 |
File ""/usr/local/lib/python3.7/dist-packages/poetry/config.py"", line 65, in add_property
|
| 19886 |
self.dump()
|
| 19887 |
File ""/usr/local/lib/python3.7/dist-packages/poetry/config.py"", line 101, in dump
|
| 19888 |
-
fd = os.open(str(self._file), os.O_WRONLY | os.O_CREAT, mode)",FileNotFoundError
|
| 19889 |
"def get_data():
|
| 19890 |
return frappe._dict(
|
| 19891 |
{
|
|
@@ -20015,7 +20015,7 @@ File ""/home/frappe/frappe-bench/apps/frappe/frappe/__init__.py"", line 376, in
|
|
| 20015 |
_raise_exception()
|
| 20016 |
File ""/home/frappe/frappe-bench/apps/frappe/frappe/__init__.py"", line 327, in _raise_exception
|
| 20017 |
raise raise_exception(msg)
|
| 20018 |
-
frappe.exceptions.DoesNotExistError: Company None not found",frappe.exceptions.DoesNotExistError
|
| 20019 |
"def delete_lead_addresses(company_name):
|
| 20020 |
""""""Delete addresses to which leads are linked""""""
|
| 20021 |
leads = frappe.get_all(""Lead"", filters={""company"": company_name})
|
|
@@ -20118,7 +20118,7 @@ File ""/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/c
|
|
| 20118 |
err.raise_mysql_exception(self._data)
|
| 20119 |
File ""/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/err.py"", line 107, in raise_mysql_exception
|
| 20120 |
raise errorclass(errno, errval)
|
| 20121 |
-
ProgrammingError: (1064, u""You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 's Seafood-Billing','New Wave Seafood-Billing','Sea Well Seafood, Inc.-Billing','' at line 1"")",ProgrammingError
|
| 20122 |
"def execute():
|
| 20123 |
language = frappe.get_single(""System Settings"").language
|
| 20124 |
|
|
@@ -20271,7 +20271,7 @@ File ""/home/frappe/frappe-bench/apps/frappe/frappe/__init__.py"", line 309, in
|
|
| 20271 |
_raise_exception()
|
| 20272 |
File ""/home/frappe/frappe-bench/apps/frappe/frappe/__init__.py"", line 284, in _raise_exception
|
| 20273 |
raise ValidationError(encode(msg))
|
| 20274 |
-
frappe.exceptions.ValidationError: Domain Manufacturing non esiste, selezionare un nuovo obiettivo da unire",frappe.exceptions.ValidationError
|
| 20275 |
"def set_actual_dates(self):
|
| 20276 |
self.actual_start_date = None
|
| 20277 |
self.actual_end_date = None
|
|
@@ -20332,7 +20332,7 @@ File ""/home/frappe/benches/bench-2017-10-02/apps/erpnext/erpnext/projects/docty
|
|
| 20332 |
pro.set_actual_dates()
|
| 20333 |
File ""/home/frappe/benches/bench-2017-10-02/apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py"", line 373, in set_actual_dates
|
| 20334 |
self.actual_start_date = min([d.actual_start_time for d in self.get(""operations"") if d.actual_start_time])
|
| 20335 |
-
ValueError: min() arg is an empty sequence",ValueError
|
| 20336 |
"def reorder_item():
|
| 20337 |
""""""Reorder item if stock reaches reorder level""""""
|
| 20338 |
# if initial setup not completed, return
|
|
@@ -20362,7 +20362,7 @@ File ""/home/frappe/press/benches/1505261338/apps/erpnext/erpnext/stock/reorder_
|
|
| 20362 |
return _reorder_item()
|
| 20363 |
File ""/home/frappe/press/benches/1505261338/apps/erpnext/erpnext/stock/reorder_item.py"", line 24, in _reorder_item
|
| 20364 |
frappe.db.sql(""""""select name from tabCompany limit 1"""""")[0][0])
|
| 20365 |
-
IndexError: tuple index out of range",IndexError
|
| 20366 |
"def log(
|
| 20367 |
name: str,
|
| 20368 |
log_path: Union[str, bool] = intelmq.DEFAULT_LOGGING_PATH,
|
|
@@ -20546,7 +20546,7 @@ File ""/usr/lib/python3/dist-packages/intelmq/lib/utils.py"", line 356, in log
|
|
| 20546 |
backupCount=log_max_copies)
|
| 20547 |
File ""/usr/lib/python3.7/logging/handlers.py"", line 145, in __init__
|
| 20548 |
if maxBytes > 0:
|
| 20549 |
-
TypeError: '>' not supported between instances of 'NoneType' and 'int'",TypeError
|
| 20550 |
"def start(
|
| 20551 |
self,
|
| 20552 |
starting: bool = True,
|
|
@@ -20924,7 +20924,7 @@ message = self.__source_pipeline.receive()
|
|
| 20924 |
File ""/usr/local/lib/python3.8/dist-packages/intelmq/lib/pipeline.py"", line 122, in receive
|
| 20925 |
raise exceptions.PipelineError(""There's already a message, first ""
|
| 20926 |
intelmq.lib.exceptions.PipelineError: pipeline failed - ""There's already a message, first acknowledge the existing one.""
|
| 20927 |
-
abusix-expert-cz: Bot will continue in 15 seconds.",intelmq.lib.exceptions.PipelineError
|
| 20928 |
"def add(
|
| 20929 |
self,
|
| 20930 |
key: str,
|
|
@@ -21152,7 +21152,7 @@ message = self.__source_pipeline.receive()
|
|
| 21152 |
File ""/usr/local/lib/python3.8/dist-packages/intelmq/lib/pipeline.py"", line 122, in receive
|
| 21153 |
raise exceptions.PipelineError(""There's already a message, first ""
|
| 21154 |
intelmq.lib.exceptions.PipelineError: pipeline failed - ""There's already a message, first acknowledge the existing one.""
|
| 21155 |
-
abusix-expert-cz: Bot will continue in 15 seconds.",intelmq.lib.exceptions.PipelineError
|
| 21156 |
"def parse_line(self, row, report):
|
| 21157 |
event = self.new_event(report)
|
| 21158 |
|
|
@@ -21260,7 +21260,7 @@ File ""/usr/lib/python3/dist-packages/intelmq/lib/bot.py"", line 978, in process
|
|
| 21260 |
events = list(filter(bool, value))
|
| 21261 |
File ""/usr/lib/python3/dist-packages/intelmq/bots/parsers/generic/parser_csv.py"", line 130, in parse_line
|
| 21262 |
raise InvalidValue(key, value)
|
| 21263 |
-
intelmq.lib.exceptions.InvalidValue: invalid value '-' (<class 'str'>) for key 'extra.cert_orgunit'",intelmq.lib.exceptions.InvalidValue
|
| 21264 |
"def process_message(self, uid, message):
|
| 21265 |
seen = False
|
| 21266 |
|
|
@@ -21366,7 +21366,7 @@ File ""/home/sebastianw/intelmq/intelmq/bots/collectors/mail/lib.py"", line 53,
|
|
| 21366 |
if self.process_message(uid, message):
|
| 21367 |
File ""/home/sebastianw/intelmq/intelmq/bots/collectors/mail/collector_mail_attach.py"", line 30, in process_message
|
| 21368 |
attach_filename = attach['filename']
|
| 21369 |
-
KeyError: 'filename'",KeyError
|
| 21370 |
"def parse(self, report):
|
| 21371 |
if self.mode == ""fixed"":
|
| 21372 |
return self.parse_csv_dict(report)
|
|
@@ -21436,7 +21436,7 @@ File ""/usr/local/lib/python3.6/dist-packages/intelmq/lib/bot.py"", line 942, in
|
|
| 21436 |
for line in self.parse(report):
|
| 21437 |
File ""/usr/local/lib/python3.6/dist-packages/intelmq/bots/parsers/shadowserver/parser.py"", line 65, in parse
|
| 21438 |
filename_search = self.__is_filename_regex.search(self.report_name)
|
| 21439 |
-
TypeError: expected string or bytes-like object",TypeError
|
| 21440 |
"def process(self):
|
| 21441 |
event = self.receive_message()
|
| 21442 |
event.set_default_value()
|
|
@@ -21534,7 +21534,7 @@ File ""/usr/lib/python3.6/site-packages/intelmq/lib/bot.py"", line 264, in start
|
|
| 21534 |
self.process()
|
| 21535 |
File ""/usr/lib/python3.6/site-packages/intelmq/bots/outputs/smtp/output.py"", line 52, in process
|
| 21536 |
smtp.auth(smtp.auth_plain, user=self.username, password=self.password)
|
| 21537 |
-
TypeError: auth() got an unexpected keyword argument 'user'",TypeError
|
| 21538 |
"def _process(self, dryrun, msg, show):
|
| 21539 |
if msg:
|
| 21540 |
msg = MessageFactory.serialize(self.arg2msg(msg))
|
|
@@ -21621,7 +21621,7 @@ File ""/usr/lib/python3.6/site-packages/intelmq/lib/bot_debugger.py"", line 142,
|
|
| 21621 |
self.instance.process()
|
| 21622 |
File ""/usr/lib/python3.6/site-packages/intelmq/bots/experts/filter/expert.py"", line 125, in process
|
| 21623 |
path_permissive=True)
|
| 21624 |
-
TypeError: <lambda>() got an unexpected keyword argument 'path_permissive'",TypeError
|
| 21625 |
"def create_parser():
|
| 21626 |
parser = argparse.ArgumentParser(
|
| 21627 |
prog=""download_mapping"",
|
|
@@ -21733,7 +21733,7 @@ Traceback (most recent call last):
|
|
| 21733 |
File ""./contrib/malware_name_mapping/download_mapping.py"", line 99, in <module>
|
| 21734 |
params=zip(args.expression, args.identifier),
|
| 21735 |
TypeError: zip argument #1 must support iteration
|
| 21736 |
-
root@intelmq-001:/opt/dev_intelmq#",TypeError
|
| 21737 |
"def process(self):
|
| 21738 |
event = self.receive_message()
|
| 21739 |
procedure = Procedure.CONTINUE
|
|
@@ -21790,7 +21790,7 @@ File ""/usr/lib/python3/dist-packages/intelmq/lib/bot.py"", line 167, in start
|
|
| 21790 |
self.process()
|
| 21791 |
File ""/usr/lib/python3/dist-packages/intelmq/bots/experts/sieve/expert.py"", line 86, in process
|
| 21792 |
for rule in self.sieve.rules:
|
| 21793 |
-
AttributeError: 'str' object has no attribute 'rules'",AttributeError
|
| 21794 |
"def process(self):
|
| 21795 |
""""""Stop the Bot if cannot connect to AMQP Server after the defined connection attempts""""""
|
| 21796 |
|
|
@@ -21871,7 +21871,7 @@ File ""/usr/lib/python3/dist-packages/pika/adapters/blocking_connection.py"", li
|
|
| 21871 |
immediate=immediate)
|
| 21872 |
File ""/usr/lib/python3/dist-packages/pika/channel.py"", line 332, in basic_publish
|
| 21873 |
body = body.encode('utf-8')
|
| 21874 |
-
UnicodeEncodeError: 'utf-8' codec can't encode character '\udbef' in position 215395: surrogates not allowed",UnicodeEncodeError
|
| 21875 |
"def generate_reports(
|
| 21876 |
report_template: Report,
|
| 21877 |
infile: BinaryIO,
|
|
@@ -21978,7 +21978,7 @@ File ""/usr/lib/python3/dist-packages/intelmq/lib/splitreports.py"", line 125, i
|
|
| 21978 |
report.add(""raw"", infile.read(), force=True)
|
| 21979 |
File ""/usr/lib/python3/dist-packages/intelmq/lib/message.py"", line 212, in add
|
| 21980 |
raise exceptions.InvalidValue(key, value, reason=valid_value[1])
|
| 21981 |
-
intelmq.lib.exceptions.InvalidValue: invalid value '' (<class 'str'>) for key 'raw' is_valid returned False.",intelmq.lib.exceptions.InvalidValue
|
| 21982 |
"def process(self):
|
| 21983 |
mailbox = self.connect_mailbox()
|
| 21984 |
emails = mailbox.messages(folder=self.parameters.folder, unread=True)
|
|
@@ -22157,7 +22157,7 @@ File ""/opt/intelmq/venv/lib/python3.5/site-packages/intelmq-1.0.0.dev7-py3.5.eg
|
|
| 22157 |
report.add(""raw"", infile.read(), force=True)
|
| 22158 |
File ""/opt/intelmq/venv/lib/python3.5/site-packages/intelmq-1.0.0.dev7-py3.5.egg/intelmq/lib/message.py"", line 212, in add
|
| 22159 |
raise exceptions.InvalidValue(key, value, reason=valid_value[1])
|
| 22160 |
-
intelmq.lib.exceptions.InvalidValue: invalid value '' (<class 'str'>) for key 'raw' is_valid returned False.",intelmq.lib.exceptions.InvalidValue
|
| 22161 |
"def acknowledge_message(self):
|
| 22162 |
self.__source_pipeline.acknowledge()
|
| 22163 |
","def acknowledge_message(self):
|
|
@@ -22185,7 +22185,7 @@ File ""/home/sebastian/dev/intelmq/intelmq/lib/bot.py"", line 225, in start
|
|
| 22185 |
self.acknowledge_message()
|
| 22186 |
File ""/home/sebastian/dev/intelmq/intelmq/lib/bot.py"", line 393, in acknowledge_message
|
| 22187 |
self.__source_pipeline.acknowledge()
|
| 22188 |
-
AttributeError: 'NoneType' object has no attribute 'acknowledge'",AttributeError
|
| 22189 |
"@staticmethod
|
| 22190 |
def sanitize(value):
|
| 22191 |
value = value.strip('.')
|
|
@@ -22211,7 +22211,7 @@ File "".../intelmq/intelmq/lib/message.py"", line 281, in __sanitize_value
|
|
| 22211 |
return class_reference().sanitize(value)
|
| 22212 |
File "".../intelmq/intelmq/lib/harmonization.py"", line 381, in sanitize
|
| 22213 |
return value.encode('idna').decode().lower()
|
| 22214 |
-
UnicodeError: encoding with 'idna' codec failed (UnicodeError: label empty or too long)",UnicodeError
|
| 22215 |
"def process(self):
|
| 22216 |
""""""
|
| 22217 |
The Ransomware Tracker has comments in it.
|
|
@@ -22345,7 +22345,7 @@ UnicodeError: encoding with 'idna' codec failed (UnicodeError: label empty or to
|
|
| 22345 |
File ""<stdin>"", line 1, in <module>
|
| 22346 |
File ""/usr/lib64/python3.4/csv.py"", line 110, in __next__
|
| 22347 |
row = next(self.reader)
|
| 22348 |
-
_csv.Error: line contains NULL byte",_csv.Error
|
| 22349 |
"@staticmethod
|
| 22350 |
def sanitize(value):
|
| 22351 |
value = value.rstrip('.')
|
|
@@ -22391,7 +22391,7 @@ line '
|
|
| 22391 |
"" return value.encode('idna').decode().lower()"",
|
| 22392 |
""UnicodeError: encoding with 'idna' codec failed
|
| 22393 |
(UnicodeError: ""
|
| 22394 |
-
'label empty or too long)']}",UnicodeError
|
| 22395 |
"def __init__(self, execer, ctx, **kwargs):
|
| 22396 |
super().__init__()
|
| 22397 |
self.execer = execer
|
|
@@ -22431,7 +22431,7 @@ File ""/usr/lib/python3.5/site-packages/xonsh/shell.py"", line 72, in __init__
|
|
| 22431 |
ctx=self.ctx, **kwargs)
|
| 22432 |
File ""/usr/lib/python3.5/site-packages/xonsh/ptk/shell.py"", line 33, in __init__
|
| 22433 |
self.pt_completer = PromptToolkitCompleter(self.completer, self.ctx)
|
| 22434 |
-
AttributeError: 'PromptToolkitShell' object has no attribute 'completer'",AttributeError
|
| 22435 |
"def cd(args, stdin=None):
|
| 22436 |
""""""Changes the directory.
|
| 22437 |
|
|
@@ -22573,7 +22573,7 @@ File ""C:\Users\James\AppData\Local\Programs\Python\Python35\lib\site-packages\x
|
|
| 22573 |
rtn = _old_cd(args, stdin)
|
| 22574 |
File ""C:\Users\James\AppData\Local\Programs\Python\Python35\lib\site-packages\xonsh\dirstack.py"", line 212, in cd
|
| 22575 |
if ON_WINDOWS and (d[0] == d[1]) and (d[0] in (os.sep, os.altsep)) \
|
| 22576 |
-
IndexError: string index out of range",IndexError
|
| 22577 |
"def find_spec(self, fullname, path, target=None):
|
| 22578 |
""""""Finds the spec for a xonsh module if it exists.""""""
|
| 22579 |
dot = "".""
|
|
@@ -22629,4 +22629,4 @@ File ""<frozen importlib._bootstrap>"", line 954, in _find_and_load_unlocked
|
|
| 22629 |
File ""<frozen importlib._bootstrap>"", line 896, in _find_spec
|
| 22630 |
File ""C:\Anaconda3\lib\site-packages\xonsh\imphooks.py"", line 53, in find_spec
|
| 22631 |
if fname not in (x.name for x in scandir(p)):
|
| 22632 |
-
PermissionError: [WinError 5] Access is denied: '.'",PermissionError
|
|
|
|
| 1 |
+
before_merge,after_merge,url,bug type,bug description,bug filename,bug function_name,bug lines,full_traceback,traceback_type
|
| 2 |
"def remove_lb_backend_address_pool_address(
|
| 3 |
cmd,
|
| 4 |
resource_group_name,
|
|
|
|
| 65 |
return op(**command_args)
|
| 66 |
File ""/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/network/custom.py"", line 2989, in add_lb_backend_address_pool_address
|
| 67 |
address_pool.load_balancer_backend_addresses.append(new_address)
|
| 68 |
+
AttributeError: 'NoneType' object has no attribute 'append'",AttributeError
|
| 69 |
"def split_action(arguments):
|
| 70 |
class SplitAction(argparse.Action): # pylint: disable=too-few-public-methods
|
| 71 |
def __call__(self, parser, namespace, values, option_string=None):
|
|
|
|
| 123 |
Traceback (most recent call last):
|
| 124 |
File ""c:\users\trpresco\documents\github\azure-cli\src\azure\cli\commands\arm.py"", line 110, in __call__
|
| 125 |
existing_values.append(parts[arg.id_part])
|
| 126 |
+
AttributeError: 'str' object has no attribute 'append'",AttributeError
|
| 127 |
"def parse_series(self, data, **kwargs):
|
| 128 |
log.debug(""Parsing series: `%s` [options: %s]"", data, kwargs)
|
| 129 |
guessit_options = self._guessit_options(kwargs)
|
|
|
|
| 494 |
File ""/usr/lib/python3.6/string.py"", line 48, in capwords
|
| 495 |
return (sep or ' ').join(x.capitalize() for x in s.split(sep))
|
| 496 |
AttributeError: 'NoneType' object has no attribute 'split'
|
| 497 |
+
2018-12-10 19:39 WARNING task moving_anime Aborting task (plugin: metainfo_series)",AttributeError
|
| 498 |
"def __init__(self, **kwargs):
|
| 499 |
# Save values so that we can revert to their initial values
|
| 500 |
self.old_defaults = {}
|
|
|
|
| 554 |
self.old_defaults[key] = lib.get_default(key)
|
| 555 |
File ""/opt/miniconda3/envs/liam/lib/python3.7/site-packages/pygmt/clib/session.py"", line 458, in get_default
|
| 556 |
name, status
|
| 557 |
+
pygmt.exceptions.GMTCLibError: Error getting default value for 'FONT' (error code 67).",pygmt.exceptions.GMTCLibError
|
| 558 |
"def dump_checkpoint(self, weights_only: bool = False) -> dict:
|
| 559 |
""""""Creating model checkpoint.
|
| 560 |
|
|
|
|
| 749 |
File ""/home/gianluca/git/kaggle/siim-isic-melanoma-classification/.venv/lib/python3.7/site-packages/pytorch_lightning/trainer/training_io.py"", line 362, in dump_checkpoint
|
| 750 |
checkpoint['native_amp_scaling_state'] = self.scaler.state_dict()
|
| 751 |
AttributeError: 'NoneType' object has no attribute 'state_dict'
|
| 752 |
+
ERROR: failed to reproduce 'train_cnn.dvc': stage: 'train_cnn.dvc' cmd 'python pipe/train_cnn.py' failed",AttributeError
|
| 753 |
"@classmethod
|
| 754 |
def _load_model_state(cls, checkpoint: Dict[str, Any], *cls_args, **cls_kwargs):
|
| 755 |
cls_spec = inspect.getfullargspec(cls.__init__)
|
|
|
|
| 842 |
model = cls(*cls_args, **cls_kwargs)
|
| 843 |
File ""main.py"", line 46, in __init__
|
| 844 |
super().__init__(*args, **kwargs)
|
| 845 |
+
TypeError: __init__() missing 1 required positional argument: 'hparams'",TypeError
|
| 846 |
"def __init__(
|
| 847 |
self,
|
| 848 |
text: base.String,
|
|
|
|
| 885 |
row_result.append(deserialize(item, parent=parent))
|
| 886 |
File ""/usr/lib/python3.8/site-packages/aiogram/types/fields.py"", line 112, in deserialize
|
| 887 |
return self.base_object(conf={'parent': parent}, **value)
|
| 888 |
+
TypeError: __init__() got an unexpected keyword argument 'conf'",TypeError
|
| 889 |
"def get_vars(
|
| 890 |
self,
|
| 891 |
play=None,
|
|
|
|
| 1570 |
if is_quoted(data):
|
| 1571 |
File ""/home/lmadsen/.local/lib/python2.7/site-packages/ansible/parsing/quoting.py"", line 24, in is_quoted
|
| 1572 |
return len(data) > 1 and data[0] == data[-1] and data[0] in ('""', ""'"") and data[-2] != '\\'
|
| 1573 |
+
KeyError: 0",KeyError
|
| 1574 |
"def _get_elb_info(self, elb):
|
| 1575 |
elb_info = {
|
| 1576 |
""name"": elb.name,
|
|
|
|
| 1682 |
return list(map(self._get_elb_info, elb_array))
|
| 1683 |
File ""/tmp/ansible_mX7IN8/ansible_module_ec2_elb_facts.py"", line 195, in _get_elb_info
|
| 1684 |
float(elb_info['instances_outofservice_count']))*100
|
| 1685 |
+
ZeroDivisionError: float division by zero",ZeroDivisionError
|
| 1686 |
"def disconnect_all_containers(self):
|
| 1687 |
containers = self.client.inspect_network(self.parameters.network_name)[""Containers""]
|
| 1688 |
for cont in containers.values():
|
|
|
|
| 1716 |
""module_stderr"": ""Traceback (most recent call last):\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 392, in <module>\n main()\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 385, in main\n cm = DockerNetworkManager(client)\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 218, in __init__\n self.present()\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 352, in present\n self.disconnect_missing()\n File \""/tmp/ansible_9Ntaqw/ansible_module_docker_network.py\"", line 323, in disconnect_missing\n for c in self.existing_network['Containers'].values():\nAttributeError: 'NoneType' object has no attribute 'values'\n"",
|
| 1717 |
""module_stdout"": """",
|
| 1718 |
""msg"": ""MODULE FAILURE"",
|
| 1719 |
+
""rc"": 0",AttributeError
|
| 1720 |
"def main():
|
| 1721 |
""""""main entry point for module execution""""""
|
| 1722 |
argument_spec = dict(
|
|
|
|
| 1896 |
PLAY RECAP **********************************************************************************************************************************
|
| 1897 |
cor-001a.sea0.service-now.com : ok=0 changed=0 unreachable=0 failed=1
|
| 1898 |
|
| 1899 |
+
(ansible-git)[cns04.sea3:/home/users/cody.john/virtualenv/ansible-git/playbook/deploy]$",UnicodeEncodeError
|
| 1900 |
"def list_databases(self):
|
| 1901 |
""""""
|
| 1902 |
List the databases available from the WFAU archive.
|
|
|
|
| 1926 |
677 return self.databases
|
| 1927 |
678
|
| 1928 |
|
| 1929 |
+
TypeError: can only concatenate tuple (not ""list"") to tuple",TypeError
|
| 1930 |
"def distribution(self, distr_args, loc=None, scale=None) -> Distribution:
|
| 1931 |
assert loc is None and scale is None
|
| 1932 |
distr = Dirichlet(distr_args)
|
|
|
|
| 2002 |
185 distr = DirichletMultinomial(self.dim, self.n_trials, distr_args)
|
| 2003 |
186 return distr
|
| 2004 |
|
| 2005 |
+
AssertionError:",AssertionError
|
| 2006 |
"def qimage_indexed_from_array(
|
| 2007 |
arr: np.ndarray, colortable: Sequence[Sequence[int]]
|
| 2008 |
) -> QImage:
|
|
|
|
| 2128 |
AttributeError: 'NoneType' object has no attribute 'asarray'
|
| 2129 |
-------------------------------------------------------------------------------
|
| 2130 |
QLayout: Attempting to add QLayout """" to ErrorReporting """", which already has a layout
|
| 2131 |
+
Segmentation fault (core dumped)",AttributeError
|
| 2132 |
"@contextmanager
|
| 2133 |
def _emit_changed(self):
|
| 2134 |
""""""
|
|
|
|
| 2177 |
File ""/Users/ajda/orange/orange3/Orange/widgets/evaluate/owpredictions.py"", line 1057, in select
|
| 2178 |
rows = {selection.model().mapToSource(selection).row()}
|
| 2179 |
AttributeError: 'NoneType' object has no attribute 'mapToSource'
|
| 2180 |
+
-------------------------------------------------------------------------------",AttributeError
|
| 2181 |
"def latinify(string, default=""?"", pure_ascii=False):
|
| 2182 |
""""""
|
| 2183 |
Convert a unicode string to ""safe"" ascii/latin-1 characters.
|
|
|
|
| 2322 |
----------------------------------------------------------------------
|
| 2323 |
Ran 4 tests in 2.104s
|
| 2324 |
|
| 2325 |
+
FAILED (errors=4)",AttributeError
|
| 2326 |
"def perform_codegen():
|
| 2327 |
# Set root codegen output directory
|
| 2328 |
# ---------------------------------
|
|
|
|
| 2716 |
File ""C:\Users\Artemis\Anaconda3\lib\site-packages\plotly\graph_objs\_figurewidget.py"", line 12, in <module>
|
| 2717 |
class FigureWidget(BaseFigureWidget):
|
| 2718 |
|
| 2719 |
+
TypeError: function() argument 1 must be code, not str",TypeError
|
| 2720 |
"def compare_subnets(self):
|
| 2721 |
""""""
|
| 2722 |
Compare user subnets with current ELB subnets
|
|
|
|
| 2787 |
)
|
| 2788 |
",https://github.com/ansible/ansible/issues/49558,"CWE-166: Improper Handling of Missing Special Element, CWE-248: Uncaught Exception","The application load balancer sometimes fails to initialize because the subnet variable does not always have LoadBalancerAddresses key. The situation where this key is absent is a normal because it contains the list of network load balancers, not the application ones",lib/ansible/module_utils/aws/elbv2.py,ElasticLoadBalancerV2.compare_subnets,25,"TASK [ELB (Application)] ***********************************************************************************************
|
| 2789 |
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: KeyError: 'LoadBalancerAddresses'
|
| 2790 |
+
fatal: [localhost -> localhost]: FAILED! => {""changed"": false, ""module_stderr"": ""Traceback (most recent call last):\n File \""/home/cho/.ansible/tmp/ansible-tmp-1544029326.15-8855540780494/AnsiballZ_elb_application_lb.py\"", line 113, in <module>\n _ansiballz_main()\n File \""/home/cho/.ansible/tmp/ansible-tmp-1544029326.15-8855540780494/AnsiballZ_elb_application_lb.py\"", line 105, in _ansiballz_main\n invoke_module(zipped_mod, temp_path, ANSIBALLZ_PARAMS)\n File \""/home/cho/.ansible/tmp/ansible-tmp-1544029326.15-8855540780494/AnsiballZ_elb_application_lb.py\"", line 48, in invoke_module\n imp.load_module('__main__', mod, module, MOD_DESC)\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/__main__.py\"", line 574, in <module>\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/__main__.py\"", line 568, in main\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/__main__.py\"", line 390, in create_or_update_elb\n File \""/tmp/ansible_elb_application_lb_payload_9PFpmx/ansible_elb_application_lb_payload.zip/ansible/module_utils/aws/elbv2.py\"", line 172, in compare_subnets\nKeyError: 'LoadBalancerAddresses'\n"", ""module_stdout"": """", ""msg"": ""MODULE FAILURE\nSee stdout/stderr for the exact error"", ""rc"": 1}",KeyError
|
| 2791 |
"def get_client(
|
| 2792 |
self, keystore, force_pair=True, *, devices=None, allow_user_interaction=True
|
| 2793 |
) -> Optional[""KeepKeyClient""]:
|
|
|
|
| 2825 |
File ""hid.pyx"", line 123, in hid.device.read
|
| 2826 |
OSError: read error
|
| 2827 |
double free or corruption (fasttop)
|
| 2828 |
+
Aborted",OSError
|
| 2829 |
"def mod_hostname(hostname):
|
| 2830 |
""""""
|
| 2831 |
Modify hostname
|
|
|
|
| 3109 |
Failed: 1
|
| 3110 |
------------
|
| 3111 |
Total states run: 1
|
| 3112 |
+
Total run time: 2.073 ms",TypeError
|
| 3113 |
"def hash_params(params):
|
| 3114 |
if not isinstance(params, dict):
|
| 3115 |
if isinstance(params, list):
|
|
|
|
| 3201 |
s.update((k, hash_params(v)))
|
| 3202 |
File ""/usr/local/Cellar/ansible/2.2.0.0_1/libexec/lib/python2.7/site-packages/ansible/playbook/role/__init__.py"", line 61, in hash_params
|
| 3203 |
s.update((k, v))
|
| 3204 |
+
TypeError: unhashable type: 'dict'",TypeError
|
| 3205 |
"async def is_online(self):
|
| 3206 |
if not self.id:
|
| 3207 |
self.id = await self.fetch_id()
|
|
|
|
| 3268 |
return [x for x in streams if not (x.name.lower() in seen or seen_add(x.name.lower()))]
|
| 3269 |
File ""C:\Users\jason\AppData\Local\Programs\Python\Python36\lib\site-packages\redbot\cogs\streams\streams.py"", line 618, in <listcomp>
|
| 3270 |
return [x for x in streams if not (x.name.lower() in seen or seen_add(x.name.lower()))]
|
| 3271 |
+
AttributeError: 'NoneType' object has no attribute 'lower'",AttributeError
|
| 3272 |
"def skip_200_and_304(record: logging.LogRecord) -> bool:
|
| 3273 |
# Apparently, `status_code` is added by Django and is not an actual
|
| 3274 |
# attribute of LogRecord; as a result, mypy throws an error if we
|
|
|
|
| 3327 |
File ""/home/sjoerd/zulip/zerver/lib/logging_util.py"", line 122, in skip_200_and_304
|
| 3328 |
if getattr(record, 'status_code') in [200, 304]:
|
| 3329 |
AttributeError: 'LogRecord' object has no attribute 'status_code'
|
| 3330 |
+
----------------------------------------",AttributeError
|
| 3331 |
"@hydra.main(config_name=""config"")
|
| 3332 |
def my_app(cfg: DictConfig):
|
| 3333 |
log.info(f""Process ID {os.getpid()} executing task {cfg.task} ..."")
|
|
|
|
| 3354 |
return plugins.get_job_environment()
|
| 3355 |
File ""/private/home/calebh/miniconda3/envs/bench-detectron2/lib/python3.7/site-packages/submitit/core/plugins.py"", line 82, in get_job_environment
|
| 3356 |
f""Could not figure out which environment the job is runnning in. Known environments: {', '.join(envs.keys())}.""
|
| 3357 |
+
RuntimeError: Could not figure out which environment the job is runnning in. Known environments: slurm, local, debug.",RuntimeError
|
| 3358 |
"def populate(self):
|
| 3359 |
self.get_cpu_facts()
|
| 3360 |
self.get_memory_facts()
|
|
|
|
| 3391 |
""module_stdout"": ""Traceback (most recent call last):\r\n File \""/tmp/ansible_c31TXu/ansible_module_setup.py\"", line 139, in <module>\r\n main()\r\n File \""/tmp/ansible_c31TXu/ansible_module_setup.py\"", line 131, in main\r\n data = get_all_facts(module)\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 3932, in get_all_facts\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 3875, in ansible_facts\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 1569, in populate\r\n File \""/tmp/ansible_c31TXu/ansible_modlib.zip/ansible/module_utils/facts.py\"", line 1728, in get_uptime_facts\r\nValueError: invalid literal for float(): 26761555,805674\r\n\r\n"",
|
| 3392 |
""msg"": ""MODULE FAILURE"",
|
| 3393 |
""rc"": 0
|
| 3394 |
+
}",nValueError
|
| 3395 |
"def isintlike(x):
|
| 3396 |
""""""Is x appropriate as an index into a sparse matrix? Returns True
|
| 3397 |
if it can be cast safely to a machine int.
|
|
|
|
| 3429 |
if isintlike(M) and isintlike(N):
|
| 3430 |
File ""/home/jbw/data/src/kwant/python3-env/lib/python3.4/site-packages/scipy/sparse/sputils.py"", line 195, in isintlike
|
| 3431 |
if int(x) == x:
|
| 3432 |
+
ValueError: invalid literal for int() with base 10: b'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00",ValueError
|
| 3433 |
"def cachedir_index_del(minion_id, base=None):
|
| 3434 |
""""""
|
| 3435 |
Delete an entry from the cachedir index. This generally only needs to happen
|
|
|
|
| 3485 |
File ""/usr/lib/python2.7/dist-packages/salt/cloud/clouds/ec2.py"", line 345, in query
|
| 3486 |
result.text
|
| 3487 |
UnicodeEncodeError: 'ascii' codec can't encode characters in position 70860-70863: ordinal not in range(128)
|
| 3488 |
+
......",UnicodeEncodeError
|
| 3489 |
"def execute(
|
| 3490 |
self,
|
| 3491 |
idempotent=False,
|
|
|
|
| 3709 |
util.sysexit(c.execute()[0])
|
| 3710 |
File ""/Users/jodewey/git/molecule/molecule/command/converge.py"", line 136, in execute
|
| 3711 |
util.debug('ANSIBLE PLAYBOOK', str(ansible.ansible))
|
| 3712 |
+
AttributeError: 'AnsiblePlaybook' object has no attribute 'ansible'",AttributeError
|
| 3713 |
"@attach_runtime_statistics(u""{0.__class__.__name__}.{function_name}"")
|
| 3714 |
@call_on_reactor_thread
|
| 3715 |
def data_came_in(self, addr, data):
|
|
|
|
| 3851 |
|
| 3852 |
File ""Tribler\dispersy\candidate.py"", line 30, in __init__
|
| 3853 |
|
| 3854 |
+
exceptions.AssertionError: ('182.30.65.219', 0)",RuntimeError
|
| 3855 |
"def setup_readline():
|
| 3856 |
""""""Sets up the readline module and completion suppression, if available.""""""
|
| 3857 |
global \
|
|
|
|
| 4090 |
show_completions = self._querycompletions(completions, endidx - begidx)
|
| 4091 |
File ""C:\Users\mel\Anaconda3\lib\site-packages\xonsh\__amalgam__.py"", line 18695, in _querycompletions
|
| 4092 |
rl_on_new_line()
|
| 4093 |
+
TypeError: 'NoneType' object is not callable",TypeError
|
| 4094 |
"def visualize(
|
| 4095 |
self, flow_state: ""prefect.engine.state.State"" = None, filename: str = None
|
| 4096 |
) -> object:
|
|
|
|
| 4346 |
flow.visualize(flow_state=state)
|
| 4347 |
File ""/Users/jtherhaa/miniconda3/envs/prefect/lib/python3.6/site-packages/prefect/core/flow.py"", line 1089, in visualize
|
| 4348 |
for map_index, _ in enumerate(flow_state.result[t].map_states):
|
| 4349 |
+
AttributeError: 'Skipped' object has no attribute 'map_states'",AttributeError
|
| 4350 |
"def _update_magp_data(self, magp_data):
|
| 4351 |
for magp_item in magp_data:
|
| 4352 |
magp_id = self.get_magp_id(magp_item)
|
|
|
|
| 4371 |
""module_stdout"": """",
|
| 4372 |
""msg"": ""MODULE FAILURE"",
|
| 4373 |
""rc"": 1
|
| 4374 |
+
}",nAttributeError
|
| 4375 |
"def make_main(argv=sys.argv):
|
| 4376 |
""""""Sphinx build ""make mode"" entry.""""""
|
| 4377 |
warnings.warn(
|
|
|
|
| 4403 |
return sphinx.make_main(arglist)
|
| 4404 |
File ""/usr/local/lib/python3.6/site-packages/sphinx/__init__.py"", line 91, in make_main
|
| 4405 |
return build.make_main(argv[1:]) # skip first argument to adjust arguments (refs: #4615)
|
| 4406 |
+
NameError: name 'build' is not defined",NameError
|
| 4407 |
"def write_data_to_db(self, workspace, post_group=False, image_number=None):
|
| 4408 |
""""""Write the data in the measurements out to the database
|
| 4409 |
workspace - contains the measurements
|
|
|
|
| 5154 |
Worker 1: return _iterencode(o, 0)
|
| 5155 |
Worker 1: File ""/Users/bcimini/Documents/GitHub/CellProfiler/core/cellprofiler_core/utilities/zmq/__init__.py"", line 70, in encoder
|
| 5156 |
Worker 1: raise TypeError(""%r of type %r is not JSON serializable"" % (data, type(data)))
|
| 5157 |
+
Worker 1: TypeError: b'iVBORw0KGgoAAAANSUhEUgA[...]I=' of type <class 'bytes'> is not JSON serializable",TypeError
|
| 5158 |
"def get_available_translations():
|
| 5159 |
""""""
|
| 5160 |
List available translations for spyder based on the folders found in the
|
|
|
|
| 5225 |
spyder_languages = get_available_translations()
|
| 5226 |
File ""/home/yang/anaconda3/lib/python3.6/site-packages/spyder/config/base.py"", line 297, in get_available_translations
|
| 5227 |
error = _('Update LANGUAGE_CODES (inside config/base.py) if a new '
|
| 5228 |
+
NameError: name '_' is not defined",NameError
|
| 5229 |
"def render_config(self, spec, conf, vlan_info):
|
| 5230 |
""""""
|
| 5231 |
Render config as dictionary structure and delete keys
|
|
|
|
| 5328 |
fatal: [sccs-2ug-07]: FAILED! => {""changed"": false, ""module_stderr"": ""Traceback (most recent call last):\n File \""/home/misch/.ansible/tmp/ansible-local-112400ljdojbw/ansible-tmp-1573048754.5352461-196207205443014/AnsiballZ_ios_vlans.py\"", line 102, in <module>\n _ansiballz_main()\n File \""/home/misch/.ansible/tmp/ansible-local-112400ljdojbw/ansible-tmp-1573048754.5352461-196207205443014/AnsiballZ_ios_vlans.py\"", line 94, in _ansiballz_main\n invoke_module(zipped_mod, temp_path, ANSIBALLZ_PARAMS)\n File \""/home/misch/.ansible/tmp/ansible-local-112400ljdojbw/ansible-tmp-1573048754.5352461-196207205443014/AnsiballZ_ios_vlans.py\"", line 40, in invoke_module\n runpy.run_module(mod_name='ansible.modules.network.ios.ios_vlans', init_globals=None, run_name='__main__', alter_sys=False)\n File \""/usr/lib64/python3.6/runpy.py\"", line 208, in run_module\n return _run_code(code, {}, init_globals, run_name, mod_spec)\n File \""/usr/lib64/python3.6/runpy.py\"", line 85, in _run_code\n exec(code, run_globals)\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/modules/network/ios/ios_vlans.py\"", line 464, in <module>\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/modules/network/ios/ios_vlans.py\"", line 459, in main\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/config/vlans/vlans.py\"", line 63, in execute_module\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/config/vlans/vlans.py\"", line 47, in get_interfaces_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/facts/facts.py\"", line 68, in get_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/common/facts/facts.py\"", line 105, in get_network_resources_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/facts/vlans/vlans.py\"", line 69, in populate_facts\n File \""/tmp/ansible_ios_vlans_payload_8jji30h2/ansible_ios_vlans_payload.zip/ansible/module_utils/network/ios/facts/vlans/vlans.py\"", line 115, in render_config\nTypeError: 'filter' object is not subscriptable\n"", ""module_stdout"": """", ""msg"": ""MODULE FAILURE\nSee stdout/stderr for the exact error"", ""rc"": 1}
|
| 5329 |
|
| 5330 |
PLAY RECAP **************************************************************************************************************
|
| 5331 |
+
sccs-2ug-07 : ok=1 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0",TypeError
|
| 5332 |
"def check_handle_timedout(timeoutvalue: int) -> None:
|
| 5333 |
""""""
|
| 5334 |
Check if any orders are timed out and cancel if neccessary
|
|
|
|
| 5447 |
return _API.cancel_order(order_id)
|
| 5448 |
File ""/home/freqtrade/freqtrade/freqtrade/exchange/bittrex.py"", line 197, in cancel_order
|
| 5449 |
order_id=order_id))
|
| 5450 |
+
freqtrade.OperationalException: ORDER_NOT_OPEN params=(03b02exx-adxx-4xx9-xxfc-xx258XXX26xx)",freqtrade.OperationalException
|
| 5451 |
"def render_GET(self, request):
|
| 5452 |
""""""
|
| 5453 |
.. http:get:: /torrents/(string: torrent infohash)/health
|
|
|
|
| 5608 |
/usr/share/tribler/Tribler/Core/Modules/restapi/torrents_endpoint.py:218:on_request_error
|
| 5609 |
/usr/lib/python2.7/site-packages/twisted/web/server.py:234:write
|
| 5610 |
/usr/lib/python2.7/site-packages/twisted/web/http.py:1084:write
|
| 5611 |
+
]",RuntimeError
|
| 5612 |
"def transform(self, y):
|
| 5613 |
""""""Transform labels to normalized encoding.
|
| 5614 |
|
|
|
|
| 5678 |
return _wrapit(obj, method, *args, **kwds)
|
| 5679 |
File ""[...]\Python36\lib\site-packages\numpy\core\fromnumeric.py"", line 47, in _wrapit
|
| 5680 |
result = getattr(asarray(obj), method)(*args, **kwds)
|
| 5681 |
+
TypeError: Cannot cast array data from dtype('float64') to dtype('<U32') according to the rule 'safe'",TypeError
|
| 5682 |
"def solve_collocation_system(
|
| 5683 |
fun, t, y, h, Z0, scale, tol, LU_real, LU_complex, solve_lu
|
| 5684 |
):
|
|
|
|
| 5869 |
LU_real, LU_complex, self.solve_lu)
|
| 5870 |
File ""/Users/gabriel/Library/Python/3.7/lib/python/site-packages/scipy/integrate/_ivp/radau.py"", line 138, in solve_collocation_system
|
| 5871 |
return converged, k + 1, Z, rate
|
| 5872 |
+
UnboundLocalError: local variable 'rate' referenced before assignment",UnboundLocalError
|
| 5873 |
"def parse_txt_dict(data, msg):
|
| 5874 |
""""""Parse DNS TXT record containing a dict.""""""
|
| 5875 |
output = {}
|
|
|
|
| 5904 |
key, value = prop.split(b'=')
|
| 5905 |
ValueError: too many values to unpack (expected 2)
|
| 5906 |
Scan Results
|
| 5907 |
+
========================================",ValueError
|
| 5908 |
"def main():
|
| 5909 |
argument_spec = ec2_argument_spec()
|
| 5910 |
argument_spec.update(
|
|
|
|
| 6782 |
""module_stdout"": """",
|
| 6783 |
""msg"": ""MODULE FAILURE"",
|
| 6784 |
""rc"": 0
|
| 6785 |
+
}",UnboundLocalError
|
| 6786 |
"def append(self, cmd):
|
| 6787 |
if not self.remember_history:
|
| 6788 |
return
|
|
|
|
| 6874 |
sqlite3.OperationalError: database or disk is full
|
| 6875 |
Xonsh encountered an issue during launch
|
| 6876 |
Failback to /bin/bash
|
| 6877 |
+
(base) pc@pc:~$",sqlite3.OperationalError
|
| 6878 |
"def batch_to(data):
|
| 6879 |
# try to move torchtext data first
|
| 6880 |
if TORCHTEXT_AVAILABLE and isinstance(data, Batch):
|
|
|
|
| 6914 |
118 setattr(device_data, field, device_field)
|
| 6915 |
119 return device_data
|
| 6916 |
|
| 6917 |
+
AttributeError: 'Batch' object has no attribute 'TITLE'",AttributeError
|
| 6918 |
"def pageChanged(self, event):
|
| 6919 |
""""""Event called when the user swtiches between editor tabs.""""""
|
| 6920 |
old = event.GetOldSelection()
|
|
|
|
| 7021 |
oldPage = self.notebook.GetPage(old)
|
| 7022 |
File ""C:\Program Files\PsychoPy3\lib\site-packages\wx\lib\agw\aui\auibook.py"", line 4440, in GetPage
|
| 7023 |
raise Exception(""invalid notebook page"")
|
| 7024 |
+
Exception: invalid notebook page",Exception
|
| 7025 |
"def _add_group(self, host, result_item):
|
| 7026 |
""""""
|
| 7027 |
Helper function to add a group (if it does not exist), and to assign the
|
|
|
|
| 7138 |
self._add_group(original_host, result_item)
|
| 7139 |
File ""/usr/local/lib/python3.5/dist-packages/ansible/plugins/strategy/__init__.py"", line 632, in _add_group
|
| 7140 |
real_host = self._inventory.hosts[host.name]
|
| 7141 |
+
KeyError: 'localhost'",KeyError
|
| 7142 |
"def msg(self, text=None, from_obj=None, session=None, options=None, **kwargs):
|
| 7143 |
""""""
|
| 7144 |
Evennia -> User
|
|
|
|
| 7235 |
dumps = lambda data: to_str(pickle.dumps(to_str(data), pickle.HIGHEST_PROTOCOL))
|
| 7236 |
File ""/pyenv/local/lib/python2.7/site-packages/twisted/persisted/styles.py"", line 119, in _pickleFunction
|
| 7237 |
tuple([""."".join([f.__module__, f.__qualname__])]))
|
| 7238 |
+
AttributeError: 'function' object has no attribute '__qualname__'",AttributeError
|
| 7239 |
"def html(self, obj, fmt=None, css=None, comm=True, **kwargs):
|
| 7240 |
""""""
|
| 7241 |
Renders plot or data structure and wraps the output in HTML.
|
|
|
|
| 7365 |
AttributeError: 'NoneType' object has no attribute 'format'
|
| 7366 |
|
| 7367 |
Out[13]:
|
| 7368 |
+
:DynamicMap []",AttributeError
|
| 7369 |
"def _wait_for_task(task, vm_name, task_type, sleep_seconds=1, log_level=""debug""):
|
| 7370 |
time_counter = 0
|
| 7371 |
starttime = time.time()
|
|
|
|
| 7425 |
<machine>:
|
| 7426 |
----------
|
| 7427 |
Error:
|
| 7428 |
+
Error creating <machine>: None",Exception
|
| 7429 |
"def close(self):
|
| 7430 |
if self.conn and not self._closed:
|
| 7431 |
self.conn.shutdown(socket.SHUT_RDWR)
|
|
|
|
| 7528 |
self.conn.shutdown(socket.SHUT_RDWR)
|
| 7529 |
File ""/usr/lib/python3.8/ssl.py"", line 1280, in shutdown
|
| 7530 |
super().shutdown(how)
|
| 7531 |
+
OSError: [Errno 107] Transport endpoint is not connected",BrokenPipeError
|
| 7532 |
"@classmethod
|
| 7533 |
def write_content(cls, filename, content, rewrite_html=True):
|
| 7534 |
""""""Write content to file.""""""
|
|
|
|
| 7579 |
doc = html.document_fromstring(content)
|
| 7580 |
File ""/usr/local/lib/python3.5/site-packages/lxml/html/__init__.py"", line 755, in document_fromstring
|
| 7581 |
""Document is empty"")
|
| 7582 |
+
lxml.etree.ParserError: Document is empty",lxml.etree.ParserError
|
| 7583 |
"def _restore_or_init_optimizer(
|
| 7584 |
self,
|
| 7585 |
completed_trials: ""List[optuna.trial.FrozenTrial]"",
|
|
|
|
| 7677 |
|
| 7678 |
File ""_bounded_integers.pyx"", line 1360, in numpy.random._bounded_integers._rand_int32
|
| 7679 |
|
| 7680 |
+
ValueError: high is out of bounds for int32",ValueError
|
| 7681 |
"def setup_vpn(runner: Runner, args):
|
| 7682 |
runner.require(
|
| 7683 |
[""sshuttle-telepresence""], ""Part of the Telepresence package. Try reinstalling.""
|
|
|
|
| 7741 |
restore_signals, start_new_session)
|
| 7742 |
File ""/usr/lib64/python3.6/subprocess.py"", line 1344, in _execute_child
|
| 7743 |
raise child_exception_type(errno_num, err_msg, err_filename)
|
| 7744 |
+
FileNotFoundError: [Errno 2] No such file or directory: 'bash--norc': 'bash--norc'",FileNotFoundError
|
| 7745 |
"@classmethod
|
| 7746 |
def from_line(cls, line):
|
| 7747 |
""""""Create a Log Line from a string line.
|
|
|
|
| 7877 |
lines = line.split('\n')
|
| 7878 |
File ""C:\Python27\lib\encodings\cp1252.py"", line 15, in decode
|
| 7879 |
return codecs.charmap_decode(input,errors,decoding_table)
|
| 7880 |
+
UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 106: character maps to <undefined>",UnicodeDecodeError
|
| 7881 |
"def get_ticker_history(self, pair: str, tick_interval: int) -> List[Dict]:
|
| 7882 |
if tick_interval == 1:
|
| 7883 |
interval = ""oneMin""
|
|
|
|
| 7949 |
return _API.get_ticker_history(pair, tick_interval)
|
| 7950 |
File ""/Users/sgrimm/dev/cryptos/bots/freqtrade/freqtrade/exchange/bittrex.py"", line 106, in get_ticker_history
|
| 7951 |
for tick in data['result']:
|
| 7952 |
+
TypeError: 'NoneType' object is not iterable",TypeError
|
| 7953 |
"def validateMasterArgument(self, master_arg):
|
| 7954 |
""""""
|
| 7955 |
Parse the <master> argument.
|
|
|
|
| 8034 |
self['host'], self['port'] = self.validateMasterArgument(master)
|
| 8035 |
File ""/usr/lib/python3/dist-packages/buildbot_worker/scripts/runner.py"", line 161, in validateMasterArgument
|
| 8036 |
master, port = master_arg.split("":"")
|
| 8037 |
+
ValueError: too many values to unpack (expected 2)",ValueError
|
| 8038 |
"def highest_precedence_type(exprs):
|
| 8039 |
# Return the highest precedence type from the passed expressions. Also
|
| 8040 |
# verifies that there are valid implicit casts between any of the types and
|
|
|
|
| 8193 |
169
|
| 8194 |
170 scores.append((score, k))
|
| 8195 |
|
| 8196 |
+
KeyError: 'timestamp'",KeyError
|
| 8197 |
"def list_nodes(full=False, call=None):
|
| 8198 |
""""""
|
| 8199 |
list of nodes, keeping only a brief listing
|
|
|
|
| 8417 |
File ""/usr/lib64/python2.7/site-packages/tornado/concurrent.py"", line 214, in result
|
| 8418 |
raise_exc_info(self._exc_info)
|
| 8419 |
File ""<string>"", line 3, in raise_exc_info
|
| 8420 |
+
gaierror: [Errno -2] Name or service not known",gaierror
|
| 8421 |
"def run_job(self, name):
|
| 8422 |
""""""
|
| 8423 |
Run a schedule job now
|
|
|
|
| 8510 |
datetime.datetime.now())
|
| 8511 |
File ""/usr/lib/python2.7/site-packages/salt/utils/schedule.py"", line 212, in _check_max_running
|
| 8512 |
if not data['run']:
|
| 8513 |
+
KeyError: u'run'",KeyError
|
| 8514 |
"def object_description(object):
|
| 8515 |
# type: (Any) -> unicode
|
| 8516 |
""""""A repr() implementation that returns text safe to use in reST context.""""""
|
|
|
|
| 8583 |
sorted_keys = sorted(object)
|
| 8584 |
File ""/opt/fabrix/fabrix/config.py"", line 59, in __iter__
|
| 8585 |
return self.__super__getitem__(env.host_string).__iter__()
|
| 8586 |
+
KeyError: None",KeyError
|
| 8587 |
"def get_current_subtitles(video_path):
|
| 8588 |
""""""Returns a list of current subtitles for the episode
|
| 8589 |
|
|
|
|
| 8619 |
get_subtitle_description(subtitle)), logger.DEBUG)
|
| 8620 |
File ""/home/dariox/.sickrage/sickbeard/subtitles.py"", line 489, in get_subtitle_description
|
| 8621 |
return subtitle.id + '-' + desc if desc not in subtitle.id else desc
|
| 8622 |
+
TypeError: argument of type 'int' is not iterable",TypeError
|
| 8623 |
"def get_additional_deps(self, file: MypyFile) -> List[Tuple[int, str, int]]:
|
| 8624 |
# for settings
|
| 8625 |
if file.fullname() == ""django.conf"" and self.django_context.django_settings_module:
|
|
|
|
| 8743 |
deps.extend(plugin.get_additional_deps(file))
|
| 8744 |
File ""/usr/local/lib/python3.6/site-packages/mypy_django_plugin/main.py"", line 152, in get_additional_deps
|
| 8745 |
related_model_module = related_model_cls.__module__
|
| 8746 |
+
AttributeError: 'NoneType' object has no attribute '__module__'",AttributeError
|
| 8747 |
"def show_tree(self):
|
| 8748 |
""""""Populate the tree with profiler data and display it.""""""
|
| 8749 |
self.initialize_view() # Clear before re-populating
|
|
|
|
| 8778 |
rootkey = self.find_root() # This root contains profiler overhead
|
| 8779 |
File ""C:\ProgramData\Anaconda3\lib\site-packages\spyder_profiler\widgets\profilergui.py"", line 507, in find_root
|
| 8780 |
self.profdata.sort_stats(""cumulative"")
|
| 8781 |
+
AttributeError: 'NoneType' object has no attribute 'sort_stats'",AttributeError
|
| 8782 |
"def _find_domains_or_certname(config, installer):
|
| 8783 |
""""""Retrieve domains and certname from config or user input.""""""
|
| 8784 |
domains = None
|
|
|
|
| 8856 |
lineage.chain, lineage.fullchain)
|
| 8857 |
File ""/home/ubuntu/letsencrypt/certbot/client.py"", line 380, in deploy_certificate
|
| 8858 |
for dom in domains:
|
| 8859 |
+
TypeError: 'NoneType' object is not iterable",TypeError
|
| 8860 |
"def _catch_login_errors(func) -> Callable:
|
| 8861 |
""""""Detect AlexapyLoginError and attempt relogin.""""""
|
| 8862 |
import functools
|
|
|
|
| 8985 |
await func(entity, data)
|
| 8986 |
File ""/config/custom_components/alexa_media/helpers.py"", line 159, in wrapper
|
| 8987 |
['configurator'])):
|
| 8988 |
+
KeyError: 'configurator'",alexapy.errors.AlexapyLoginError
|
| 8989 |
"def get_volume_info(volume, region):
|
| 8990 |
attachment = volume[""attachments""]
|
| 8991 |
|
|
|
|
| 9072 |
""module_stdout"": """",
|
| 9073 |
""msg"": ""MODULE FAILURE\nSee stdout/stderr for the exact error"",
|
| 9074 |
""rc"": 1
|
| 9075 |
+
}",KeyError
|
| 9076 |
"def __init__(self, serial=""""):
|
| 9077 |
self._serial = serial
|
| 9078 |
# logging.log_path only exists when this is used in an Mobly test run.
|
|
|
|
| 9136 |
errread, errwrite)
|
| 9137 |
File ""/usr/lib/python2.7/subprocess.py"", line 1343, in _execute_child
|
| 9138 |
raise child_exception
|
| 9139 |
+
TypeError: execv() arg 2 must contain only strings",TypeError
|
| 9140 |
"def _get_series_episodes(self, task, config, series_name, series_url, series_info):
|
| 9141 |
log.info(""Retrieving new episodes for %s"", series_name)
|
| 9142 |
response = requests.get(
|
|
|
|
| 9185 |
series_info = self._get_series_info(task, config, series_name, url)
|
| 9186 |
File ""/usr/local/lib/python2.7/dist-packages/flexget/plugins/input/npo_watchlist.py"", line 180, in _get_series_info
|
| 9187 |
series_info['npo_url'] = tvseries.find('a', itemprop='url')['href']
|
| 9188 |
+
AttributeError: 'NoneType' object has no attribute 'find'",AttributeError
|
| 9189 |
"def execute(self, cmdstr: str):
|
| 9190 |
""""""
|
| 9191 |
Execute a command string. May raise CommandError.
|
|
|
|
| 9244 |
raw = self.read_token()
|
| 9245 |
File ""/usr/lib/python3.5/shlex.py"", line 185, in read_token
|
| 9246 |
raise ValueError(""No escaped character"")
|
| 9247 |
+
ValueError: No escaped character",ValueError
|
| 9248 |
"def update(self):
|
| 9249 |
""""""Update the stats.""""""
|
| 9250 |
if batinfo_tag:
|
|
|
|
| 9310 |
return _psplatform.sensors_battery()
|
| 9311 |
File ""/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py"", line 411, in sensors_battery
|
| 9312 |
percent, minsleft, power_plugged = cext.sensors_battery()
|
| 9313 |
+
OSError: [Errno 2] No such file or directory",OSError
|
| 9314 |
"@command.command(""export.file"")
|
| 9315 |
def file(self, fmt: str, f: flow.Flow, path: mitmproxy.types.Path) -> None:
|
| 9316 |
""""""
|
|
|
|
| 9383 |
return function(*args, **kwargs)
|
| 9384 |
File ""/home/kajoj/Mitmproxy/mitmproxy/mitmproxy/tools/console/consoleaddons.py"", line 463, in grideditor_save
|
| 9385 |
with open(path, ""w"", newline='', encoding=""utf8"") as fp:
|
| 9386 |
+
PermissionError: [Errno 13] Permission denied: '/file.txt'",PermissionError
|
| 9387 |
"def __m3u_export(self, file_path, files):
|
| 9388 |
try:
|
| 9389 |
fhandler = open(file_path, ""w"")
|
|
|
|
| 9421 |
self.__m3u_export(file_path, files)
|
| 9422 |
File ""/home/nick/workspace/quodlibet/quodlibet/quodlibet/ext/songsmenu/playlist.py"", line 147, in __m3u_export
|
| 9423 |
fhandler.write(text.encode(""utf-8""))
|
| 9424 |
+
TypeError: write() argument must be str, not bytes",TypeError
|
| 9425 |
"@audioset.command()
|
| 9426 |
@checks.mod_or_permissions(administrator=True)
|
| 9427 |
async def thumbnail(self, ctx):
|
|
|
|
| 9450 |
ret = await coro(*args, **kwargs)
|
| 9451 |
File ""/usr/local/lib/python3.7/site-packages/redbot/cogs/audio/audio.py"", line 1100, in _playlist_list
|
| 9452 |
_(""Author: {name}"").format(self.bot.get_user(author)),
|
| 9453 |
+
KeyError: 'name'",KeyError
|
| 9454 |
"def on_play_file(self, file_info):
|
| 9455 |
self.window().left_menu_button_video_player.click()
|
| 9456 |
self.window().video_player_page.play_media_item(
|
|
|
|
| 9464 |
",https://github.com/Tribler/tribler/issues/3681,"CWE-166: Improper Handling of Missing Special Element, CWE-754: Improper Check for Unusual or Exceptional Conditions",No checking if file_info is None,TriblerGUI/widgets/downloadsdetailstabwidget.py,DownloadsDetailsTabWidget.on_play_file,[4],"Traceback (most recent call last):
|
| 9465 |
File ""TriblerGUI/widgets/videoplayerpage.py"", line 155, in on_files_list_loaded
|
| 9466 |
File ""TriblerGUI/widgets/videoplayerpage.py"", line 178, in play_active_item
|
| 9467 |
+
TypeError: 'NoneType' object has no attribute '__getitem__'",TypeError
|
| 9468 |
"def delete_service_certificate(kwargs=None, conn=None, call=None):
|
| 9469 |
""""""
|
| 9470 |
.. versionadded:: 2015.8.0
|
|
|
|
| 9566 |
old_endpoints = list_input_endpoints(kwargs, call='function')
|
| 9567 |
File ""/usr/local/lib/python2.7/site-packages/salt/cloud/clouds/msazure.py"", line 2013, in list_input_endpoints
|
| 9568 |
for item in data:
|
| 9569 |
+
TypeError: 'NoneType' object is not iterable",TypeError
|
| 9570 |
"def normalize_known_hosts_key(key):
|
| 9571 |
""""""
|
| 9572 |
Transform a key, either taken from a known_host file or provided by the
|
|
|
|
| 9625 |
hashed_host = normalize_known_hosts_key(hashed_lines[lnum])
|
| 9626 |
File ""/tmp/ansible_nz17ajoh/ansible_module_known_hosts.py"", line 278, in normalize_known_hosts_key
|
| 9627 |
if k[0][0] == '@':
|
| 9628 |
+
IndexError: list index out of range",IndexError
|
| 9629 |
"def shutdown_multiprocessing_logging_listener(daemonizing=False):
|
| 9630 |
global __MP_LOGGING_QUEUE
|
| 9631 |
global __MP_LOGGING_QUEUE_PROCESS
|
|
|
|
| 9723 |
AssertionError
|
| 9724 |
Logged from file setup.py, line 973
|
| 9725 |
send(obj)
|
| 9726 |
+
IOError: [Errno 232] The pipe is being closed",IOError
|
| 9727 |
"def run(self):
|
| 9728 |
""""""Start the primary Qt event loop for the interface""""""
|
| 9729 |
|
|
|
|
| 9787 |
File ""openshot_qt/launch.py"", line 99, in main
|
| 9788 |
File ""I:\Temp\OpenShot-dev\01\{app}\classes\app.py"", line 231, in run
|
| 9789 |
log.error(""Couldn't save user settings on exit.\n{}"".format(ex))
|
| 9790 |
+
NameError: name 'log' is not defined",PermissionError
|
| 9791 |
"def _link_package_versions(self, link, search_name):
|
| 9792 |
""""""
|
| 9793 |
Return an iterable of triples (pkg_resources_version_key,
|
|
|
|
| 9895 |
|
| 9896 |
----------------------------------------
|
| 9897 |
Command python setup.py egg_info failed with error code 1
|
| 9898 |
+
Storing complete log in /home/zyv/.pip/pip.log",IOError
|
| 9899 |
"def main(args):
|
| 9900 |
""""""
|
| 9901 |
Store the defect results in the specified input list as bug reports in the
|
|
|
|
| 10077 |
s
|
| 10078 |
file_path = files[event['location']['file']]
|
| 10079 |
IndexError: list index out of range
|
| 10080 |
+
[14:02] - Session timeout for run 4",IndexError
|
| 10081 |
"def handle_compare(self, args):
|
| 10082 |
if len(args) < 2:
|
| 10083 |
print(""Error: missing argument"")
|
|
|
|
| 10284 |
FlashFailure: init error: 536870913
|
| 10285 |
0008342:INFO:gdbserver:Client detached
|
| 10286 |
0008342:INFO:gdbserver:Client disconnected!
|
| 10287 |
+
0008546:INFO:server:Semihost server stopped",AttributeError
|
| 10288 |
"def query(self, view_kwargs):
|
| 10289 |
""""""
|
| 10290 |
query method for Attendees List
|
|
|
|
| 10397 |
return fn(*args, **kwargs)
|
| 10398 |
File ""/media/srv_twry/work/Projects/Community-Projects/Fossasia/open-event-server/app/api/helpers/permission_manager.py"", line 109, in is_user_itself
|
| 10399 |
if not user.is_admin and not user.is_super_admin and user.id != kwargs['user_id']:
|
| 10400 |
+
KeyError: 'user_id'",KeyError
|
| 10401 |
"@blocking_call_on_reactor_thread
|
| 10402 |
def load_communities(self):
|
| 10403 |
self._logger.info(""tribler: Preparing communities..."")
|
|
|
|
| 10546 |
|
| 10547 |
File ""lib\site-packages\twisted\internet\tcp.py"", line 983, in startListening
|
| 10548 |
|
| 10549 |
+
twisted.internet.error.CannotListenError: Couldn't listen on any:55661: [Errno 10048] Elk socketadres (protocol/netwerkadres/poort) kan normaal slechts n keer worden gebruikt.",RuntimeError
|
| 10550 |
"def single_string(self):
|
| 10551 |
""""""Creates a long string with the ascii art.
|
| 10552 |
|
|
|
|
| 10583 |
print(bell_circuit)\r'
|
| 10584 |
File ""C:\\Python37\\lib\\encodings\\cp1252.py"", line 19, in encode\r'
|
| 10585 |
return codecs.charmap_encode(input,self.errors,encoding_table)[0]\r'
|
| 10586 |
+
UnicodeEncodeError: 'charmap' codec can't encode characters in position 8-12: character maps to <undefined>\r""",AssertionError
|
| 10587 |
"def EqualityString(self):
|
| 10588 |
""""""Return a string describing the EventObject in terms of object equality.
|
| 10589 |
|
|
|
|
| 10699 |
File ""/usr/local/lib/python2.7/dist-packages/plaso-1.2.1_20150602-py2.7.egg/plaso/parsers/interface.py"", line 256, in Parse
|
| 10700 |
File ""/usr/local/lib/python2.7/dist-packages/plaso-1.2.1_20150602-py2.7.egg/plaso/parsers/pe.py"", line 259, in ParseFileObject
|
| 10701 |
File ""/usr/local/lib/python2.7/dist-packages/plaso-1.2.1_20150602-py2.7.egg/plaso/parsers/pe.py"", line 132, in _GetSectionNames
|
| 10702 |
+
UnicodeDecodeError: 'ascii' codec can't decode byte 0x90 in position 7: ordinal not in range(128)",UnicodeDecodeError
|
| 10703 |
"def write_PN(fp, data_element, padding=b"" "", encoding=None):
|
| 10704 |
if not encoding:
|
| 10705 |
encoding = [default_encoding] * 3
|
|
|
|
| 10747 |
File ""<stdin>"", line 1, in <module>
|
| 10748 |
File ""../pydicom/pydicom/filewriter.py"", line 228, in write_PN
|
| 10749 |
val = [elem.encode(encoding) for elem in val]
|
| 10750 |
+
TypeError: encode() argument 1 must be string, not list",TypeError
|
| 10751 |
"def _connect(
|
| 10752 |
self,
|
| 10753 |
client,
|
|
|
|
| 10920 |
self.get_output(cmd, output, encoding=encoding)
|
| 10921 |
File ""pssh/pssh_client.py"", line 778, in get_output
|
| 10922 |
stdout = self.host_clients[host].read_output_buffer(
|
| 10923 |
+
KeyError: '10.0.2.4'",KeyError
|
| 10924 |
"def _infer_xy_labels_3d(darray, x, y, rgb):
|
| 10925 |
""""""
|
| 10926 |
Determine x and y labels for showing RGB images.
|
|
|
|
| 11076 |
315 y, x = darray.dims
|
| 11077 |
316 elif x is None:
|
| 11078 |
|
| 11079 |
+
ValueError: DataArray must be 2d",ValueError
|
| 11080 |
"def guess_format(filename: Text) -> Text:
|
| 11081 |
""""""Applies heuristics to guess the data format of a file.
|
| 11082 |
|
|
|
|
| 11164 |
await _write_stories_to_file(story_path, events)
|
| 11165 |
File ""/Users/erohmensing/rasa/rasa/core/training/interactive.py"", line 764, in _write_stories_to_file
|
| 11166 |
with open(export_story_path, append_write, encoding=""utf-8"") as f:
|
| 11167 |
+
FileNotFoundError: [Errno 2] No such file or directory: ''",FileNotFoundError
|
| 11168 |
"def prepare(self):
|
| 11169 |
""""""Initialize important variables""""""
|
| 11170 |
if not hasattr(self, ""HOSTER_NAME""):
|
|
|
|
| 11241 |
04.09.2013 23:52:25 DEBUG UptoboxCom: URL: http://uptobox.com/d507fg2b4w9b
|
| 11242 |
04.09.2013 23:52:25 DEBUG UptoboxCom: {'status': 3, 'name': '', 'size': 0}
|
| 11243 |
04.09.2013 23:52:25 DEBUG UptoboxCom: uptobox.com | {u'rand': u'tisa6omstximt6fbfdyde7hp23iwxqsqnmymbly', u'method_premium': u'1', u'down_direct': u'1', u'referer': u'http://uptobox.com/d507fg2b4w9b', u'method_free': '', u'id': u'd507fg2b4w9b', u'op': u'download2'}
|
| 11244 |
+
04.09.2013 23:52:26 DEBUG UptoboxCom: DIRECT LINK: http://www5.uptobox.com:8080/d/uyyyv54jf4csmtsqkbyzmw3heem4lbpapk2uxggvw5e4lpffsqpijogg/Zone-Telechargement.comNCIS.S10E14.FRENCH.LD.HDTV.XviD-MiND.avi",PluginParseError
|
| 11245 |
"def mapper_fn(x):
|
| 11246 |
return mapper(x)
|
| 11247 |
","def mapper_fn(x):
|
|
|
|
| 11270 |
3185 keys = [key if isinstance(key, tuple) else (key,) for key in keys]
|
| 11271 |
3186
|
| 11272 |
|
| 11273 |
+
KeyError: 'day'",KeyError
|
| 11274 |
"def __call__(self, data, **metadata):
|
| 11275 |
opts = jsbeautifier.default_options()
|
| 11276 |
opts.indent_size = 2
|
|
|
|
| 11297 |
File ""/Users/cortesi/mitmproxy/mitmproxy/mitmproxy/contrib/jsbeautifier/__init__.py"", line 443, in
|
| 11298 |
get_next_token
|
| 11299 |
if c in self.wordchar:
|
| 11300 |
+
TypeError: 'in <string>' requires string as left operand, not int",TypeError
|
| 11301 |
"def decode(
|
| 11302 |
self,
|
| 11303 |
inputs,
|
|
|
|
| 11512 |
self._traceback = self._graph._extract_stack() # pylint: disable=protected-access
|
| 11513 |
|
| 11514 |
InvalidArgumentError (see above for traceback): logits and labels must be same size: logits_size=[196,101] labels_size=[203,101]
|
| 11515 |
+
[[Node: seq2seq/parallel_1/seq2seq/SoftmaxCrossEntropyWithLogits = SoftmaxCrossEntropyWithLogits[T=DT_FLOAT, _device=""/job:localhost/replica:0/task:0/device:CPU:0""](seq2seq/parallel_1/seq2seq/Reshape, seq2seq/parallel_1/seq2seq/Reshape_1)]]",tensorflow.python.framework.errors_impl.InvalidArgumentError
|
| 11516 |
"def _update_terminal_region(
|
| 11517 |
self, tree, terminal_regions, leaf, X, y, residual, pred, sample_weight
|
| 11518 |
):
|
|
|
|
| 11589 |
_assert_all_finite(X.data if sp.issparse(X) else X)
|
| 11590 |
File ""/home/podda/.venvs/vermont/local/lib/python2.7/site-packages/sklearn/utils/validation.py"", line 58, in _assert_all_finite
|
| 11591 |
"" or a value too large for %r."" % X.dtype)
|
| 11592 |
+
ValueError: Input contains NaN, infinity or a value too large for dtype('float64').",ValueError
|
| 11593 |
"def install(self):
|
| 11594 |
# the file is a tar, so open it that way and extract it
|
| 11595 |
# to the specified (or default) roles directory
|
|
|
|
| 11974 |
c = self._cmp(other)
|
| 11975 |
File ""/Users/jodewey/.pyenv/versions/3.6.1/lib/python3.6/distutils/version.py"", line 337, in _cmp
|
| 11976 |
if self.version < other.version:
|
| 11977 |
+
TypeError: '<' not supported between instances of 'int' and 'str'",TypeError
|
| 11978 |
"def rescale(
|
| 11979 |
image,
|
| 11980 |
scale,
|
|
|
|
| 12207 |
File ""SOME_PATH\scipy\ndimage\filters.py"", line 257, in gaussian_filter1d
|
| 12208 |
lw = int(truncate * sd + 0.5)
|
| 12209 |
OverflowError: cannot convert float infinity to integer
|
| 12210 |
+
Process finished with exit code 1",OverflowError
|
| 12211 |
"def _build_laplacian(data, spacing, mask, beta, multichannel):
|
| 12212 |
l_x, l_y, l_z = data.shape[:3]
|
| 12213 |
edges = _make_graph_edges_3d(l_x, l_y, l_z)
|
|
|
|
| 12281 |
row = self._asindices(row, M)
|
| 12282 |
File ""/Users/jni/conda/envs/all/lib/python3.8/site-packages/scipy/sparse/_index.py"", line 169, in _asindices
|
| 12283 |
raise IndexError('index (%d) out of range' % max_indx)
|
| 12284 |
+
IndexError: index (6) out of range",IndexError
|
| 12285 |
"def hough_line_peaks(
|
| 12286 |
hspace,
|
| 12287 |
angles,
|
|
|
|
| 12430 |
num_peaks=num_peaks)
|
| 12431 |
File ""C:\Users\Mark4\anaconda3\lib\site-packages\skimage\feature\peak.py"", line 316, in _prominent_peaks
|
| 12432 |
img_max[ycoords_nh, xcoords_nh] = 0
|
| 12433 |
+
IndexError: index -9 is out of bounds for axis 1 with size 1",IndexError
|
| 12434 |
"def _find_min_diff(image):
|
| 12435 |
""""""
|
| 12436 |
Find the minimal difference of grey levels inside the image.
|
|
|
|
| 12463 |
out=out, **kwargs)
|
| 12464 |
File ""/usr/local/lib/python3.5/dist-packages/numpy/core/_methods.py"", line 29, in _amin
|
| 12465 |
return umr_minimum(a, axis, None, out, keepdims)
|
| 12466 |
+
ValueError: zero-size array to reduction operation minimum which has no identity",ValueError
|
| 12467 |
"def set_image(self, *, url):
|
| 12468 |
""""""Sets the image for the embed content.
|
| 12469 |
|
|
|
|
| 12530 |
embed.set_thumbnail(url=Embed.Empty)
|
| 12531 |
File ""D:\Programs\Python\Discord Bots\Bots\S4\.venv\lib\site-packages\discord\embeds.py"", line 328, in set_thumbnail
|
| 12532 |
del self._thumbnail
|
| 12533 |
+
AttributeError: _thumbnail",AttributeError
|
| 12534 |
"def set_thumbnail(self, *, url):
|
| 12535 |
""""""Sets the thumbnail for the embed content.
|
| 12536 |
|
|
|
|
| 12597 |
embed.set_thumbnail(url=Embed.Empty)
|
| 12598 |
File ""D:\Programs\Python\Discord Bots\Bots\S4\.venv\lib\site-packages\discord\embeds.py"", line 328, in set_thumbnail
|
| 12599 |
del self._thumbnail
|
| 12600 |
+
AttributeError: _thumbnail",AttributeError
|
| 12601 |
"def get_staticfiles_finders(self):
|
| 12602 |
""""""
|
| 12603 |
Returns a sorted mapping between the finder path and the list
|
|
|
|
| 12658 |
directories, files = storage.listdir(location)
|
| 12659 |
File ""/Users/paul/.dev/police-records/.direnv/python-3.8.5/lib/python3.8/site-packages/django/core/files/storage.py"", line 316, in listdir
|
| 12660 |
for entry in os.scandir(path):
|
| 12661 |
+
FileNotFoundError: [Errno 2] No such file or directory: '/Users/paul/.dev/police-records/static'",FileNotFoundError
|
| 12662 |
"def invert(image, signed_float=False):
|
| 12663 |
""""""Invert an image.
|
| 12664 |
|
|
|
|
| 12827 |
51 if clip_negative:
|
| 12828 |
52 imin = 0
|
| 12829 |
|
| 12830 |
+
KeyError: <type 'numpy.uint64'>",KeyError
|
| 12831 |
"def detect_and_extract(self, image):
|
| 12832 |
""""""Detect oriented FAST keypoints and extract rBRIEF descriptors.
|
| 12833 |
|
|
|
|
| 12980 |
278 return _nx.concatenate(arrs, 0)
|
| 12981 |
279 else:
|
| 12982 |
|
| 12983 |
+
IndexError: list index out of range",IndexError
|
| 12984 |
"def blob_log(
|
| 12985 |
image,
|
| 12986 |
min_sigma=1,
|
|
|
|
| 13215 |
309 local_maxima = lm
|
| 13216 |
310 return _prune_blobs(local_maxima, overlap)
|
| 13217 |
|
| 13218 |
+
IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError
|
| 13219 |
"def blob_doh(
|
| 13220 |
image,
|
| 13221 |
min_sigma=1,
|
|
|
|
| 13466 |
309 local_maxima = lm
|
| 13467 |
310 return _prune_blobs(local_maxima, overlap)
|
| 13468 |
|
| 13469 |
+
IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError
|
| 13470 |
"def blob_dog(
|
| 13471 |
image,
|
| 13472 |
min_sigma=1,
|
|
|
|
| 13707 |
309 local_maxima = lm
|
| 13708 |
310 return _prune_blobs(local_maxima, overlap)
|
| 13709 |
|
| 13710 |
+
IndexError: index 2 is out of bounds for axis 1 with size 2",IndexError
|
| 13711 |
"def random_walker(
|
| 13712 |
data,
|
| 13713 |
labels,
|
|
|
|
| 14305 |
460 for i in range(1, int(labels.max()) + 1):
|
| 14306 |
461 mask_i = np.squeeze(labels == i)
|
| 14307 |
|
| 14308 |
+
UnboundLocalError: local variable 'X' referenced before assignment",UnboundLocalError
|
| 14309 |
"def _load(self, jwt):
|
| 14310 |
if isinstance(jwt, text_type):
|
| 14311 |
jwt = jwt.encode(""utf-8"")
|
|
|
|
| 14386 |
File ""C:\Python27\lib\site-packages\jwt\api_jws.py"", line 135, in _load
|
| 14387 |
signing_input, crypto_segment = jwt.rsplit(b'.', 1)
|
| 14388 |
AttributeError: 'NoneType' object has no attribute 'rsplit'
|
| 14389 |
+
",AttributeError
|
| 14390 |
"def _verify_signature(
|
| 14391 |
self, payload, signing_input, header, signature, key="""", algorithms=None
|
| 14392 |
):
|
|
|
|
| 14433 |
File "".../site-packages/jwt/api_jws.py"", line 168, in _verify_signature
|
| 14434 |
alg = header['alg']
|
| 14435 |
KeyError: 'alg'
|
| 14436 |
+
",KeyError
|
| 14437 |
"def _from_data(self, guild):
|
| 14438 |
# according to Stan, this is always available even if the guild is unavailable
|
| 14439 |
# I don't have this guarantee when someone updates the guild.
|
|
|
|
| 14594 |
cache_online_members = self._state._member_cache_flags.online
|
| 14595 |
File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\template.py"", line 75, in __getattr__
|
| 14596 |
raise AttributeError('PartialTemplateState does not support {0!r}.'.format(attr))
|
| 14597 |
+
AttributeError: PartialTemplateState does not support '_member_cache_flags'.",AttributeError
|
| 14598 |
"async def query_member_named(self, guild, argument):
|
| 14599 |
cache = guild._state._member_cache_flags.joined
|
| 14600 |
if len(argument) > 5 and argument[-5] == ""#"":
|
|
|
|
| 14633 |
cache_online_members = self._state._member_cache_flags.online
|
| 14634 |
File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\template.py"", line 75, in __getattr__
|
| 14635 |
raise AttributeError('PartialTemplateState does not support {0!r}.'.format(attr))
|
| 14636 |
+
AttributeError: PartialTemplateState does not support '_member_cache_flags'.",AttributeError
|
| 14637 |
"async def query_member_by_id(self, bot, guild, user_id):
|
| 14638 |
ws = bot._get_websocket(shard_id=guild.shard_id)
|
| 14639 |
cache = guild._state._member_cache_flags.joined
|
|
|
|
| 14690 |
cache_online_members = self._state._member_cache_flags.online
|
| 14691 |
File ""C:\Users\\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\template.py"", line 75, in __getattr__
|
| 14692 |
raise AttributeError('PartialTemplateState does not support {0!r}.'.format(attr))
|
| 14693 |
+
AttributeError: PartialTemplateState does not support '_member_cache_flags'.",AttributeError
|
| 14694 |
"async def _create_socket(self, server_id, data):
|
| 14695 |
async with self._handshake_check:
|
| 14696 |
if self._handshaking:
|
|
|
|
| 14778 |
Traceback (most recent call last):
|
| 14779 |
File ""D:\Python\lib\site-packages\discord\voice_client.py"", line 192, in _create_socket
|
| 14780 |
self.endpoint_ip = socket.gethostbyname(self.endpoint)
|
| 14781 |
+
socket.gaierror: [Errno 11001] getaddrinfo failed",socket.gaierror
|
| 14782 |
"@classmethod
|
| 14783 |
def from_incomplete(cls, *, state, data):
|
| 14784 |
guild_id = int(data['guild']['id'])
|
|
|
|
| 14831 |
return Invite.from_incomplete(state=self._connection, data=data)
|
| 14832 |
File ""/usr/local/lib/python3.7/site-packages/discord/invite.py"", line 278, in from_incomplete
|
| 14833 |
guild_id = int(data['guild']['id'])
|
| 14834 |
+
KeyError: 'guild'",KeyError
|
| 14835 |
"def execute_webhook(self, *, payload, wait=False, file=None, files=None):
|
| 14836 |
if file is not None:
|
| 14837 |
multipart = {""file"": file, ""payload_json"": utils.to_json(payload)}
|
|
|
|
| 14911 |
size = payload.size
|
| 14912 |
File ""/usr/local/lib64/python3.7/site-packages/aiohttp/payload.py"", line 284, in size
|
| 14913 |
return os.fstat(self._value.fileno()).st_size - self._value.tell()
|
| 14914 |
+
ValueError: I/O operation on closed file",ValueError
|
| 14915 |
"def send(
|
| 14916 |
self,
|
| 14917 |
content=None,
|
|
|
|
| 15160 |
size = payload.size
|
| 15161 |
File ""/usr/local/lib64/python3.7/site-packages/aiohttp/payload.py"", line 284, in size
|
| 15162 |
return os.fstat(self._value.fileno()).st_size - self._value.tell()
|
| 15163 |
+
ValueError: I/O operation on closed file",ValueError
|
| 15164 |
"def main(args=None):
|
| 15165 |
if args is None:
|
| 15166 |
args = sys.argv[1:]
|
|
|
|
| 15573 |
main(sys.argv[1:])
|
| 15574 |
File ""/usr/share/doc/s3ql/contrib/benchmark.py"", line 163, in main
|
| 15575 |
backend = ComprencBackend(b'pass', (alg, 6), Backend('local://' + backend_dir, None, None))
|
| 15576 |
+
TypeError: __init__() takes 2 positional arguments but 4 were given",TypeError
|
| 15577 |
"def post_process(
|
| 15578 |
self,
|
| 15579 |
i: int,
|
|
|
|
| 16012 |
running_hyps.yseq[torch.arange(n_batch), running_hyps.length - 1]
|
| 16013 |
IndexError: index 19 is out of bounds for dimension 1 with size 10
|
| 16014 |
# Accounting: time=335 threads=1
|
| 16015 |
+
# Ended (code 1) at Wed Sep 16 11:55:29 JST 2020, elapsed time 335 seconds",IndexError
|
| 16016 |
"def train(args):
|
| 16017 |
""""""Train with the given args.
|
| 16018 |
|
|
|
|
| 16890 |
train(args)
|
| 16891 |
File ""/export/db/espnet/espnet/asr/chainer_backend/asr.py"", line 81, in train
|
| 16892 |
if args.atype not in ['noatt', 'dot', 'location']:
|
| 16893 |
+
AttributeError: 'Namespace' object has no attribute 'atype'",AttributeError
|
| 16894 |
"def att_for(args):
|
| 16895 |
""""""Returns an attention layer given the program arguments.
|
| 16896 |
|
|
|
|
| 16943 |
train(args)
|
| 16944 |
File ""/export/db/espnet/espnet/asr/chainer_backend/asr.py"", line 81, in train
|
| 16945 |
if args.atype not in ['noatt', 'dot', 'location']:
|
| 16946 |
+
AttributeError: 'Namespace' object has no attribute 'atype'",AttributeError
|
| 16947 |
"def forward(
|
| 16948 |
self, xs, ilens, ys, labels, olens, spembs=None, spcs=None, *args, **kwargs
|
| 16949 |
):
|
|
|
|
| 17150 |
result = self.forward(*input, **kwargs)
|
| 17151 |
File ""/home/abelab/k_inoue/work/tool/espnet/espnet/nets/pytorch_backend/e2e_tts_tacotron2.py"", line 68, in forward
|
| 17152 |
losses = self.guided_attn_masks * att_ws
|
| 17153 |
+
RuntimeError: The size of tensor a (864) must match the size of tensor b (432) at non-singleton dimension 1",RuntimeError
|
| 17154 |
"def train(args):
|
| 17155 |
# display chainer version
|
| 17156 |
logging.info(""chainer version = "" + chainer.__version__)
|
|
|
|
| 17497 |
x, t = convert.concat_examples(batch, gpu_id)
|
| 17498 |
UnboundLocalError: local variable 'gpu_id' referenced before assignment
|
| 17499 |
# Accounting: time=17 threads=1
|
| 17500 |
+
# Ended (code 1) at Fri Jul 27 22:34:01 UTC 2018, elapsed time 17 seconds",UnboundLocalError
|
| 17501 |
"def _decode(self, param):
|
| 17502 |
# make sure datetime, date and time are converted to string by force_text
|
| 17503 |
CONVERT_TYPES = (datetime.datetime, datetime.date, datetime.time)
|
|
|
|
| 17558 |
LINE 1: ...r"".""id"") WHERE ""app_model1"".""foo_versions"" = '''""{''''x...
|
| 17559 |
^
|
| 17560 |
DETAIL: Token ""'"" is invalid.
|
| 17561 |
+
CONTEXT: JSON data, line 1: '...",psycopg2.DataError
|
| 17562 |
"def _summary_coord_extra(self, coord, indent):
|
| 17563 |
# Returns the text needed to ensure this coordinate can be
|
| 17564 |
# distinguished from all others with the same name.
|
|
|
|
| 17621 |
extra = self._summary_coord_extra(coord, indent)
|
| 17622 |
File ""[site-packages-path]/lib/python3.6/site-packages/iris/cube.py"", line 2198, in _summary_coord_extra
|
| 17623 |
if attributes.setdefault(key, value) != value:
|
| 17624 |
+
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()",ValueError
|
| 17625 |
"def __init__(
|
| 17626 |
self,
|
| 17627 |
latitude_of_projection_origin=0.0,
|
|
|
|
| 17869 |
:comment = ""CORDEX Europe EUR-11 CNRM-ALADIN 6.3 L91 ECMWF-ERAINT: EUC12v63-1.100. Reference : Daniel M., Lemonsu A., Déqué M., Somot S., Alias A., Masson V. (2018) Benefits of explicit urban parametrization in regional climate modelling to study climate and city interactions. Climate Dynamics, 1-20, doi:10.1007/s00382-018-4289-x"" ;
|
| 17870 |
:frequency = ""day"" ;
|
| 17871 |
:tracking_id = ""hdl:21.14103/0efca508-2ffb-420b-8093-fffe58a7ae75"" ;
|
| 17872 |
+
}",TypeError
|
| 17873 |
"def __init__(
|
| 17874 |
self,
|
| 17875 |
latitude_of_projection_origin,
|
|
|
|
| 18141 |
:comment = ""CORDEX Europe EUR-11 CNRM-ALADIN 6.3 L91 ECMWF-ERAINT: EUC12v63-1.100. Reference : Daniel M., Lemonsu A., Déqué M., Somot S., Alias A., Masson V. (2018) Benefits of explicit urban parametrization in regional climate modelling to study climate and city interactions. Climate Dynamics, 1-20, doi:10.1007/s00382-018-4289-x"" ;
|
| 18142 |
:frequency = ""day"" ;
|
| 18143 |
:tracking_id = ""hdl:21.14103/0efca508-2ffb-420b-8093-fffe58a7ae75"" ;
|
| 18144 |
+
}",TypeError
|
| 18145 |
"def get_lockfile_meta(self):
|
| 18146 |
from .vendor.plette.lockfiles import PIPFILE_SPEC_CURRENT
|
| 18147 |
|
|
|
|
| 18208 |
sources = [dict(source) for source in self.parsed_pipfile[""source""]]
|
| 18209 |
File ""/opt/miniconda3/lib/python3.7/site-packages/pipenv/vendor/tomlkit/container.py"", line 500, in __getitem__
|
| 18210 |
raise NonExistentKey(key)
|
| 18211 |
+
tomlkit.exceptions.NonExistentKey: 'Key ""source"" does not exist.'",tomlkit.exceptions.NonExistentKey
|
| 18212 |
"@classmethod
|
| 18213 |
def get_deps_from_req(cls, req, resolver=None):
|
| 18214 |
# type: (Requirement, Optional[""Resolver""]) -> Tuple[Set[str], Dict[str, Dict[str, Union[str, bool, List[str]]]]]
|
|
|
|
| 18467 |
raise NoCandidateFound(ireq, all_candidates, self.finder)
|
| 18468 |
pipenv.patched.piptools.exceptions.NoCandidateFound: Could not find a version that matches pywin32==227
|
| 18469 |
No versions found
|
| 18470 |
+
Were https://pypi.org/simple or https://mirrors.aliyun.com/pypi/simple/ or https://pypi.tuna.tsinghua.edu.cn/simple reachable?",pipenv.patched.piptools.exceptions.NoCandidateFound
|
| 18471 |
"def do_outdated(pypi_mirror=None, pre=False, clear=False):
|
| 18472 |
# TODO: Allow --skip-lock here?
|
| 18473 |
from .vendor.requirementslib.models.requirements import Requirement
|
|
|
|
| 18664 |
do_outdated(clear=state.clear, pre=state.installstate.pre, pypi_mirror=state.pypi_mirror)
|
| 18665 |
File ""C:\Users\gabri\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\pipenv\core.py"", line 1845, in do_outdated
|
| 18666 |
reverse_deps = reverse_deps.get(name_in_pipfile)
|
| 18667 |
+
AttributeError: 'NoneType' object has no attribute 'get'",AttributeError
|
| 18668 |
"def ensure_project(
|
| 18669 |
three=None,
|
| 18670 |
python=None,
|
|
|
|
| 18842 |
ensure_project(three=state.three, python=state.python, pypi_mirror=state.pypi_mirror)
|
| 18843 |
File ""/usr/lib/python3.7/site-packages/pipenv/core.py"", line 590, in ensure_project
|
| 18844 |
crayons.green(shorten_path(path_to_python)),
|
| 18845 |
+
TypeError: __str__ returned non-string (type NoneType)",TypeError
|
| 18846 |
"def get_item_dict():
|
| 18847 |
default_uom = frappe.db.get_single_value(""Stock Settings"", ""stock_uom"") or _(""Nos"")
|
| 18848 |
cost_center = frappe.db.get_value(""Company"", self.company, ""cost_center"")
|
|
|
|
| 18912 |
fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
|
| 18913 |
File ""/Users/umairsayyed/frappe-bench/apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py"", line 68, in make_invoices
|
| 18914 |
if not row.qty:
|
| 18915 |
+
AttributeError: 'OpeningInvoiceCreationToolItem' object has no attribute 'qty'",AttributeError
|
| 18916 |
"def get_invoice_dict(self, row=None):
|
| 18917 |
def get_item_dict():
|
| 18918 |
default_uom = frappe.db.get_single_value(""Stock Settings"", ""stock_uom"") or _(
|
|
|
|
| 19044 |
fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
|
| 19045 |
File ""/Users/umairsayyed/frappe-bench/apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py"", line 68, in make_invoices
|
| 19046 |
if not row.qty:
|
| 19047 |
+
AttributeError: 'OpeningInvoiceCreationToolItem' object has no attribute 'qty'",AttributeError
|
| 19048 |
"def make_invoices(self):
|
| 19049 |
names = []
|
| 19050 |
mandatory_error_msg = _(
|
|
|
|
| 19180 |
fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
|
| 19181 |
File ""/Users/umairsayyed/frappe-bench/apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py"", line 68, in make_invoices
|
| 19182 |
if not row.qty:
|
| 19183 |
+
AttributeError: 'OpeningInvoiceCreationToolItem' object has no attribute 'qty'",AttributeError
|
| 19184 |
"def handle(self):
|
| 19185 |
from clikit.utils.terminal import Terminal
|
| 19186 |
from poetry.repositories.installed_repository import InstalledRepository
|
|
|
|
| 19546 |
File ""/home/oakkitten/.poetry/lib/poetry/_vendor/py3.7/cleo/commands/command.py"", line 92, in wrap_handle
|
| 19547 |
return self.handle()
|
| 19548 |
File ""/home/oakkitten/.poetry/lib/poetry/console/commands/show.py"", line 177, in handle
|
| 19549 |
+
color, name, name_length - len(install_marker), install_marker",ValueError
|
| 19550 |
"def handle(self):
|
| 19551 |
from poetry.config.config import Config
|
| 19552 |
from poetry.config.config_source import ConfigSource
|
|
|
|
| 19885 |
File ""/usr/local/lib/python3.7/dist-packages/poetry/config.py"", line 65, in add_property
|
| 19886 |
self.dump()
|
| 19887 |
File ""/usr/local/lib/python3.7/dist-packages/poetry/config.py"", line 101, in dump
|
| 19888 |
+
fd = os.open(str(self._file), os.O_WRONLY | os.O_CREAT, mode)",FileNotFoundError
|
| 19889 |
"def get_data():
|
| 19890 |
return frappe._dict(
|
| 19891 |
{
|
|
|
|
| 20015 |
_raise_exception()
|
| 20016 |
File ""/home/frappe/frappe-bench/apps/frappe/frappe/__init__.py"", line 327, in _raise_exception
|
| 20017 |
raise raise_exception(msg)
|
| 20018 |
+
frappe.exceptions.DoesNotExistError: Company None not found",frappe.exceptions.DoesNotExistError
|
| 20019 |
"def delete_lead_addresses(company_name):
|
| 20020 |
""""""Delete addresses to which leads are linked""""""
|
| 20021 |
leads = frappe.get_all(""Lead"", filters={""company"": company_name})
|
|
|
|
| 20118 |
err.raise_mysql_exception(self._data)
|
| 20119 |
File ""/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/err.py"", line 107, in raise_mysql_exception
|
| 20120 |
raise errorclass(errno, errval)
|
| 20121 |
+
ProgrammingError: (1064, u""You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 's Seafood-Billing','New Wave Seafood-Billing','Sea Well Seafood, Inc.-Billing','' at line 1"")",ProgrammingError
|
| 20122 |
"def execute():
|
| 20123 |
language = frappe.get_single(""System Settings"").language
|
| 20124 |
|
|
|
|
| 20271 |
_raise_exception()
|
| 20272 |
File ""/home/frappe/frappe-bench/apps/frappe/frappe/__init__.py"", line 284, in _raise_exception
|
| 20273 |
raise ValidationError(encode(msg))
|
| 20274 |
+
frappe.exceptions.ValidationError: Domain Manufacturing non esiste, selezionare un nuovo obiettivo da unire",frappe.exceptions.ValidationError
|
| 20275 |
"def set_actual_dates(self):
|
| 20276 |
self.actual_start_date = None
|
| 20277 |
self.actual_end_date = None
|
|
|
|
| 20332 |
pro.set_actual_dates()
|
| 20333 |
File ""/home/frappe/benches/bench-2017-10-02/apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py"", line 373, in set_actual_dates
|
| 20334 |
self.actual_start_date = min([d.actual_start_time for d in self.get(""operations"") if d.actual_start_time])
|
| 20335 |
+
ValueError: min() arg is an empty sequence",ValueError
|
| 20336 |
"def reorder_item():
|
| 20337 |
""""""Reorder item if stock reaches reorder level""""""
|
| 20338 |
# if initial setup not completed, return
|
|
|
|
| 20362 |
return _reorder_item()
|
| 20363 |
File ""/home/frappe/press/benches/1505261338/apps/erpnext/erpnext/stock/reorder_item.py"", line 24, in _reorder_item
|
| 20364 |
frappe.db.sql(""""""select name from tabCompany limit 1"""""")[0][0])
|
| 20365 |
+
IndexError: tuple index out of range",IndexError
|
| 20366 |
"def log(
|
| 20367 |
name: str,
|
| 20368 |
log_path: Union[str, bool] = intelmq.DEFAULT_LOGGING_PATH,
|
|
|
|
| 20546 |
backupCount=log_max_copies)
|
| 20547 |
File ""/usr/lib/python3.7/logging/handlers.py"", line 145, in __init__
|
| 20548 |
if maxBytes > 0:
|
| 20549 |
+
TypeError: '>' not supported between instances of 'NoneType' and 'int'",TypeError
|
| 20550 |
"def start(
|
| 20551 |
self,
|
| 20552 |
starting: bool = True,
|
|
|
|
| 20924 |
File ""/usr/local/lib/python3.8/dist-packages/intelmq/lib/pipeline.py"", line 122, in receive
|
| 20925 |
raise exceptions.PipelineError(""There's already a message, first ""
|
| 20926 |
intelmq.lib.exceptions.PipelineError: pipeline failed - ""There's already a message, first acknowledge the existing one.""
|
| 20927 |
+
abusix-expert-cz: Bot will continue in 15 seconds.",intelmq.lib.exceptions.PipelineError
|
| 20928 |
"def add(
|
| 20929 |
self,
|
| 20930 |
key: str,
|
|
|
|
| 21152 |
File ""/usr/local/lib/python3.8/dist-packages/intelmq/lib/pipeline.py"", line 122, in receive
|
| 21153 |
raise exceptions.PipelineError(""There's already a message, first ""
|
| 21154 |
intelmq.lib.exceptions.PipelineError: pipeline failed - ""There's already a message, first acknowledge the existing one.""
|
| 21155 |
+
abusix-expert-cz: Bot will continue in 15 seconds.",intelmq.lib.exceptions.PipelineError
|
| 21156 |
"def parse_line(self, row, report):
|
| 21157 |
event = self.new_event(report)
|
| 21158 |
|
|
|
|
| 21260 |
events = list(filter(bool, value))
|
| 21261 |
File ""/usr/lib/python3/dist-packages/intelmq/bots/parsers/generic/parser_csv.py"", line 130, in parse_line
|
| 21262 |
raise InvalidValue(key, value)
|
| 21263 |
+
intelmq.lib.exceptions.InvalidValue: invalid value '-' (<class 'str'>) for key 'extra.cert_orgunit'",intelmq.lib.exceptions.InvalidValue
|
| 21264 |
"def process_message(self, uid, message):
|
| 21265 |
seen = False
|
| 21266 |
|
|
|
|
| 21366 |
if self.process_message(uid, message):
|
| 21367 |
File ""/home/sebastianw/intelmq/intelmq/bots/collectors/mail/collector_mail_attach.py"", line 30, in process_message
|
| 21368 |
attach_filename = attach['filename']
|
| 21369 |
+
KeyError: 'filename'",KeyError
|
| 21370 |
"def parse(self, report):
|
| 21371 |
if self.mode == ""fixed"":
|
| 21372 |
return self.parse_csv_dict(report)
|
|
|
|
| 21436 |
for line in self.parse(report):
|
| 21437 |
File ""/usr/local/lib/python3.6/dist-packages/intelmq/bots/parsers/shadowserver/parser.py"", line 65, in parse
|
| 21438 |
filename_search = self.__is_filename_regex.search(self.report_name)
|
| 21439 |
+
TypeError: expected string or bytes-like object",TypeError
|
| 21440 |
"def process(self):
|
| 21441 |
event = self.receive_message()
|
| 21442 |
event.set_default_value()
|
|
|
|
| 21534 |
self.process()
|
| 21535 |
File ""/usr/lib/python3.6/site-packages/intelmq/bots/outputs/smtp/output.py"", line 52, in process
|
| 21536 |
smtp.auth(smtp.auth_plain, user=self.username, password=self.password)
|
| 21537 |
+
TypeError: auth() got an unexpected keyword argument 'user'",TypeError
|
| 21538 |
"def _process(self, dryrun, msg, show):
|
| 21539 |
if msg:
|
| 21540 |
msg = MessageFactory.serialize(self.arg2msg(msg))
|
|
|
|
| 21621 |
self.instance.process()
|
| 21622 |
File ""/usr/lib/python3.6/site-packages/intelmq/bots/experts/filter/expert.py"", line 125, in process
|
| 21623 |
path_permissive=True)
|
| 21624 |
+
TypeError: <lambda>() got an unexpected keyword argument 'path_permissive'",TypeError
|
| 21625 |
"def create_parser():
|
| 21626 |
parser = argparse.ArgumentParser(
|
| 21627 |
prog=""download_mapping"",
|
|
|
|
| 21733 |
File ""./contrib/malware_name_mapping/download_mapping.py"", line 99, in <module>
|
| 21734 |
params=zip(args.expression, args.identifier),
|
| 21735 |
TypeError: zip argument #1 must support iteration
|
| 21736 |
+
root@intelmq-001:/opt/dev_intelmq#",TypeError
|
| 21737 |
"def process(self):
|
| 21738 |
event = self.receive_message()
|
| 21739 |
procedure = Procedure.CONTINUE
|
|
|
|
| 21790 |
self.process()
|
| 21791 |
File ""/usr/lib/python3/dist-packages/intelmq/bots/experts/sieve/expert.py"", line 86, in process
|
| 21792 |
for rule in self.sieve.rules:
|
| 21793 |
+
AttributeError: 'str' object has no attribute 'rules'",AttributeError
|
| 21794 |
"def process(self):
|
| 21795 |
""""""Stop the Bot if cannot connect to AMQP Server after the defined connection attempts""""""
|
| 21796 |
|
|
|
|
| 21871 |
immediate=immediate)
|
| 21872 |
File ""/usr/lib/python3/dist-packages/pika/channel.py"", line 332, in basic_publish
|
| 21873 |
body = body.encode('utf-8')
|
| 21874 |
+
UnicodeEncodeError: 'utf-8' codec can't encode character '\udbef' in position 215395: surrogates not allowed",UnicodeEncodeError
|
| 21875 |
"def generate_reports(
|
| 21876 |
report_template: Report,
|
| 21877 |
infile: BinaryIO,
|
|
|
|
| 21978 |
report.add(""raw"", infile.read(), force=True)
|
| 21979 |
File ""/usr/lib/python3/dist-packages/intelmq/lib/message.py"", line 212, in add
|
| 21980 |
raise exceptions.InvalidValue(key, value, reason=valid_value[1])
|
| 21981 |
+
intelmq.lib.exceptions.InvalidValue: invalid value '' (<class 'str'>) for key 'raw' is_valid returned False.",intelmq.lib.exceptions.InvalidValue
|
| 21982 |
"def process(self):
|
| 21983 |
mailbox = self.connect_mailbox()
|
| 21984 |
emails = mailbox.messages(folder=self.parameters.folder, unread=True)
|
|
|
|
| 22157 |
report.add(""raw"", infile.read(), force=True)
|
| 22158 |
File ""/opt/intelmq/venv/lib/python3.5/site-packages/intelmq-1.0.0.dev7-py3.5.egg/intelmq/lib/message.py"", line 212, in add
|
| 22159 |
raise exceptions.InvalidValue(key, value, reason=valid_value[1])
|
| 22160 |
+
intelmq.lib.exceptions.InvalidValue: invalid value '' (<class 'str'>) for key 'raw' is_valid returned False.",intelmq.lib.exceptions.InvalidValue
|
| 22161 |
"def acknowledge_message(self):
|
| 22162 |
self.__source_pipeline.acknowledge()
|
| 22163 |
","def acknowledge_message(self):
|
|
|
|
| 22185 |
self.acknowledge_message()
|
| 22186 |
File ""/home/sebastian/dev/intelmq/intelmq/lib/bot.py"", line 393, in acknowledge_message
|
| 22187 |
self.__source_pipeline.acknowledge()
|
| 22188 |
+
AttributeError: 'NoneType' object has no attribute 'acknowledge'",AttributeError
|
| 22189 |
"@staticmethod
|
| 22190 |
def sanitize(value):
|
| 22191 |
value = value.strip('.')
|
|
|
|
| 22211 |
return class_reference().sanitize(value)
|
| 22212 |
File "".../intelmq/intelmq/lib/harmonization.py"", line 381, in sanitize
|
| 22213 |
return value.encode('idna').decode().lower()
|
| 22214 |
+
UnicodeError: encoding with 'idna' codec failed (UnicodeError: label empty or too long)",UnicodeError
|
| 22215 |
"def process(self):
|
| 22216 |
""""""
|
| 22217 |
The Ransomware Tracker has comments in it.
|
|
|
|
| 22345 |
File ""<stdin>"", line 1, in <module>
|
| 22346 |
File ""/usr/lib64/python3.4/csv.py"", line 110, in __next__
|
| 22347 |
row = next(self.reader)
|
| 22348 |
+
_csv.Error: line contains NULL byte",_csv.Error
|
| 22349 |
"@staticmethod
|
| 22350 |
def sanitize(value):
|
| 22351 |
value = value.rstrip('.')
|
|
|
|
| 22391 |
"" return value.encode('idna').decode().lower()"",
|
| 22392 |
""UnicodeError: encoding with 'idna' codec failed
|
| 22393 |
(UnicodeError: ""
|
| 22394 |
+
'label empty or too long)']}",UnicodeError
|
| 22395 |
"def __init__(self, execer, ctx, **kwargs):
|
| 22396 |
super().__init__()
|
| 22397 |
self.execer = execer
|
|
|
|
| 22431 |
ctx=self.ctx, **kwargs)
|
| 22432 |
File ""/usr/lib/python3.5/site-packages/xonsh/ptk/shell.py"", line 33, in __init__
|
| 22433 |
self.pt_completer = PromptToolkitCompleter(self.completer, self.ctx)
|
| 22434 |
+
AttributeError: 'PromptToolkitShell' object has no attribute 'completer'",AttributeError
|
| 22435 |
"def cd(args, stdin=None):
|
| 22436 |
""""""Changes the directory.
|
| 22437 |
|
|
|
|
| 22573 |
rtn = _old_cd(args, stdin)
|
| 22574 |
File ""C:\Users\James\AppData\Local\Programs\Python\Python35\lib\site-packages\xonsh\dirstack.py"", line 212, in cd
|
| 22575 |
if ON_WINDOWS and (d[0] == d[1]) and (d[0] in (os.sep, os.altsep)) \
|
| 22576 |
+
IndexError: string index out of range",IndexError
|
| 22577 |
"def find_spec(self, fullname, path, target=None):
|
| 22578 |
""""""Finds the spec for a xonsh module if it exists.""""""
|
| 22579 |
dot = "".""
|
|
|
|
| 22629 |
File ""<frozen importlib._bootstrap>"", line 896, in _find_spec
|
| 22630 |
File ""C:\Anaconda3\lib\site-packages\xonsh\imphooks.py"", line 53, in find_spec
|
| 22631 |
if fname not in (x.name for x in scandir(p)):
|
| 22632 |
+
PermissionError: [WinError 5] Access is denied: '.'",PermissionError
|
bugfixes_train.csv
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55732c54118b4a77304cdf6253529072a9babe68e2a8edc82b14a2243851648d
|
| 3 |
+
size 106575139
|
bugfixes_valid.csv
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb0c647243b9240f2f2d8e4b66871afaf12c36e7e1e0d9525000a6413454a709
|
| 3 |
+
size 73219643
|