Jun Omae (大前 潤)
Jun Omae (大前 潤)
I encountered `ValueError` from `trim_snapshots()`. Investigating, the error occurs when start time of a snapshot has milliseconds. ``` >>> import boto >>> boto.__version__ '2.49.0' >>> conn = boto.connect_ec2() >>> all_snapshots...
UnicodeEncodeError is raised while evaluating py:with expression in Genshi template when non-existent key in a dict and the key is an unicode instance on Python 2.7. In Python 3.x, the...
```pycon >>> import genshi >>> genshi.__version__ '0.7.7' >>> from genshi.template import MarkupTemplate >>> from genshi.filters.i18n import Translator, extract >>> html = """ ... ... FirstSecond ... ... """ >>> >>>...
# Bug report ### Bug description: In Python 3.12.4, using `EmailMessage` class with long non-ASCII characters in the subject, the resulting, encoded extra space `=?utf-8?q?_?=` is generated. The issue doesn't...
After check_password is invoked, apache process is unable to terminate by SIGTERM (and is killed by SIGKILL). When check_password is not invoked, apache process is terminated by SIGTERM normally. It...
When passing invalid utf-8 sequence to Authentication header with `AuthBasicProvider wsgi` and Python 3, SIGSEGV occurs in the apache child process. ``` [Mon Jul 22 18:35:36.799108 2024] [core:notice] [pid 3091685:tid...
When receiving a `str` instance from `check_password` method, `wsgi_check_password` creates a `bytes` instance using `PyUnicode_AsUTF8String` but the `bytes` instance is not released. See https://github.com/GrahamDumpleton/mod_wsgi/blob/5.0.0/src/server/mod_wsgi.c#L14911 I consider that we should release...