Jens Tröger
Jens Tröger
In function `scale_font()`, the width of a given text string is computed from the font size: ```python width = len(text) * font_size ``` However, this is just an approximation and...
The current implementation of the `select_font(text)` function is unreliable and hacky in determining which font to use in the face of certain Unicode characters. More stable and reliable solutions have...
Looking at the current Raygun logging handler: https://github.com/MindscapeHQ/raygun4py/blob/f65727a8cc8c6e4b089a68efcd906d6dd7080568/python3/raygun4py/raygunprovider.py#L168-L178 it calls [`send_exception()`](https://github.com/MindscapeHQ/raygun4py/blob/f65727a8cc8c6e4b089a68efcd906d6dd7080568/python3/raygun4py/raygunprovider.py#L80-L101) unconditionally, and that function expects to run within an exception context. However, if I add the Raygun handler to...
Interesting package, thank you for the effort! Have you considered adding support for [custom types](https://docs.sqlalchemy.org/en/20/core/custom_types.html)? For example, suppose I use a custom type like e.g. [CurrencyType](https://sqlalchemy-utils.readthedocs.io/en/latest/data_types.html#module-sqlalchemy_utils.types.currency) which basically maps to...
Address parts of issue https://github.com/zopefoundation/transaction/issues/63. This change adds three new statuses, `"Aborting"`, `"Aborted"`, and `"Abort failed"`, and wires them into the appropriate places. I have not yet made the `Status`...
This works: ```python >>> tx = tm.get() >>> tx.status 'Active' >>> tm.commit() >>> tx.status 'Committed' ``` and this does’t: ```python >>> tx = tm.get() >>> tx.status 'Active' >>> tm.abort() >>>...
This actually happened in a downstream repository where another package was added to the repository and that new package’s version was different than the repo’s — then `cz bump` failed...
More of a feature question/suggestion: would it be possible to generate and provide a list of [ISO 3166-2](https://www.iso.org/iso-3166-country-codes.html) country codes? Quick glance at `common/main/*.xml` ([cldr-common.zip](http://unicode.org/Public/cldr/41/)) would indicate that the 2-letter...
The issue is a repost of an unattended Google groups post [_Same task runs multiple times?_](https://groups.google.com/forum/#!topic/celery-users/8jjjsFkdCQI) ``` > ./bin/celery -A celery_app report software -> celery:4.1.0 (latentcall) kombu:4.1.0 py:3.6.1 billiard:3.5.0.3 redis:2.10.6...
This issue is a continuation of issue https://github.com/celery/celery/issues/4295. Now that both tasks are created, debug information shows their `parent` relation: ``` 2017-09-28 16:29:16,138 INFO [srv][MainThread] id=c18c417d-b825-4188-a55d-75faa86aa666 status=PENDING parent=b1f6d993-3c55-4280-93a8-f885747d53f9 2017-09-28 16:29:16,171...