[issue21233] Add *Calloc functions to CPython memory allocation API

2014-04-27 Thread Stefan Krah
Stefan Krah added the comment: This is probably offtopic, but I think people who want reliable MemoryErrors can use limits, e.g. via djb's softlimit (daemontools): $ softlimit -m 1 ./python Python 3.5.0a0 (default:462470859e57+, Apr 27 2014, 19:34:06) [GCC 4.7.2] on linux Type

[issue20305] Android's incomplete locale.h implementation prevents cross-compilation

2014-04-28 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: +lizhenhua ___ Python tracker <http://bugs.python.org/issue20305> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21371] struct lconv does not have decimal_point on android platform

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: This looks like a duplicate. -- nosy: +skrah resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Android's incomplete locale.h implementation prevents cross-compilation _

[issue5404] Cross-compiling Python

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: Ping. Is this still an issue for anyone in 3.4? -- ___ Python tracker <http://bugs.python.org/issue5404> ___ ___ Python-bugs-list m

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: With the latest patch the decimal benchmark with a lot of small allocations is consistently 2% slower. Large factorials (where the operands are initialized to zero for the number-theoretic transform) have the same performance with and without the patch. It would

[issue1820] Enhance Object/structseq.c to match namedtuple and tuple api

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: Is accessing _fields a common operation? Personally I'd use a PyGetSetDef and generate the tuple on access (perhaps cache the result). -- ___ Python tracker <http://bugs.python.org/i

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: Hmm, obmalloc.c changed as well, so already the gcc optimizer can take different paths and produce different results. Also I did set mpd_callocfunc to PyMem_Calloc(). 2% slowdown is far from being a tragic result, so I guess we can ignore that. The bytes

[issue21374] DecimalTuple.__module__ is set to _frozen_importlib

2014-04-28 Thread Stefan Krah
New submission from Stefan Krah: >>> x = Decimal(9).as_tuple() >>> import pickle >>> pickle.dumps(x) Traceback (most recent call last): File "", line 1, in _pickle.PicklingError: Can't pickle : attribute lookup DecimalTuple on _frozen_importli

[issue19354] test_format fails on RHEL-6

2014-04-28 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> out of date stage: -> resolved status: pending -> closed ___ Python tracker <http://bugs.python.or

[issue21370] segfault from simple traceback.format_exc call

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: I cannot reproduce this. Which platform? Does it happen with Python 3.4? -- nosy: +skrah ___ Python tracker <http://bugs.python.org/issue21

[issue1533105] NetBSD build with --with-pydebug causes SIGSEGV

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: Given msg84518 and msg118909 I think this can be closed. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5404] Cross-compiling Python

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: Here's a cross-compile script for arm-linux-gnueabi. Building 3.4 works on Ubuntu 14.04. I cannot run the tests, since I only have an old Debian-ARM qemu image with the wrong glibc version. For 3.5 we have a regression due to the new matrix ope

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-04-28 Thread Stefan Krah
Stefan Krah added the comment: The order of the nelem/elsize matters for readability. Otherwise it is not intuitive what happens after the jump to redirect in _PyObject_Alloc(). Why would you assert that 'nelem' is one? -- ___ Python trac

[issue1820] Enhance Object/structseq.c to match namedtuple and tuple api

2014-04-29 Thread Stefan Krah
Stefan Krah added the comment: Okay, if no one else wants this, I'll go ahead with the _fields part. Andrew, could you sign a contributor agreement? -- ___ Python tracker <http://bugs.python.org/i

[issue20230] structseq types should expose _fields

2014-04-29 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue20230> ___ ___

[issue20230] structseq types should expose _fields

2014-04-29 Thread Stefan Krah
Changes by Stefan Krah : -- superseder: -> Enhance Object/structseq.c to match namedtuple and tuple api ___ Python tracker <http://bugs.python.org/issu

[issue19001] test_gdb fails on Fedora buildbot

2014-04-29 Thread Stefan Krah
Stefan Krah added the comment: Since Fedora 16 is EOL, let's close this. -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.pyth

[issue21388] decimal.InvalidContext is unused

2014-04-29 Thread Stefan Krah
New submission from Stefan Krah: We could remove decimal.InvalidContext, which is completely unused both in decimal.py and _decimal. -- messages: 217519 nosy: mark.dickinson, rhettinger, skrah priority: normal severity: normal status: open title: decimal.InvalidContext is unused type

[issue21374] DecimalTuple.__module__ is set to _frozen_importlib

2014-04-29 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue21388] decimal.InvalidContext is unused

2014-04-29 Thread Stefan Krah
Stefan Krah added the comment: Okay, also it is easier to keep it. I was just busy with the exception docs and found the InvalidContext situation slightly odd. Of course, there is a very small chance that external software is using it. -- resolution: -> not a bug stage: -> re

[issue21387] Memory leaks when embedded interpreter is reinitialized

2014-04-29 Thread Stefan Krah
Stefan Krah added the comment: Are we fixing these on a case by case basis or is it hopeless (msg146615)? -- ___ Python tracker <http://bugs.python.org/issue21

[issue21398] pydoc heapq leaves terminal in an unusable state

2014-04-30 Thread Stefan Krah
New submission from Stefan Krah: $ ./python -m pydoc heapq Traceback (most recent call last): File "/home/stefan/hg/cpython/Lib/runpy.py", line 170, in _run_module_as_main "__main__", mod_spec) File "/home/stefan/hg/cpython/Lib/runpy.py", line 85, in _run_c

[issue21398] pydoc heapq leaves terminal in an unusable state

2014-04-30 Thread Stefan Krah
Changes by Stefan Krah : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue21398> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue21399] inspect and class methods

2014-04-30 Thread Stefan Krah
New submission from Stefan Krah: In Python2.7, the cls parameter shows up in pydoc: frombuf(cls, buf) from __builtin__.type Construct a TarInfo object from a 512 byte string buffer. In 3.5, it doesn't: frombuf(buf, encoding, errors) from builtins.type Constr

[issue21398] pydoc heapq leaves terminal in an unusable state

2014-04-30 Thread Stefan Krah
Stefan Krah added the comment: Did you use the same locale settings? -- ___ Python tracker <http://bugs.python.org/issue21398> ___ ___ Python-bugs-list mailin

[issue21398] LC_CTYPE=C: pydoc leaves terminal in an unusable state

2014-04-30 Thread Stefan Krah
Stefan Krah added the comment: Sorry, then I should have been more explicit: The failure only occurs with LC_CTYPE=C. -- title: pydoc heapq leaves terminal in an unusable state -> LC_CTYPE=C: pydoc leaves terminal in an unusable state ___ Pyt

[issue21398] LC_CTYPE=C: pydoc leaves terminal in an unusable state

2014-04-30 Thread Stefan Krah
Stefan Krah added the comment: I can also confirm the need to reset the terminal when using a working locale and Ctrl-C. So we have two issues then: 1) The UnicodeDecodeError should not happen. 2) pydoc behaves erratically after various exceptions. In Python2.7 neither of the issues

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-04-30 Thread Stefan Krah
Stefan Krah added the comment: Victor, sure, maybe not right away. If you prefer to commit very soon, I promise to do a post commit review. -- ___ Python tracker <http://bugs.python.org/issue21

[issue21407] Add function signatures to _decimal

2014-05-01 Thread Stefan Krah
Changes by Stefan Krah : -- assignee: skrah components: Extension Modules nosy: skrah priority: normal severity: normal status: open title: Add function signatures to _decimal type: enhancement versions: Python 3.5 ___ Python tracker <h

[issue21399] inspect and class methods

2014-05-01 Thread Stefan Krah
Stefan Krah added the comment: Okay, thanks. I've used "$cls" for Decimal.from_float in 40b06a75d1c6, and it appears to work already. Feel free to close the issue (I don't know whether AC emits "$cls" or if it should). -- ___

[issue21407] Add function signatures to _decimal

2014-05-01 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue21407> ___

[issue21412] core dump in PyThreadState_Get when built --with-pymalloc

2014-05-01 Thread Stefan Krah
Stefan Krah added the comment: On SPARC/suncc the flags in http://bugs.python.org/issue15963#msg170661 appear to work. Also, we have several Solaris build slaves that don't core dump. Some are offline, but you can click through to the ./configure steps of past builds to see the build

[issue21037] add an AddressSanitizer build option

2014-05-01 Thread Stefan Krah
Stefan Krah added the comment: > Hmm... perhaps Stefan would like to set something up? Being a correctness tool hipster, of course I already have the latest toy. :) The patch works on Debian 64-bit + clang. I can set up a VM. We may have to react quickly to some of the issues. Then ag

[issue21399] inspect and class methods

2014-05-02 Thread Stefan Krah
Stefan Krah added the comment: > By default AC emits "$type" for class methods, see dict_fromkeys in > Objects/dictobject.c. Thanks, good choice. -- ___ Python tracker <http://bugs.py

[issue21037] add an AddressSanitizer build option

2014-05-02 Thread Stefan Krah
Stefan Krah added the comment: Antoine, if you send me the buildbot credentials, we can get started. Environment vars: CC=clang ASAN_OPTIONS="allocator_may_return_null=1,handle_segv=0" I suggest to compile the release build, just --with-address

[issue21368] Check for systemd locale on startup if current locale is set to POSIX

2014-05-02 Thread Stefan Krah
Stefan Krah added the comment: Why is the default encoding of POSIX wrong on a modern Linux system? Today I installed Debian testing, and the first question of the installer is to choose between "C" and "English" locales for the install. This with the remark that the chose

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-02 Thread Stefan Krah
Stefan Krah added the comment: Thanks, Ned. I'm attaching a second version of the existing patch with improved error handling and a fix for test_distutils, which failed. The result is slightly overcomplicated, so I came up with a different approach in issue21121-3.diff. Tho

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-02 Thread Stefan Krah
Changes by Stefan Krah : Added file: http://bugs.python.org/file35134/issue21121-3.diff ___ Python tracker <http://bugs.python.org/issue21121> ___ ___ Python-bugs-list m

[issue21398] LC_CTYPE=C: pydoc leaves terminal in an unusable state

2014-05-02 Thread Stefan Krah
Stefan Krah added the comment: STINNER Victor wrote: > I don't see how to ensure that the terminal state is restored, even on error. Python2 suppresses the exception until after normal exit (pressing 'q'). I think that behavior is better. In Python3 you can also get the un

[issue21398] LC_CTYPE=C: pydoc leaves terminal in an unusable state

2014-05-02 Thread Stefan Krah
Stefan Krah added the comment: The patch works well BTW. We can create another issue for the general misbehavior of pydoc with other exceptions. -- ___ Python tracker <http://bugs.python.org/issue21

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-05-03 Thread Stefan Krah
Stefan Krah added the comment: I did a post-commit review. A couple of things: 1) I think Victor and I have a different view of the calloc() parameters. calloc(size_t nmemb, size_t size) If a memory region of bytes is allocated, IMO 'nbytes' should be in the place of &

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-05-03 Thread Stefan Krah
Stefan Krah added the comment: I forgot one thing: 5) If WITH_VALGRIND is defined, nbytes is uninitialized in _PyObject_Alloc(). -- ___ Python tracker <http://bugs.python.org/issue21

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-05-03 Thread Stefan Krah
Stefan Krah added the comment: Another thing: 6) We need some kind of prominent documentation that existing programs need to be changed: Python 3.5.0a0 (default:62438d1b11c7+, May 3 2014, 23:35:03) [GCC 4.8.2] on linux Type "help", "copyright", "credits" or

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-05-03 Thread Stefan Krah
Stefan Krah added the comment: > > 5) If WITH_VALGRIND is defined, nbytes is uninitialized in > _PyObject_Alloc(). > > Did you see my second commit? It's nlt already fixed? I don't think so, I have revision 5d076506b3f5 here. -- _

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-05-03 Thread Stefan Krah
Stefan Krah added the comment: STINNER Victor wrote: > PyObject_Malloc(100) asks to allocate one object of 100 bytes. Okay, then let's please call it: _PyObject_Calloc(void *ctx, size_t nobjs, size_t objsize) _PyObject_Alloc(int use_calloc, void *ctx, size_t nobjs, size_t

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-04 Thread Stefan Krah
Stefan Krah added the comment: > If you guys want this in 3.4.1, please get it checked in in the next, oh, > eight hours. I can't commit today. Perhaps one of you wants to take over (I think we all agree that the third patch

[issue21233] Add *Calloc functions to CPython memory allocation API

2014-05-04 Thread Stefan Krah
Stefan Krah added the comment: STINNER Victor wrote: > My final commit includes an addition to What's New in Python 3.5 doc, > including a notice in the porting section. It is not enough? I'm not sure: The usual case with ABI changes is that extensions may segfault if they are

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-04 Thread Stefan Krah
Stefan Krah added the comment: One more question: I think it's nicer to add CFLAGS_NODIST to 'renamed_variables' in Lib/sysconfig.py:265: renamed_variables = ('CFLAGS', 'CFLAGS_NODIST', 'LDFLAGS', 'CPPFLAGS') That way it's possib

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-05 Thread Stefan Krah
Stefan Krah added the comment: The current patch allows the user to specify e.g.: CFLAGS_NODIST="-march=core2" ./configure So it would be surprising to get: >>> import sysconfig >>> sysconfig.get_config_var('CFLAGS_NODIST') '' Now,

[issue21037] add an AddressSanitizer build option

2014-05-09 Thread Stefan Krah
Stefan Krah added the comment: The VM is set up. It's on an external unreliable host though. :) -- ___ Python tracker <http://bugs.python.org/issue21037> ___ ___

[issue15871] Online docs: make index search always available.

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue15871> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16108] Include maintainer information in register/upload

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue16108> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20051] PA-RISC buildbot: compiler cannot create executables

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue20051> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13669] XATTR_SIZE_MAX and XATTR_LIST_MAX undefined on kfreebsd/debian with eglibc

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue13669> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2552] test_ctypes failed Python 2.6a2 Solaris 10 SUN C

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue2552> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13869] CFLAGS="-UNDEBUG" build failure

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> wont fix stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue6467] PyOS_Readline: treatment of "1234EOF"; behavior of builtin_raw_input

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue6467> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7836] Add /usr/sfw/lib to OpenSSL search path for Solaris.

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue7836> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4999] multiprocessing.Queue does not order objects

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue4999> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12923] test_urllib fails in refleak mode

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue12923> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7424] segmentation fault in listextend during install

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue7424> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6895] locale._parse_localename fails when localename does not contain encoding information

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue6895> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14341] sporadic (?) test_urllib2 failures

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue14341> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5619] Pass MS CRT debug flags into subprocesses

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue5619> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15192] test_bufio failures on Win64 buildbot

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue15192> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14142] getlocale(LC_ALL) behavior

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> out of date stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker <http://bugs.python

[issue14141] 2.7.2 64-bit Windows library has __impt_Py* for several symbols instead of __imp__Py*

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue14141> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15668] PEP 3121, 384 Refactoring applied to random module

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue15668> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13837] test_shutil fails with symlinks enabled under Windows

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue13837> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16721] configure incorrectly adds -OPT:Olimit=0 for clang

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue16721> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15757] ./configure --with-pydebug on FreeBSD results in -O2 -pipe eventually ending up in CFLAGS.

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue15757> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16275] test_ctypes fails on Solaris 10 SPARC 2.7 (nitrogen/s10) (Sun C compiler)

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue16275> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15963] Improve ./configure's support for 32/64-bit debug|release|profiled builds w/ vendor (non-gcc) compilers on proprietary UNIX systems (Solaris/HP-UX/AIX et al).

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue15963> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19554] Enable all freebsd* host platforms

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue19554> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18859] README.valgrind should mention --with-valgrind

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue18859> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21412] Solaris/Oracle Studio: Fatal Python error: PyThreadState_Get when built --with-pymalloc

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue21412> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21370] segfault from simple traceback.format_exc call

2014-05-13 Thread Stefan Krah
Stefan Krah added the comment: Closing due to lack of response. -- resolution: -> works for me stage: -> resolved status: open -> closed type: -> crash ___ Python tracker <http://bugs.python

[issue4928] Problem with tempfile.NamedTemporaryFile

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue4928> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1747670] Limiting data copy in xmlrpclib

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue1747670> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1615158] POSIX capabilities support

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue1615158> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1043134] Add preferred extensions for MIME types

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue1043134> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15745] Numerous utime ns tests fail on FreeBSD w/ ZFS (update: and NetBSD w/ FFS, Solaris w/ UFS)

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue15745> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue969718] BASECFLAGS are not passed to module build line

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue969718> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4130] Intel icc 9.1 does not support __int128_t used by ctypes

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue4130> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17781] optimize compilation options

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue17781> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12271] panel.h is not found even if it's installed on various flavours of SUSE

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue12271> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12991] Python 64-bit build on HP Itanium - Executable built successfully but modules failed with HP Compiler

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue12991> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5404] Cross-compiling Python

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue5404> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7511] msvc9compiler.py: ValueError when trying to compile with VC Express

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue7511> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18062] m68k FPU precision issue

2014-05-13 Thread Stefan Krah
Stefan Krah added the comment: This should be fixed now. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> HAVE_PY_SET_53BIT_PRECISION for m68k type: -> behavior ___ Python tracker <http

[issue21387] Memory leaks when embedded interpreter is reinitialized

2014-05-14 Thread Stefan Krah
Stefan Krah added the comment: I've run Evgeniy's example under Valgrind and changed it to import various C extensions. Unfortunately they all leak more or less, so perhaps we can revisit this when (if?) the PEP 3121 and PEP 384 changes have been i

[issue16594] SocketServer should set SO_REUSEPORT along with SO_REUSEADDR when present

2014-05-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue16594> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12985] Check signed arithmetic overflow in ./configure

2014-05-14 Thread Stefan Krah
Stefan Krah added the comment: I won't have time to work on this. It would also be an option to do these checks in test_capi. -- resolution: -> later stage: patch review -> resolved status: open -> closed ___ Python tracker <http:

[issue16533] HPUX: Unable to fork() in thread

2014-05-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue16533> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16533] HPUX: Unable to fork() in thread

2014-05-14 Thread Stefan Krah
Stefan Krah added the comment: Since this is 2.7 and an exotic system, I'm removing myself from the nosy list. -- ___ Python tracker <http://bugs.python.org/is

[issue18777] Cannot compile _ssl.c using openssl > 1.0

2014-05-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue18777> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16442] PATH_MAX vs MAXPATHLEN vs pathconf(..., _PC_PATH_MAX).

2014-05-14 Thread Stefan Krah
Stefan Krah added the comment: The HP-UX issue is fixed. Are we leaving this open for IRIX? -- ___ Python tracker <http://bugs.python.org/issue16442> ___ ___ Pytho

[issue3539] Problem with testembed make dependencies in certain circumstances

2014-05-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue3539> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3539] Problem with testembed make dependencies in certain circumstances

2014-05-14 Thread Stefan Krah
Stefan Krah added the comment: The original problem is fixed, but a similar one exists with testembed (see msg113305 for instructions): gcc -pthread -Xlinker -export-dynamic -o Modules/_testembed Modules/_testembed.o libpython3.5dm.a -lpthread -ldl -lutil -lm gcc: error: Modules

[issue20128] Re-enable test_modules_search_builtin() in test_pydoc

2014-05-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker <http://bugs.python.org/issue20128> ___ ___ Python-bugs-list mailing list Unsubscribe:

<    15   16   17   18   19   20   21   22   23   24   >