Tuukka Mustonen

Results 47 issues of Tuukka Mustonen

Sketched something for https://github.com/purcell/airspeed/issues/39. - Using `loader` as vessel to deliver `options`. Not perfect, but should work. - Should probably be called something else than "strict" mode, to distinguish from...

Looks like [Strict Reference mode](http://velocity.apache.org/engine/1.7/user-guide.html#strict-reference-mode) is not supported, correct?

Would it be possible to add `lookahead` generator to `boltons.iterutils`: ``` python import six def lookahead(iterable): it = iter(iterable) last = six.next(it) for val in it: yield last, False last...

It would appear that `glom` excels at grabbing (and manipulating) _specific_ data out of data structures. 1) However, the syntax for simply extracting a subset feels a bit verbose: ```py...

Just installed and seems like you cannot use Kerberos (support in `jira`, see http://jira.readthedocs.io/en/latest/examples.html#kerberos).

Is the library thread-safe? Docs don't mention, but I would _assume_ it is, because it's being used in contexts that are normally multi-threaded (e.g. `Flask-Limiter`). However, when I was using...

## Summary * OS: n/a * Type: wheels ## Description Add [PEP 484](https://www.python.org/dev/peps/pep-0484/) type hints to all (at least public API) code and make the distribution [PEP 561](https://www.python.org/dev/peps/pep-0561/) compliant. This...

enhancement
wheels

There is only `%(t)s` that is fixed to Apache log format (see https://github.com/benoitc/gunicorn/blob/master/gunicorn/glogging.py#L331-L333). I would like to add millisecond precision to my access logs (to get them better ordered with...

- Mailing List -

`pip-compile` sometimes locks to a version with PEP 440 local version identifier, sometimes doesn't. ##### Environment Versions 1. OS Type: linux/KDE Neon (=Ubuntu 18.04 based) 1. Python version: `3.5.5` 1....

bug
resolver

I think this is regression of https://github.com/jazzband/pip-tools/issues/399. #### Environment Versions 1. OS Type: Linux 1. Python version: `3.7.10` 1. pip version: `21.3.1` 1. pip-tools version: `6.4.0` #### Steps to replicate...

needs discussion