Results 100 issues of xmo-odoo

Officially the toplevel "left hand side expression" is defined as: ``` LeftHandSideExpression : NewExpression CallExpression ``` where the two productions implement various permutations of attribute accesses, function calls and new...

This extension got my interest because on some PRs with lots of inline comments traffic it can be difficult to even see the code inbetween the comments. I wanted the...

bug

1. create comment (with [+]) 2. hide all comments in file 3. show comments 4. cancel comment created at [1] 5. hide comments again Expected: no comment Observed: a hidden...

bug

* **Browser**: Firefox Developer Edition 89.0b13 * **Operating System**: Linux Mint 19 * **Link to page with the issue**: https://support.github.com/ * **Screenshot**: with github dark: ![Screenshot from 2021-05-18 13-33-49](https://user-images.githubusercontent.com/7571158/118644496-27020a80-b7de-11eb-91a1-aef3fc8d029d.png) without:...

bug :bug:

**Is your feature request related to a problem? Please describe.** The autofix feature is neat, however in Python (and likely others e.g. Go) when autofixing a snippet (or existing call)...

enhancement
priority:low
difficult
feature:autofix

This is on a codebase with 260kLOC across ~3600 files (python-only, according to `tokei`), on a 2010 MBP (2 cores 2 HT) running OSX 10.11, under Python 3.6.6 from macports...

topic-performance
topic-multiprocessing
Needs PR

```python class Meta(type): ... # class C1: ... C1 = type("C1", (object,), {}) class C12(C1): ... # class C2(metaclass=Meta): ... C2 = Meta("C2", (object,), {}) class C22(C2): ... ``` but...

bug

This overlaps with but is more general than #25 I think. The current output of tunnelto is somewhat uncomfortable when using it in a scripting context (e.g. as part of...

While writing up #48 I found a bit of an odd behaviour in tunnelto: although it apparently writes its output to `stderr`, it doesn't check whether `stderr` is a tty,...

Because ptracer uses a context manager, it's easy to use it in a multi-threaded context where the context can be entered and exited from multiple threads concurrently. However it seems...