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

2018-04-09 Thread devurandom
Change by devurandom <devuran...@gmx.net>: -- nosy: +devurandom ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32576> ___ __

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

2018-04-09 Thread devurandom
Change by devurandom <devuran...@gmx.net>: -- nosy: +devurandom ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue21009> ___ __

[issue30008] OpenSSL 1.1.0 deprecated functions

2018-03-06 Thread devurandom
Change by devurandom <devuran...@gmx.net>: -- nosy: +devurandom ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue30008> ___ __

[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 <devuran...@gmx.net>: -- nosy: +devurandom ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue15112> ___ __

[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/nsswitch.conf

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

2017-08-19 Thread devurandom
Changes by devurandom <devuran...@gmx.net>: -- nosy: +devurandom ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue5004> ___ __

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

2017-07-30 Thread devurandom
Changes by devurandom <devuran...@gmx.net>: -- nosy: +devurandom ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29504> ___ __

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

2016-08-09 Thread devurandom
Changes by devurandom <devuran...@gmx.net>: -- nosy: +devurandom ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25750> ___ __

[issue15298] _sysconfigdata is generated in srcdir, not builddir

2012-10-17 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: +devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15298 ___ ___ Python-bugs-list

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

2012-10-17 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: +devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15483 ___ ___ Python-bugs-list

[issue3754] cross-compilation support for python build

2012-10-17 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: +devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3754 ___ ___ Python-bugs-list mailing

[issue15484] CROSS: use _PYTHON_PROJECT_BASE in distutils sysconfig

2012-10-17 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: +devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15484 ___ ___ Python-bugs-list

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

2012-10-17 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: +devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15268 ___ ___ Python-bugs-list

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

2012-10-17 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: +devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14598 ___ ___ Python-bugs-list

[issue8537] Add ConfigureAction to argparse

2012-05-29 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: +devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8537 ___ ___ Python-bugs-list mailing

[issue3581] failures in test_uuid

2012-03-23 Thread devurandom
devurandom devuran...@gmx.net 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 other tests

[issue6715] xz compressor support

2011-01-30 Thread devurandom
Changes by devurandom devuran...@gmx.net: -- nosy: -devurandom ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6715 ___ ___ Python-bugs-list

[issue6715] xz compressor support

2009-09-02 Thread devurandom
devurandom devuran...@gmx.net 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

[issue6715] xz compression support

2009-08-17 Thread devurandom
New submission from devurandom devuran...@gmx.net: 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

[issue6715] xz compressor support

2009-08-17 Thread devurandom
devurandom devuran...@gmx.net 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