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
Change by Greg Lindahl :
--
nosy: +wumpus
___
Python tracker
<https://bugs.python.org/issue38227>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Greg Lindahl :
--
nosy: +wumpus
___
Python tracker
<https://bugs.python.org/issue27970>
___
___
Python-bugs-list mailing list
Unsubscribe:
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 tr
Change by Greg Lindahl :
--
nosy: +wumpus
___
Python tracker
<https://bugs.python.org/issue28414>
___
___
Python-bugs-list mailing list
Unsubscribe:
Greg Lindahl 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 python 3.6 libr
Change by Greg Lindahl :
--
nosy: +wumpus
___
Python tracker
<https://bugs.python.org/issue12735>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Greg Lindahl :
--
nosy: +wumpus
___
Python tracker
<https://bugs.python.org/issue4356>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Greg Lindahl :
--
nosy: +wumpus
___
Python tracker
<https://bugs.python.org/issue31096>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Greg Lindahl :
--
nosy: +wumpus
___
Python tracker
<https://bugs.python.org/issue17305>
___
___
Python-bugs-list mailing list
Unsubscribe:
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:
11 matches
Mail list logo