[issue20468] resource module documentation is incorrect

2020-09-09 Thread Greg Lindahl
Greg Lindahl added the comment: I just tripped on the bug that the maxrss field is kilobytes on Linux and bytes on Darwin. I don't think referring to the C manpages is sufficient to prevent confusion. I don't actually use my package on a Mac, I just use Travis-CI to test

[issue38227] Setting a signal handler gets multiprocessing.Pool stuck

2020-07-19 Thread Greg Lindahl
Change by Greg Lindahl : -- nosy: +wumpus ___ Python tracker <https://bugs.python.org/issue38227> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27970] ssl: can't verify a trusted site with imcomplete certificate chain

2019-09-17 Thread Greg Lindahl
Change by Greg Lindahl : -- nosy: +wumpus ___ Python tracker <https://bugs.python.org/issue27970> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33762] temp file isn't IOBase

2019-06-04 Thread Greg Lindahl
Greg Lindahl added the comment: This is breaking aiohttp client file multipart uploads from temporary files. I'd be willing to bet that a lot of libraries do isinstance(foo, io.IOBase) deep in their guts. -- nosy: +wumpus ___ Python tracker

[issue28414] SSL match_hostname fails for internationalized domain names

2018-01-28 Thread Greg Lindahl
Change by Greg Lindahl <lind...@pbm.com>: -- nosy: +wumpus ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue28414> ___ __

[issue17305] IDNA2008 encoding missing

2018-01-27 Thread Greg Lindahl
Greg Lindahl <lind...@pbm.com> added the comment: I am avoiding Python's built-in libraries as much as possible in my aiohttp-based crawler because of this issue, but I cannot open a connection to https://xn--ho-hia.de because there is an 'IDNA does not round-trip' raise in the pyth

[issue12735] request full Unicode collation support in std python library

2018-01-21 Thread Greg Lindahl
Change by Greg Lindahl <lind...@pbm.com>: -- nosy: +wumpus ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue12735> ___ __

[issue4356] Add "key" argument to "bisect" module functions

2018-01-21 Thread Greg Lindahl
Change by Greg Lindahl <lind...@pbm.com>: -- nosy: +wumpus ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue4356> ___ __

[issue31096] asyncio.stream.FlowControlMixin._drain_helper may lead to a blocking behavior

2018-01-11 Thread Greg Lindahl
Change by Greg Lindahl <lind...@pbm.com>: -- nosy: +wumpus ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue31096> ___ __

[issue17305] IDNA2008 encoding missing

2017-12-28 Thread Greg Lindahl
Change by Greg Lindahl <lind...@pbm.com>: -- nosy: +wumpus ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue17305> ___ __

[issue30147] change in interface for compiled regex.pattern

2017-04-23 Thread Greg Lindahl
New submission from Greg Lindahl: The following script runs fine in python 3.6 and recently started failing the assertion in 3.7-dev and nightly import re r = re.compile(re.escape('/foo')) print(r) print(r.pattern) assert r.pattern.startswith('\\/') -- components: Regular Expressions