[issue1291] test_resource fails on recent linux systems (

2007-10-18 Thread Matthias Klose
Matthias Klose added the comment: $ python Lib/test/test_resource.py True Traceback (most recent call last): File "Lib/test/test_resource.py", line 42, in f.close() IOError: [Errno 27] File too large __ Tracker <[EMAIL PROTECTED]> <htt

[issue1292] libffi needs an update to support mips64, arm and armeabi on linux

2007-10-18 Thread Matthias Klose
New submission from Matthias Klose: libffi needs an update to support mips64, arm and armeabi on linux; the current bits are all available in GCC trunk. as an alternative, those systems should be default to --with-system-ffi, unless this is xplicitely disabled. -- assignee: theller

[issue1291] test_resource fails on recent linux systems (

2007-10-18 Thread Matthias Klose
New submission from Matthias Klose: The test_resource test fails at least on all non x86 linux systems; the test case notes: # Now check to see what happens when the RLIMIT_FSIZE is small. Some # versions of Python were terminated by an uncaught SIGXFSZ, but # pythonrun.c has been fixed to

[issue1292] libffi needs an update to support mips64, arm and armeabi on linux

2007-10-24 Thread Matthias Klose
Matthias Klose added the comment: committed the following patch to the trunk (lets the buildds test the ctypes extension) Added file: http://bugs.python.org/file8605/arm.diff __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1324] r58034 breaks building _ctypes with the upstream libffi.

2007-10-25 Thread Matthias Klose
New submission from Matthias Klose: This breaks building _ctypes with the upstream libffi. r58034 | thomas.heller | 2007-09-07 08:32:17 +0200 (Fr, 07 Sep 2007) | 1 line Add a 'c_longdouble' type to the ctypes module. gcc -pthread -fPIC -fno-strict-aliasing -g -Wall -Wstrict-prototy

[issue1324] r58034 breaks building _ctypes with the upstream libffi.

2007-10-25 Thread Matthias Klose
Changes by Matthias Klose: -- type: -> compile error __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1324> __ ___ Python-bugs-list mailing list Uns

[issue1324] r58034 breaks building _ctypes with the upstream libffi.

2007-10-25 Thread Matthias Klose
Matthias Klose added the comment: Index: Modules/_ctypes/cfield.c === --- Modules/_ctypes/cfield.c(revision 58651) +++ Modules/_ctypes/cfield.c(working copy) @@ -1753,6 +1753,9 @@ ffi_type ffi_type_float = { sizeof(float

[issue1324] r58034 breaks building _ctypes with the upstream libffi.

2007-10-25 Thread Matthias Klose
Changes by Matthias Klose: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1324> __ ___ Python-bugs-list mailing list Unsubs

[issue1292] libffi needs an update to support mips64, arm and armeabi on linux

2007-10-31 Thread Matthias Klose
Matthias Klose added the comment: oops, did the same for arm* on trunk, but in configure.in __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1292> __ ___ Pyth

[issue10278] add time.wallclock() method

2012-01-08 Thread Matthias Klose
Matthias Klose added the comment: on linux the underlying functionality is implemented in librt; the extension doesn't check for this or links with -lrt. -- nosy: +doko ___ Python tracker <http://bugs.python.org/is

[issue10278] add time.wallclock() method

2012-01-09 Thread Matthias Klose
Matthias Klose added the comment: then something like this is missing? diff -r ca2a35140e6a Modules/Setup.dist --- a/Modules/Setup.distMon Jan 09 06:17:39 2012 + +++ b/Modules/Setup.distMon Jan 09 15:25:05 2012 +0100 @@ -166,7 +166,7 @@ #cmath cmathmodule.c _math.c # -lm

[issue13745] configuring --with-dbmliborder=bdb doesn't build the gdbm extension

2012-01-09 Thread Matthias Klose
New submission from Matthias Klose : configuring --with-dbmliborder=bdb doesn't build the gdbm extension. this option should only affect the build of the dbm extension, not the build of the gdbm extension. -- messages: 150943 nosy: doko priority: low severity: normal status:

[issue12152] Parser/asdl_c.py relies on mercurial repository revision

2011-05-23 Thread Matthias Klose
New submission from Matthias Klose : when building without an hg repository present, the build fails with: ./Parser/asdl_c.py -h ../Include ../Parser/Python.asdl Traceback (most recent call last): File "../Parser/asdl_c.py", line 1214, in main(args[0]) File "../Parser/a

[issue12153] Modules/faulthandler.c exports `stack_overflow' symbol

2011-05-23 Thread Matthias Klose
New submission from Matthias Klose : the exported symbol should either have a prefix, or defined static. -- components: Extension Modules messages: 136594 nosy: doko priority: normal severity: normal status: open title: Modules/faulthandler.c exports `stack_overflow' symbol ver

[issue12152] Parser/asdl_c.py relies on mercurial repository revision

2011-05-23 Thread Matthias Klose
Matthias Klose added the comment: I'm building a snapshot package on a buildd, where a checkout is used (without the .hg directory). buildds don't have access to the network, and I don't want to package the .hg directory. So I assume I have to create a "release" tarb

[issue12081] Remove distributed copy of libffi

2011-05-23 Thread Matthias Klose
Matthias Klose added the comment: iirc after merging 3.0.9, we still had to use the internal libffi bits for windows and macosx. I didn't check 3.0.10rc8 -- nosy: +doko ___ Python tracker <http://bugs.python.org/is

[issue12152] Parser/asdl_c.py relies on mercurial repository revision

2011-05-23 Thread Matthias Klose
Matthias Klose added the comment: ok, thanks. good enough -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Matthias Klose
New submission from Matthias Klose : Modules/pyexpat.c (get_version_string) has: static PyObject * get_version_string(void) { static char *rcsid = "$Revision$"; char *rev = rcsid; int i = 0; while (!isdigit(Py_CHARMASK(*rev))) ++rev; which segfaults, or has

[issue12221] segfaults with unexpanded $Revision$ id's in release candidate tarballs

2011-05-31 Thread Matthias Klose
Changes by Matthias Klose : -- type: -> crash ___ Python tracker <http://bugs.python.org/issue12221> ___ ___ Python-bugs-list mailing list Unsubscri

[issue12418] python should inherit the library search path from the compiler for stdlib extensions

2011-07-09 Thread Matthias Klose
Matthias Klose added the comment: I don't think so. But maybe it would be enough to special case GCC as a unix compiler? At least there are already autoconf checks trying to detect gcc. -- nosy: +doko ___ Python tracker <http://bugs.py

[issue12326] Linux 3: tests should avoid using sys.platform == 'linux2'

2011-07-09 Thread Matthias Klose
Matthias Klose added the comment: while this is sorted out, I propose to apply the following workaround not to introduce `linux3', at least for the branches: --- a/configure.in 2011-06-11 17:46:28.0 +0200 +++ b/configure.in 2011-06-19 22:32:05.852934453 +0200 @@ -

[issue12326] Linux 3: tests should avoid using sys.platform == 'linux2'

2011-07-09 Thread Matthias Klose
Matthias Klose added the comment: about the plat-*/ files: they are even wrong for some linux architectures, because some constants like the DLFCN constants have different values depending on the platform/architecture (can't find the issue proposing architecture dependent plat-l

[issue12326] Linux 3: tests should avoid using sys.platform == 'linux2'

2011-07-23 Thread Matthias Klose
Matthias Klose added the comment: this does sound very ugly. so we get now another mostly unmaintained platform directory? unfortunately the generated header files are almost never updated during a releaes cycle. and we repeat the mistakes that some constants differ on some architectures

[issue12619] Automatically regenerate platform-specific modules

2011-07-23 Thread Matthias Klose
Matthias Klose added the comment: is auto-generation wanted? are you sure that you can't end up with bad syntax? -- ___ Python tracker <http://bugs.python.org/is

[issue12326] Linux 3: code should avoid using sys.platform == 'linux2'

2011-08-19 Thread Matthias Klose
Matthias Klose added the comment: > The build time Linux kernel has no effect on Python's build procedure > whatsoever. Python does not use the kernel at all for building; it > only uses the C library headers, and the kernel headers that happen > to be incorporated into the

[issue9664] Make gzip module not require that underlying file object support seek

2010-08-23 Thread Matthias Klose
New submission from Matthias Klose : [ forwarded from http://bugs.debian.org/571317 ] "I'm writing a program that uses the popularity contest results. Since downloading the compressed results takes about a quarter of the time it takes to download the uncompressed results, I'd

[issue8265] test_float fails on ARM Linux EABI with soft floating point

2010-09-02 Thread Matthias Klose
Matthias Klose added the comment: I checked with gcc-4.4 from the 4.4 branch, and with a recent build from the trunk. The check fails with -O0, and succeeds with -O1 and higher. Is the testcode from r82957 really using the optimization flags

[issue9054] pyexpat configured with "--with-system-expat" is incompatible with expat 2.0.1

2010-09-08 Thread Matthias Klose
Matthias Klose added the comment: validated with 3.2, the interpreter doesn't crash anymore and all expat tests succeed. should be applied for 2.7, 3.1 and 3.2. -- nosy: +doko versions: +Python 3.1, Python 3.2 ___ Python tracker

[issue9806] no need to try loading posix extensions without SOABI

2010-09-08 Thread Matthias Klose
New submission from Matthias Klose : the SOABI is always defined, no need to try loading an extension without the SOABI in its name. ok to commit? -- components: Interpreter Core files: dynload.diff keywords: patch messages: 115922 nosy: barry, doko priority: normal severity: normal

[issue9806] no need to try loading posix extensions without SOABI

2010-09-08 Thread Matthias Klose
Changes by Matthias Klose : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue9806> ___ ___ Python-bugs-list mailing list Unsubscri

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-08 Thread Matthias Klose
New submission from Matthias Klose : currently, much of the configuration information is fetched by opening the config.h and the Makefile for the build. The locations of these files are derived from the prefix given at configure time. If you want to have two distinct builds with the same

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-08 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +dmalcolm ___ Python tracker <http://bugs.python.org/issue9807> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-09 Thread Matthias Klose
Matthias Klose added the comment: +1 -- ___ Python tracker <http://bugs.python.org/issue9807> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-09 Thread Matthias Klose
Matthias Klose added the comment: On 09.09.2010 21:51, Dave Malcolm wrote: > # * Debian's patch to dynload_shlib.c looks for module_d.so, then module.so, > # but this can potentially find a module built against the wrong DSO ABI. We > # instead search for just module_d.so in

[issue9817] expat copyright/license file is missing

2010-09-10 Thread Matthias Klose
New submission from Matthias Klose : files in Modules/expat reference a file COPYING for the copyright/license, but this is file is not included in the Python sources. Proposing to add the attached file, taken from the expat sources. -- assignee: doko components: None files: COPYING

[issue9818] build files to build Lib/distutils/command/wininst-9.0* are missing

2010-09-10 Thread Matthias Klose
New submission from Matthias Klose : PC/V[CS]* contain the information to build the wininst-[678]* files, but I don't see any information how to build wininst-9.0*. -- components: Build messages: 115988 nosy: doko priority: normal severity: normal status: open title: build fil

[issue9806] no need to try loading posix extensions without SOABI

2010-09-12 Thread Matthias Klose
Matthias Klose added the comment: however we should expose the name of the SOABI string/extension in python-config, so that people can build with this name if they want to. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9806] no need to try loading posix extensions without SOABI

2010-09-12 Thread Matthias Klose
Matthias Klose added the comment: --extension-suffix ? doesn't use the `so', which you don't see on MacOs, HpUX and Windows. -- ___ Python tracker <http://bugs.py

[issue9817] expat copyright/license file is missing

2010-09-12 Thread Matthias Klose
Matthias Klose added the comment: the .rst file is missing the zlib and libffi licenses too. will add them. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9817] expat copyright/license file is missing

2010-09-12 Thread Matthias Klose
Matthias Klose added the comment: fixed in r84743, r84745 and r84746 -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue9817> ___ ___ Py

[issue9818] build files to build Lib/distutils/command/wininst-9.0* are missing

2010-09-12 Thread Matthias Klose
Matthias Klose added the comment: my bad -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/issue9818> ___ ___

[issue10103] use the SOABI for GNU/kfreeBSD and the GNU Hurd

2010-10-14 Thread Matthias Klose
New submission from Matthias Klose : use the SOABI for GNU/kfreeBSD and the GNU Hurd afaik, the only distribution for GNU/kfreeBSD and the GNU Hurd currently is Debian, and Debian already has this turned on for Linux too. -- assignee: doko components: Build files: soabi.diff keywords

[issue10103] use the SOABI for GNU/kfreeBSD and the GNU Hurd

2010-10-14 Thread Matthias Klose
Matthias Klose added the comment: checked in, r85481 -- resolution: accepted -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue9807] deriving configuration information for different builds with the same prefix

2010-10-17 Thread Matthias Klose
Matthias Klose added the comment: two fixes, the configure.in differentiates the name for the static library, as mentioned in msg118832. the python-config.in fix prints the library name with the abiflags. Index: configure.in

[issue9807] deriving configuration information for different builds with the same prefix

2010-10-18 Thread Matthias Klose
Matthias Klose added the comment: Index: Misc/python.pc.in === --- Misc/python.pc.in (Revision 85644) +++ Misc/python.pc.in (Arbeitskopie) @@ -8,6 +8,6 @@ Requires: Version: @VERSION@ Libs.private: @LIBS@ -Libs: -L${libdir

[issue9807] deriving configuration information for different builds with the same prefix

2010-10-18 Thread Matthias Klose
Matthias Klose added the comment: the name of the library should not differ for the static and the shared library. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9807] deriving configuration information for different builds with the same prefix

2010-10-19 Thread Matthias Klose
Matthias Klose added the comment: the python.pc installation name should be changed too, and a symlink added. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9807] deriving configuration information for different builds with the same prefix

2010-10-19 Thread Matthias Klose
Matthias Klose added the comment: Lib/distutils/command/install.py () needs updates in INSTALL_SCHEMES/headers. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9807] deriving configuration information for different builds with the same prefix

2010-11-13 Thread Matthias Klose
Matthias Klose added the comment: this adds the modifier to the /python3.2/config directory. Now you end up with both /python3.2/config and /python3.2/ for anything else. This is not what Debian, Fedora and Ubuntu are currently doing. Is this really wanted? I'd rather like t

[issue9807] deriving configuration information for different builds with the same prefix

2010-11-13 Thread Matthias Klose
Matthias Klose added the comment: the change to python.pc should make the abi change to includedir, not Cflags. -- ___ Python tracker <http://bugs.python.org/issue9

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-15 Thread Matthias Klose
Matthias Klose added the comment: I think this is not a good idea, because then you have different names for extension modules, which will be recognized by one configuration but not the other. This configure option should not change the sonames. If this option is to keep pathes like /usr

[issue9807] deriving configuration information for different builds with the same prefix

2010-11-15 Thread Matthias Klose
Matthias Klose added the comment: On 15.11.2010 23:57, Barry A. Warsaw wrote: > you mean $prefix/lib/python3.2 and $prefix/lib/python3.2$abiflags, right? > The latter has just a config directory, and you'd rather see that become > $prefix/lib/python3.2/config-$abiflag

[issue9807] deriving configuration information for different builds with the same prefix

2010-11-15 Thread Matthias Klose
Matthias Klose added the comment: On 16.11.2010 00:01, Barry A. Warsaw wrote: > When you say the python.pc change should change includedir instead of Cflags, > that seems weird. includedir does not currently include the 'pythonX.Y' > subdirectory so there's no place

[issue1294959] Problems with /usr/lib64 builds.

2011-03-29 Thread Matthias Klose
Matthias Klose added the comment: heh, that's easy, just add the multiarch id to the extension name ;-) -- ___ Python tracker <http://bugs.python.org/issu

[issue1294959] Problems with /usr/lib64 builds.

2011-03-29 Thread Matthias Klose
Matthias Klose added the comment: On 29.03.2011 21:28, Antoine Pitrou wrote: > > Barry: does it allow to install Python into /usr/lib/whateverarch, no, it looks for headers and libraries in more directories. But really, this whole testing for paths is wrong. Just use the compiler to sear

[issue8326] Cannot import name SemLock on Ubuntu

2011-04-26 Thread Matthias Klose
Matthias Klose added the comment: > Barry A. Warsaw added the comment: > > I'm closing this as invalid for Python, since I believe this is strictly an > Ubuntu bug caused by an out-of-date kernel on the build farm. that's where I disagree. a configure check should n

[issue9807] deriving configuration information for different builds with the same prefix

2010-11-23 Thread Matthias Klose
Matthias Klose added the comment: looks good. checked with a plain and a debug build and installation. -- ___ Python tracker <http://bugs.python.org/issue9

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Matthias Klose
Matthias Klose added the comment: -L. should appear before -L/usr/local/lib. -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue10520> ___ ___ Pytho

[issue10571] "setup.py upload --sign" broken: TypeError: 'str' does not support the buffer interface

2010-11-28 Thread Matthias Klose
Matthias Klose added the comment: that seems to be the wrong report. did you mean Package: python3.1 Version: 3.1.2+20101012-1 Severity: normal curses.tigetstr() returns bytes (which makes sense), but curses.tparm() expects a Unicode string as first argument. As a consequence even the example

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-29 Thread Matthias Klose
Matthias Klose added the comment: I still fail to see the rationale for being able to build with a different soabi name. But anyway, as long as the default is to build with the soabi name, I'm +/-0 on this option. Note that the soabi name isn't fixed but changes with other configu

[issue10262] Add --soabi option to `configure`

2010-12-14 Thread Matthias Klose
Matthias Klose added the comment: shouldn't that option work on platforms too, which currently default to not using the soabi? It would make sense for all posix, and macos, maybe not for Windows. -- ___ Python tracker <http://bugs.py

[issue1674555] sys.path in tests contains system directories

2011-01-03 Thread Matthias Klose
Matthias Klose added the comment: The java/openjdk tests allow setting an attribute `samevm' for running a specific test. maybe something like this could be used for some problematic tests which occasionally hang on some buildds? -- ___ P

[issue3845] memory access before short string when checking suffix

2008-09-12 Thread Matthias Klose
New submission from Matthias Klose <[EMAIL PROTECTED]>: forwarded from https://launchpad.net/bugs/234798 Bug reporter writes: Python/pythonrun.c's PyRun_SimpleFileExFlags() assumes the filename's extension starts four characters back from the end. But what if the filename is on

[issue1322] platform.dist() has unpredictable result under Linux

2008-10-05 Thread Matthias Klose
Matthias Klose <[EMAIL PROTECTED]> added the comment: /etc/lsb-release is not yet specified by the lsb. See https://lists.linux-foundation.org/pipermail/lsb-discuss/2008-March/004842.html https://lists.linux-foundation.org/pipermail/lsb-discuss/2008-March/004843.html https://lists

[issue4096] Lib/lib2to3/*.pickle are shipped / modified in the build

2008-10-10 Thread Matthias Klose
New submission from Matthias Klose <[EMAIL PROTECTED]>: the files Lib/lib2to3/Grammar2.6.0.final.0.pickle Lib/lib2to3/PatternGrammar2.6.0.final.0.pickle are created/modfied during a build/test cycle. Is this expected, should these be included in the release at all? -- me

[issue7755] copyright clarification for audiotest.au

2010-01-22 Thread Matthias Klose
New submission from Matthias Klose : [forwarded from http://bugs.debian.org/565713] If the bug submitter is correct about these, it would be nice to replace these, or clarify the copyright for these files. "the python source packages contain a non-free audio clip that is from Monty Pyt

[issue4151] Separate build dir broken

2010-02-16 Thread Matthias Klose
Matthias Klose added the comment: current status with 2.7 alpha3: FAIL: test_get_python_inc (distutils.tests.test_sysconfig.SysconfigTestCase) -- Traceback (most recent call last): File "/home/packages/python/2.7/pyth

[issue5217] testExtractDir (test.test_zipfile.TestWithDirectory) fails when python built with srcdir != builddir

2010-02-16 Thread Matthias Klose
Matthias Klose added the comment: this works with 2.7 alpha3, won't fix for 3.0 -- versions: -Python 2.7, Python 3.0 ___ Python tracker <http://bugs.python.org/i

[issue8140] extend compileall to compile single files

2010-03-14 Thread Matthias Klose
New submission from Matthias Klose : when byte-compiling files in a deb/rpm package distributed e.g. in a Linux distribution, it is sometimes wanted to only touch the files found in the deb/rpm, which can be a subset of the files in a directory. the attached patch now lets compileall accept

[issue6949] Support Berkeley DB 4.8

2010-03-14 Thread Matthias Klose
Matthias Klose added the comment: with this patch the following test cases fail. the tests need backports as well. with this patch there's still one test failure, which I do see with db4.7 as well. will wait for test results on different platforms and then submit to the trunk. the set

[issue6949] Support Berkeley DB 4.8

2010-03-14 Thread Matthias Klose
Matthias Klose added the comment: the remaining test failure is test_bsddb3 Berkeley DB 4.8.24: (August 14, 2009) Test path prefix: /tmp/z-test_bsddb3-25705 Exception in thread reader 0: Traceback (most recent call last): File "/home/packages/python/2.6/python2.6-2.6.5~rc2/Lib/threadi

[issue8142] libffi update to 3.0.9

2010-03-14 Thread Matthias Klose
New submission from Matthias Klose : opening a report to track issues with the update of the internal libffi copy to 3.0.9. will commit this update to the trunk, and later to the py3k branch. -- assignee: theller components: ctypes messages: 101072 nosy: doko, theller severity: normal

[issue8142] libffi update to 3.0.9

2010-03-14 Thread Matthias Klose
Changes by Matthias Klose : -- assignee: theller -> doko ___ Python tracker <http://bugs.python.org/issue8142> ___ ___ Python-bugs-list mailing list Unsubscri

[issue6949] Support Berkeley DB 4.8

2010-03-15 Thread Matthias Klose
Matthias Klose added the comment: checked in after testing on {arm,i486,x86_64,powerpc,sparc,ia64}-linux with no test failures. fixed in r78974 on the trunk fixed in r78975 on the py3k branch -- resolution: -> fixed status: open ->

[issue8142] libffi update to 3.0.9

2010-03-15 Thread Matthias Klose
Matthias Klose added the comment: updated on the trunk and the py3k branch -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2010-03-15 Thread Matthias Klose
Matthias Klose added the comment: fixed for 2.7, 3.1, 3.2, will fix for 2.6 after the 2.6.5 release. -- ___ Python tracker <http://bugs.python.org/issue7

[issue8140] extend compileall to compile single files

2010-03-15 Thread Matthias Klose
Matthias Klose added the comment: changed the @ syntax to an option -i, and added a test for compile_file/compile_dir. -- Added file: http://bugs.python.org/file16556/compileall.py.diff ___ Python tracker <http://bugs.python.org/issue8

[issue8140] extend compileall to compile single files

2010-03-15 Thread Matthias Klose
Matthias Klose added the comment: fixed for 2.7 and 3.2 -- resolution: accepted -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue6949] Support Berkeley DB 4.8

2010-03-15 Thread Matthias Klose
Matthias Klose added the comment: jcea: yes, but we want _dbm be able to build with 4.8.x as well. -- ___ Python tracker <http://bugs.python.org/issue6

[issue4961] Inconsistent/wrong result of askyesno function in tkMessageBox

2010-03-16 Thread Matthias Klose
Matthias Klose added the comment: the patch works for me with tcl8.5 -- nosy: +doko stage: test needed -> patch review ___ Python tracker <http://bugs.python.org/iss

[issue4961] Inconsistent/wrong result of askyesno function in tkMessageBox

2010-03-16 Thread Matthias Klose
Matthias Klose added the comment: fixed for 2.7, 3.1, 3.2, commit pending for 2.6 until after the 2.6.5 release -- resolution: -> fixed status: open -> pending ___ Python tracker <http://bugs.python.org/

[issue8154] os.execlp('true') crashes the interpreter on 2.x

2010-03-16 Thread Matthias Klose
New submission from Matthias Klose : calling os.execlp('true') with the wrong number of arguments (missing 2nd arg), the interpreter crashes. fixed in 3.x, this is a backport of the patch to 2.x -- components: Extension Modules files: p.diff keywords: patch messages: 101162

[issue8154] os.execlp('true') crashes the interpreter on 2.x

2010-03-16 Thread Matthias Klose
Matthias Klose added the comment: it does crash: $ python Python 2.6.5rc2 (r265rc2:78822, Mar 11 2010, 13:01:50) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.ex

[issue8154] os.execlp('true') crashes the interpreter on 2.x

2010-03-16 Thread Matthias Klose
Matthias Klose added the comment: crash seen on both Debian unstable and recent Ubuntu lucid. (gdb) run Starting program: /home/doko/a.out process 30155 is executing new program: /bin/ls [Thread debugging using libthread_db enabled] Program received signal SIGSEGV, Segmentation fault

[issue8142] libffi update to 3.0.9

2010-03-17 Thread Matthias Klose
Matthias Klose added the comment: no access to solaris hardware. please could you run the libffi testsuite on this machine? make sure that expect is installed. -- ___ Python tracker <http://bugs.python.org/issue8

[issue8142] libffi update to 3.0.9

2010-03-17 Thread Matthias Klose
Matthias Klose added the comment: the ports which are maintained separately still need an update: libffi_msvc libffi trunk now has a port to x86/msvc. might require some extra updates from libffi. libffi_osx: 3.0.9 has support for darwin on powerpc and x86 libffi_wince: same, support

[issue8154] os.execlp('true') crashes the interpreter on 2.x

2010-03-19 Thread Matthias Klose
Matthias Klose added the comment: commited to the trunk, commit to the 2.6 branch pending -- ___ Python tracker <http://bugs.python.org/issue8154> ___ ___ Pytho

[issue8142] libffi update to 3.0.9

2010-03-19 Thread Matthias Klose
Matthias Klose added the comment: On 18.03.2010 16:44, Thomas Heller wrote: > > Thomas Heller added the comment: > >> the ports which are maintained separately still need an update: >> >> libffi_msvc >>libffi trunk now has a port to x86/msvc. might requ

[issue8142] libffi update to 3.0.9

2010-03-19 Thread Matthias Klose
Matthias Klose added the comment: > Can you make this change, run autoconf, and commit please? done, and updated the patch for the merge from the trunk. -- Added file: http://bugs.python.org/file16590/libffi-update3.diff ___ Python tracker &l

[issue8142] libffi update to 3.0.9

2010-03-19 Thread Matthias Klose
Changes by Matthias Klose : Removed file: http://bugs.python.org/file16588/libffi-update2.diff ___ Python tracker <http://bugs.python.org/issue8142> ___ ___ Python-bug

[issue8154] os.execlp('true') crashes the interpreter on 2.x

2010-03-19 Thread Matthias Klose
Matthias Klose added the comment: committed to the 2.6 branch as well -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4961] Inconsistent/wrong result of askyesno function in tkMessageBox

2010-03-19 Thread Matthias Klose
Matthias Klose added the comment: committed to the 2.6 branch as well -- assignee: gpolo -> status: pending -> closed ___ Python tracker <http://bugs.python.org/

[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2010-03-19 Thread Matthias Klose
Matthias Klose added the comment: committed to the 2.6 branch as well -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8154] os.execlp('true') crashes the interpreter on 2.x

2010-03-21 Thread Matthias Klose
Matthias Klose added the comment: > this change in its current form needs to be backed out of 2.6 done. I'll check for uses of execlp and execlpe. how should the divergency of execlp (raises ValueError), and execlpe (raises IndexError) be

[issue8154] os.execlp('true') crashes the interpreter on 2.x

2010-03-21 Thread Matthias Klose
Matthias Klose added the comment: reverted in r79190 on the 2.6 branch -- ___ Python tracker <http://bugs.python.org/issue8154> ___ ___ Python-bugs-list mailin

[issue8191] Make arg0 required argument in os.execl* functions

2010-03-21 Thread Matthias Klose
Matthias Klose added the comment: > However since issue1039 change has not been released yet os.execlp('true') does raise ValueError on released 3.x versions. sorry if I do misunderstand something. -- nosy: +doko ___ Python t

[issue8265] test_float fails on ARM Linux EABI with soft floating point

2010-03-30 Thread Matthias Klose
Matthias Klose added the comment: the buildbot labeled "ARM Linux 3.x" is an ARM EABI as well, compiler defaults -march=armv7 -math=vfp -float-abi=softfp. The failing test_float test is an ARM EABI, armv4, ARM mode, soft floating point. I never did see the test_float test suce

[issue8233] extend py_compile to compile files from stdin

2010-03-31 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue8233> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8233] extend py_compile to compile files from stdin

2010-03-31 Thread Matthias Klose
Changes by Matthias Klose : -- keywords: +needs review -patch ___ Python tracker <http://bugs.python.org/issue8233> ___ ___ Python-bugs-list mailing list Unsub

[issue1044] tarfile insecure pathname extraction

2010-04-01 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue1044> ___ ___ Python-bugs-list mailing list Unsubscribe:

  1   2   3   4   5   6   7   8   9   >