[issue37796] ModuleFinder does not resolve ".." correctly

2019-08-08 Thread Michael Kleehammer
New submission from Michael Kleehammer : The modulefinder module does not handle relative directories properly. The error I found is when one subpackage attempts to import from a sibling subpackage using the form from ..language import ( DirectiveDefinitionNode

[issue34202] 3.6 ZipFile fails with Path

2018-07-23 Thread Michael Kleehammer
New submission from Michael Kleehammer : ZipFile is documented to accept "path-like" objects but is failing when I try to create one. I've distilled it down to this small test: import zipfile from pathlib import Path path = Path('test.zip') zf = zipfile.ZipFil

[issue29236] 'an ASCII string of one or more PEM-encoded certificates' needs to be unicode

2017-01-25 Thread Michael Kleehammer
Changes by Michael Kleehammer <mich...@kleehammer.com>: -- nosy: +mkleehammer ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue18458] libedit history offset workaround

2013-07-21 Thread Michael Kleehammer
Michael Kleehammer added the comment: Just wanted to chime in that I reported this to Apple and their response was exactly this. (Perhaps Ronald works for Apple?) Is there a temporary work around in the meantime other than rebuilding everything? -- nosy: +mkleehammer

[issue9889] PyUnicode_FormatV and Py_UNICODE*?

2010-09-17 Thread Michael Kleehammer
New submission from Michael Kleehammer mich...@kleehammer.com: Using Py_UNICODE* in Python 3 C extensions is significantly more cumbersome than using char* was in Python 2.x. One addition that could help would be a Py_UNICODE* format type for PyUnicode_FormatV. Many printf libraries us %S