[issue32576] concurrent.futures.thread deadlock due to Queue in weakref callback

2018-04-09 Thread devurandom
Change by devurandom : -- nosy: +devurandom ___ Python tracker <https://bugs.python.org/issue32576> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21009] Potential deadlock in concurrent futures when garbage collection occurs during Queue.get

2018-04-09 Thread devurandom
Change by devurandom : -- nosy: +devurandom ___ Python tracker <https://bugs.python.org/issue21009> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30008] OpenSSL 1.1.0 deprecated functions

2018-03-06 Thread devurandom
Change by devurandom : -- nosy: +devurandom ___ Python tracker <https://bugs.python.org/issue30008> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15112] argparse: nargs='*' positional argument doesn't accept any items if preceded by an option and another positional

2017-12-30 Thread devurandom
Change by devurandom : -- nosy: +devurandom ___ Python tracker <https://bugs.python.org/issue15112> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5004] socket.getfqdn() doesn't cope properly with purely DNS-based setups

2017-08-19 Thread devurandom
devurandom added the comment: In my case, /etc/hostname, /proc/sys/kernel/hostname, `uname -n`, `hostname -f` all show the same FQDN, but `python -c 'import socket ; print(socket.getfqdn())'` still prints the short hostname. /etc/hosts is empty except for localhost. /etc/nss

[issue5004] socket.getfqdn() doesn't cope properly with purely DNS-based setups

2017-08-19 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue5004> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29504] blake2: compile error with -march=bdver2

2017-07-30 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue29504> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25750] tp_descr_get(self, obj, type) is called without owning a reference to "self"

2016-08-09 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue25750> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14598] _cursesmodule.c fails with ncurses-5.9 on Linux

2012-10-17 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue14598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15268] curses configure checks fail if only /usr/include/ncursesw/curses.h is installed

2012-10-17 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue15268> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15484] CROSS: use _PYTHON_PROJECT_BASE in distutils sysconfig

2012-10-17 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue15484> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3754] cross-compilation support for python build

2012-10-17 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue3754> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15483] CROSS: initialise include and library paths in setup.py

2012-10-17 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue15483> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15298] _sysconfigdata is generated in srcdir, not builddir

2012-10-17 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue15298> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8537] Add ConfigureAction to argparse

2012-05-29 Thread devurandom
Changes by devurandom : -- nosy: +devurandom ___ Python tracker <http://bugs.python.org/issue8537> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3581] failures in test_uuid

2012-03-23 Thread devurandom
devurandom added the comment: > Well, without a valid MAC address the function cannot work... It should not break in such ugly way either, imo. > On the other hand, I would not worry too much: > uuid._ifconfig_getnode() is an internal function; and since all the > othe

[issue6715] xz compressor support

2011-01-30 Thread devurandom
Changes by devurandom : -- nosy: -devurandom ___ Python tracker <http://bugs.python.org/issue6715> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6715] xz compressor support

2009-09-02 Thread devurandom
devurandom added the comment: .lzma is actually not a format. It is just the raw output of the LZMA1 coder. XZ instead is a container format for the LZMA2 coder, which probably means LZMA+some metadata. XZ is the official successor to .lzma, and GNU is using it already (look at coreutils), and

[issue6715] xz compressor support

2009-08-17 Thread devurandom
devurandom added the comment: Yes, xz-utils contains a C library, though it still caries the name "liblzma.so", probably for historic reasons. You are right that xz is a file format based around the lzma algorithm. It just uses a more advanced container format. (lzma-utils had no co

[issue6715] xz compression support

2009-08-17 Thread devurandom
New submission from devurandom : Python currently supports zlib, gzip and bzip2 compressors. What is missing is support for xz (http://tukaani.org/xz/). It comes with a C library. -- components: Library (Lib) messages: 91657 nosy: devurandom severity: normal status: open title: xz