unsignedint

Results 11 comments of unsignedint

Heya @labbati. Just wondering if this has landed on your roadmap (yet)? Given Apple's position on Intel, first-class arm64 support would be very compelling for me - and I suspect...

You need the latest version i.e. master. The 0.8.1 does not include this feature.

To be fair, I think the reserved names really only matter for top-level (e.g. when you are importing a yang module that happens to be called `input` or `long`) so...

An example of `long` causing an issue: ```python if six.PY3: long = int from . import long class timeout(PybindBase): def __init__(self, *args, **kwargs): self.__long = YANGDynClass(base=long.long, is_container='container', yang_name="long", ..., is_config=True)...

Can you paste a minimal working example that exhibits the problem? (i.e. yang and relevant python code)

To be honest, I think this patch probably obviates the need for the structural XML document equality test I was doing to prove serialised outputs were the same. It turns...

Hey @zenmasterjobo, in late 2024, python type annotations are par for the course :D I'd love to see it on your roadmap - or, even better, pydantic models!

I think the point is: django-stormpath should not force a custom `AUTH_USER_MODEL` on users. Django docs (https://docs.djangoproject.com/en/1.10/topics/auth/customizing): - Warning Changing AUTH_USER_MODEL has a big effect on your database structure. It...

I'm sympathetic to your point, but I don't think it's fair to call this a bug, nor would an external dependency necessarily be a panacea. [Here's the spec](https://datatracker.ietf.org/doc/html/rfc5545#section-3.8.5.3) (emphasis mine):...

My reading of the spec, is that “undefined” means the standard does not specify what the recurrence set should be in that situation. [Based on this interpreation](https://en.wikipedia.org/wiki/Undefined_behavior). Therefore, neither implementation...