Adrian

Results 150 issues of Adrian

For example, [flask's `__init__.py`](https://github.com/pallets/flask/blob/master/src/flask/__init__.py) explicitly exports many common symbols. But when generating an import e.g. for `url_for`, it will import it from `flask.helpers` instead. My suggestion would be to take...

## Environment data - Language Server version: 0.5.50.0 - OS and version: Gentoo Linux - Python version (& distribution if applicable, e.g. Anaconda): 3.8 ## Expected behavior Being able to...

It would be nice if httpie had a compact help. I tend to forget the various request item delimiters, but `http --help` spams the terminal scrollback with lots of unrelated...

enhancement
docs
help wanted
needs product design

Would be useful in some cases, e.g. when a host serves different responses depending on the IP version. `-4`and `-6` are pretty common for this anyway.

enhancement
blocked by upstream

I have `localIdentName` set to `'[path]___[name]__[local]___[hash:base64:5]'` in the `css-loader`, but as of 3.0.0 this generates a name (in css-loader) where slashes and dots aren't replaced with dashes but rather escaped....

help wanted
question

**Problem Statement** The Windows 7 calculator allowed users to enter both `.` and `,` as the decimal separator. This is very convenient because while certain locales uses `,` (e.g. German)...

Enhancement
Pri: 2
needs more info

```python from marshmallow import Schema, fields, post_dump class ItemSchema(Schema): id = fields.Integer() name = fields.String() @post_dump(pass_many=True) def query_extra_data(self, data, many, **kwargs): print(f'post_dump called: {many=} {data=}') class TestSchema(Schema): items = fields.List(fields.Nested(ItemSchema))...

I have this schema: ```py class RequestAccessSchema(mm.Schema): request_cern_access = fields.Bool(load_default=False, data_key='cern_access_request_cern_access') birth_date = fields.Date(load_default=None, data_key='cern_access_birth_date', validate=validate_with_message(lambda x: x

polymorphism

## Bug Report ### Steps Type something that results in no results found in the dropdown search. ### Expected Result The dropdown arrow not being on top of the text....

When asking https://stackoverflow.com/q/70774121/298479 I found another question where a comment (even from @erikras IIRC) suggested storing the "raw" data in the value and converting it only during submission. However, there...