Leonardo Rochael Almeida
Leonardo Rochael Almeida
**Product and Version**: VSCode 1.36.1 **OS Version**: Ubuntu 18.10 **Live Share Extension Version**: 1.0.509 **Target Platform or Language**: Any (but tested on Python) **Steps to Reproduce / Scenario:** 1. Start...
Steps to reproduce: Run the following shell commands: ``` virtualenv foo cd foo pip install -U pip setuptools zc.buildout ``` Create this `buildout.cfg` file inside foo: ``` [buildout] versions =...
A user might trust pypi for source dists and abi-arch-independent (non-binary) wheels and yet feel uneasy about trusting pypi for compiled artifacts. It's not really the case that people spend...
Currently only a single global `[versions]` section can be specified. It applies to buildout itself, extensions, parts, and their dependencies. It also applies to all Python packages installed by all...
Pandas [recently started requiring cython to be present](https://github.com/pydata/pandas/blob/461e0e9fba67b1f5cbe6ac5bd1db0272042777ee/setup.py#L87) so it can be built. So, a simple buildout config like this currently doesn't work without a version pin on `pandas =...
Environment === Tested with the 0.9.13 package that comes with ubuntu trusty (14.04). Summary === When the client supports `CursorPosUpdates` and `CursorShapeUpdates`, the refresh rate for the mouse cursor is...
Suppose I have a subclass of `list` or another class with the same "interface" (say, `PersistentList` from ZODB). There doesn't seem to be simple way to have a `SequenceSchema` deserialize...
## Description When including code listings delimited by `....` the syntax highlighter gets lost, as can be seen in the screenshot below. According to the Asciidoctor documentation, code blocks delimited...
If at least one of them is `None`. Previously, a `data=None` parameter would cause the `json=...` parameter to be ignored, resulting in an empty request body payload on the cassette....
In `vcr/stubs/aiohttp_stubs.py:vcr_request()`, the `new_request()` coroutine [checks for `data` or `json`with this](https://github.com/kevin1024/vcrpy/blob/8c0bb73658e300065eddfafc569e656e1ef6f7bf/vcr/stubs/aiohttp_stubs.py#L237): ```python data = kwargs.get("data", kwargs.get("json")) ``` But this line assumes that `json` can only be sent if `data` is...