New submission from Zack Weinberg :
Reproducibility has so far been concerned primarily with binary packages, but
it's also desirable for source tarballs to be reproducible starting from a
version-control checkout. This is particularly important for Python, where
'setup.py sdis
New submission from Zack Weinberg :
Recent versions of the gzip command-line utility have an option `-n` which
causes it to omit the FNAME field of the gzip file header, and write out the
MTIME field as zero. Both of these properties are desirable when constructing
reproducible build
New submission from Zack Weinberg :
Recent versions of the gzip command-line utility have an option `-n` which
causes it to omit the FNAME field of the gzip file header, and write out the
MTIME field as zero. Both of these properties are desirable when constructing
reproducible build
New submission from Zack Weinberg :
Recent versions of the gzip command-line utility have an option `-n` which
causes it to omit the FNAME field of the gzip file header, and write out the
MTIME field as zero. Both of these properties are desirable when constructing
reproducible build
Zack Weinberg added the comment:
I have yet another use case for the function implemented by this patch (i.e.
retrieving the cert chain actually sent by the server, regardless of whether
that gives a path to a trust anchor). I'm implementing a network forensics
tool, and one o
Zack Weinberg added the comment:
The code that needs to be changed is in distutils, setuptools just calls into
it. I haven't checked flit but I expect it does the same.
--
___
Python tracker
<https://bugs.python.org/is
New submission from Zack Weinberg :
There are several existing issues (e.g. #18748 and #35866) where at least part
of the problem is that GNU libc tried to dlopen() `libgcc_s.so` at a moment
when that's not safe, e.g. during thread or process shutdown. This converts a
recoverable error
Zack Weinberg added the comment:
> To be clear: this issue is NOT a bug in Python
I don't think that's entirely true. I think CPython needs to be linked against
libgcc_s.so, so that this class of application bugs will no longer manifest as
interpreter crashes. I filed #3
Zack Weinberg added the comment:
I have observed this problem in a production application using Python 3.5 and
3.6 (system-packaged interpreters from Ubuntu) and I would like to mention that
this is an effective workaround:
```
import ctypes
libgcc_s = ctypes.CDLL("libgcc_s
New submission from Zack Weinberg :
[_]thread.start_new_thread can fail if the underlying OS primitive fails
(pthread_create / _beginthreadex), but the exception that is thrown when this
happens is a generic RuntimeError (it's _called_ ThreadError in the source
code, but it doesn'
New submission from Zack Weinberg :
The documentation of the semantics of range expressions in regular expression
character classes is not precise enough. All it says is
Ranges of characters can be indicated by giving two characters and
separating them by a '-', for example
Zack Weinberg added the comment:
Also, whether or not the current behavior is the intended behavior, I think
programmers would appreciate an explicit statement of whether or not it might
change in the future.
--
___
Python tracker
<ht
New submission from Zack Weinberg:
subprocess.check_output calls Popen.communicate but does not allow you to
specify its argument (i.e. data to send to the child process's stdin). It
would be nice if it were enhanced to allow this. Proposed patch attached (to
the 2.7 subprocess.py; s
Zack Weinberg added the comment:
OK, here is a patch against the latest development version. Now also with
tests and documentation updates.
--
Added file: http://bugs.python.org/file28247/issue16624-v34.diff
___
Python tracker
<h
Changes by Zack Weinberg :
Removed file:
http://bugs.python.org/file28218/subprocess-check-output-allow-input.diff
___
Python tracker
<http://bugs.python.org/issue16
Zack Weinberg added the comment:
I don't have the ability to test on Windows, but the construct you are
concerned about was copied from other tests in the same file which were not
marked as Unix-only.
I have faxed in a contributor agre
Zack Weinberg added the comment:
Contributor agreement resent by email. Sorry for the delay.
--
___
Python tracker
<http://bugs.python.org/issue16624>
___
___
New submission from Zack Weinberg:
Occasionally one encounters binary formats which do not stick to one byte order
throughout. For example, I have a C program that reads and writes arrays of
this struct:
```
struct conn_data
{
uint32_t ipv4_addr; /* read - network byte order - target IPv4
New submission from Zack Weinberg:
unicodedata.name() doesn't have name information for the C0 and C1 control
characters. To see this, run
pprint.pprint(["U+{:04X} {}".format(n, unicodedata.name(chr(n), ""))
for n in range(256)])
and you will observe printed for U+
Zack Weinberg added the comment:
It looks to me as if NameAliases.txt is the better reference for the C0 and C1
controls. It matches the UnicodeData.txt field 10 names for most entries where
the field 1 name is "", but it has names for U+0080, U+0081, U+0084,
and U+0099, which hav
Zack Weinberg added the comment:
Here is a new patch vs latest trunk.
--
Added file: http://bugs.python.org/file29924/issue16624-v34a.diff
___
Python tracker
<http://bugs.python.org/issue16
Changes by Zack Weinberg :
Removed file: http://bugs.python.org/file28247/issue16624-v34.diff
___
Python tracker
<http://bugs.python.org/issue16624>
___
___
Python-bug
Zack Weinberg added the comment:
> I think that it will be better not introduce a new argument, but reuse stdin.
> Just allow io.BytesIO (or perhaps even any file object) be specified as stdin.
If we were designing from scratch I might agree, but we aren't. Principle of
least a
Zack Weinberg added the comment:
Note also that allowing `stdin=` in a clean fashion would require
rather more surgery than you suggest, because a filelike can produce an
infinite stream of data, and people would expect that to work when the
subprocess only reads a finite prefix; making it
Zack Weinberg added the comment:
My position is:
* input= should be supported in check_output(), for consistency with
communicate().
* I like the idea of making stdin= support file-like objects which don't have a
fileno, in both communicate() and everything that calls it, but that doe
Zack Weinberg added the comment:
??? communicate() has always had input= AFAIK.
--
___
Python tracker
<http://bugs.python.org/issue16624>
___
___
Python-bug
Zack Weinberg added the comment:
OK, I get that, but what I'm saying is I think input= is still desirable even
if stdin= becomes more powerful.
--
___
Python tracker
<http://bugs.python.org/is
New submission from Zack Weinberg:
The codecs registry (as of 3.4) is unaware of two of the canonical encoding
names from <https://encoding.spec.whatwg.org/#names-and-labels>: "windows-874"
and "x-mac-cyrillic". For interoperability's sake, please make
New submission from Zack Weinberg:
The `re` module documentation does not do a good job of explaining exactly what
`\w` matches. Quoting https://docs.python.org/3.5/library/re.html :
> \w
> For Unicode (str) patterns:
> Matches Unicode word characters; this includes most characters
&
Zack Weinberg added the comment:
FWIW, the actual behavior of \w matching "everything in Unicode general
categories L* and N*, plus U+005F (underscore)" is consistent across all
versions I can conveniently test (2.7, 3.4, 3.5).
In 2.7, there are four characters in general category
New submission from Zack Weinberg:
This is pretty esoteric, please bear with me. I'm attempting to enhance a
transparent-SOCKS module (https://github.com/Anorov/PySocks) to support
non-blocking connect(). This means, you should be able to do this:
socks.set_default_proxy(socks.S
Zack Weinberg added the comment:
> Obvious question: why not working on the asyncio support in this library?
The whole point of a transparent SOCKS module is that it provides a function
that's a *drop-in replacement* for socket.socket(). An asyncio-based SOCKS
module would have a co
New submission from Zack Weinberg:
I tripped over a couple of SyntaxError cases where the diagnostic caret is
misplaced.
>>> While x:
File "", line 1
While x:
^
SyntaxError: invalid syntax
The caret should point to the capital W in
Zack Weinberg added the comment:
In terms of the formal grammar of the language, you are correct. However, the
position of the caret should be chosen based *not* on the formal grammar, but
on a heuristic estimation of what the most probable mistake actually is. In
both of the cases I listed
34 matches
Mail list logo