Gustavo J. A. M. Carneiro

Results 18 issues of Gustavo J. A. M. Carneiro

The PyPI package name msgpack-python is deprecated, see: https://github.com/msgpack/msgpack-python#pypi-package-name

This project encodes Decimal like this: ``` python elif isinstance(obj, decimal.Decimal): return {'__class__': 'decimal', 'as_str': str(obj)} ``` While DRF json renderer encodes Decimal like this: ``` python elif isinstance(obj, decimal.Decimal):...

**Is your feature request related to a problem? Please describe.** I just been looking through the docs, and I couldn't find any mention of this proxy protocol support. **Describe the...

enhancement

Could Cython please add a mode to generate code compatible with Py_LIMITED_API / PEP 384? This would allow distributing a single binary extension module that works on any Python 3.x...

help wanted
feature
Code Generation

Documentation says: > User should never instantiate the class but call create_scheduler() async function. However I don't understand why this restriction. In the age of type checking, it makes usage...

The documentation for Job.close() is very vague: https://aiojobs.readthedocs.io/en/stable/api.html#aiojobs.Job.close ``` coroutine close(*, timeout=None) Close the job. If timeout exceeded asyncio.TimeoutError raised. The job is in closed state after finishing the method....

My app has many many deployments, it would be tedious to have to modify all of them. Can we instead have some annotations on a namespace. I'd like my dev...

Hello. I wrote a python module to generate python type hints for capnp schema modules. I have done some testing on it, with a private code base. It probably isn't...

Adds asyncio backend. Closes #616. This should probably be rebased/squashed into a single commit, before merge. Up to you, just let me know.