Antoine Gallix

Results 23 comments of Antoine Gallix

Yes you got it. I was trying to solve https://github.com/mahmoud/glom/issues/77, then I stumble upon this case that make an infinite loop. Just wanted to signal an uncaught error case.

I think the screen capture clip in the link above explains very well what is the feature about. one command creates a selection of a logical element around the cursor...

yes you're right, it was not really a bug at the end. thanks for the quick reaction Bruno.

I think I haven't been precise enough in my original post. In a more systematic form, what I see as an issue is the following. state 0: I have my...

update, I tried unchecking all the layout options in the GUI, and revert to the most vanilla us standard keyboard. Then proceed to activate the extend option, and this alone...

Any suggestion on how I could proceed to debug this issue? The extend file looks fine, nothing special in the definition of the `=` key. Yet this option alone on...

same problem here with a snap install. current version is '' 7.59.1". `heroku update` tells me it's not updatable, yet any heroku command starts by warning me that the version...

same here, it would be nice to mention it somewhere in the readme.

A demo on the proposed custom field solution. ```py from marshmallow import Schema, fields # ---------------------Baseline--------------------- class SimpleSchema(Schema): s = fields.String() simple_schema = SimpleSchema() print(simple_schema.load({'s': None})) # > UnmarshalResult(data={}, errors={'s':...

Basically, it's seems impossible to obtain the following behaviors: - Interpret empty strings as `None`, and returns error because `null`/`None` is not allowed, with the same error message as if...