Samuel Colvin

Results 324 issues of Samuel Colvin

I'm been using chrono as a reference implementation while fuzzing my own code, and I've found an error in chrono. `.to_string()` correctly rounds seconds up to account for nanoseconds exceeding...

Hi, great to see aioredis is getting some love. Running the following: ```py import asyncio import aioredis async def main(): redis = aioredis.from_url('redis://localhost', encoding='utf-8') await redis.set('my-key', 'value') value = await...

enhancement

Tera is great, thank you so much. Given that tera is useful when rendering user generated templates, it would be great if there was a simple way of generating a...

`pytest-picked` looks great, but I often have 10s or even hundreds of tests in a single file. It would be great therefore if this library could pick specific test rather...

_(Please accept my apology if this is already discussed or resolved somewhere, I've looked but couldn't find anything)_ **Is your feature request related to a problem? Please describe.** Currently when...

feature
extractor: griffe

I propose that you suggest the user of [`edge-mock`](https://github.com/samuelcolvin/edge-mock) (which I've just built) instead of [`service-worker-mock`](https://github.com/zackargyle/service-workers/tree/master/packages/service-worker-mock). I've made the necessary changes here for the switch. A few advantages of `edge-mock`:...

See https://github.com/samuelcolvin/edge-mock/pull/14 I'm trying to upgrade edge-mock (implementations of worker-types types for use when testing) to supprot worker-types 3. However I'm having problem because a small number of types conflict...

https://github.com/aio-libs/aiosmtpd/blob/3ced778177418d8ae47bc3c300879bf59e731f1a/aiosmtpd/handlers.py#L122 Currently forwarding mail in `Proxy` is blocking which will mean the entire server is blocking. Use of `smtplib.SMTP()` should be replaced by `aiosmtplib.SMTP()`. Issue copied from https://bugs.python.org/issue35788

enhancement
help wanted

Misaka is only available via a `.tar.gz` file from pypi, currently `misaka-2.1.1.tar.gz`. It would improve installation time and portability if you could also distribute a wheel file. The simplest way...

currently I'm using ```bash papertrail-systems() { curl -s -H "X-Papertrail-Token: `cat ~/.papertrail.yml | sed -r 's/token://'`" https://papertrailapp.com/api/v1/systems.json | python -m json.tool | grep '"name":' | sed -r 's/ +"name": "(.*)",/\1/'...