[issue8637] Add MANPAGER envvar to specify pager for pydoc

2016-06-14 Thread Matthias Klose
Matthias Klose added the comment: sorry, updated. -- ___ Python tracker <http://bugs.python.org/issue8637> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27315] pydoc: prefer the pager command in favor of the specifc less command

2016-06-14 Thread Matthias Klose
Matthias Klose added the comment: Debian prefers to set these defaults without relying on env vars. There is no env var set by default. /etc/security/pam_env.conf:# be useful to be set: NNTPSERVER, LESS, PATH, PAGER, MANPAGER . /etc/security/pam_env.conf:#PAGER DEFAULT=less

[issue27434] cross-building python 3.6 with an older interpreter fails

2016-07-01 Thread Matthias Klose
Matthias Klose added the comment: yes, I think we have to limit the choice of the interpreter for the build to the same major version. -- ___ Python tracker <http://bugs.python.org/issue27

[issue26852] add the '--enable-legacy-pyc-files' option to configure

2016-07-28 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +barry ___ Python tracker <http://bugs.python.org/issue26852> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26852] add the '--enable-legacy-pyc-files' option to configure

2016-07-28 Thread Matthias Klose
Matthias Klose added the comment: hmm, I really don't buy the space-saving argument. you are saving some space with shorter path names, nothing more. so why do you introduce this option? -- ___ Python tracker <http://bugs.python.org/is

[issue26852] add the '--enable-legacy-pyc-files' option to configure

2016-07-28 Thread Matthias Klose
Matthias Klose added the comment: but these are rebuilt when you start the interpreter, aren't they? -- ___ Python tracker <http://bugs.python.org/is

[issue23968] rename the platform directory from plat-$(MACHDEP) to plat-$(PLATFORM_TRIPLET)

2016-08-19 Thread Matthias Klose
Matthias Klose added the comment: please could somebody test the attached patch (I'm also trying to setup a gentoo env)? The idea is to keep the multiarch and triplet macros in sync. diff -r a7f3678f9509 configure.ac --- a/configure.ac Sat Aug 20 03:05:13 2016 +0200 +++ b/configu

[issue23968] rename the platform directory from plat-$(MACHDEP) to plat-$(PLATFORM_TRIPLET)

2016-08-29 Thread Matthias Klose
Matthias Klose added the comment: now fixed. -- resolution: -> fixed status: open -> closed ___ Python tracker <https://bugs.python.org/issue23968> ___ ___

[issue17192] libffi-3.0.12 import

2013-02-19 Thread Matthias Klose
Matthias Klose added the comment: before the updates, ... there seem to be two test failures on sparc solaris. the local libffi/src/sparc/v8.S change was integrated upstream, so I don't yet what could cause these failures. or did they fail befor

[issue1159051] Handle corrupted gzip files with unexpected EOF

2013-03-15 Thread Matthias Klose
Matthias Klose added the comment: this change breaks a test case in the bzr testsuite; will try to get to it next week. See https://launchpad.net/bugs/1116079 -- nosy: +doko, larry priority: normal -> release blocker ___ Python tracker &l

[issue17477] update the bsddb module do build with db 5.x versions

2013-03-18 Thread Matthias Klose
New submission from Matthias Klose: the bsddb module is still supported in 2.7, however only builds using db versions up to 4.8, which at least some Linux distributions ship anymore. Proposing to update the bsddb module to pybsddb 5.3.0, which supports to build using db up to 5.3.0. The

[issue17477] update the bsddb module do build with db 5.x versions

2013-03-18 Thread Matthias Klose
Changes by Matthias Klose : -- keywords: +patch Added file: http://bugs.python.org/file29475/bsddb.diff ___ Python tracker <http://bugs.python.org/issue17

[issue17477] update the bsddb module do build with db 5.x versions

2013-03-18 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +barry, benjamin.peterson, dmalcolm, gregory.p.smith ___ Python tracker <http://bugs.python.org/issue17477> ___ ___ Python-bug

[issue17477] update the bsddb module do build with db 5.x versions

2013-03-19 Thread Matthias Klose
Changes by Matthias Klose : Removed file: http://bugs.python.org/file29475/bsddb.diff ___ Python tracker <http://bugs.python.org/issue17477> ___ ___ Python-bugs-list m

[issue17477] update the bsddb module do build with db 5.x versions

2013-03-19 Thread Matthias Klose
Changes by Matthias Klose : Added file: http://bugs.python.org/file29487/bsddb.diff ___ Python tracker <http://bugs.python.org/issue17477> ___ ___ Python-bugs-list mailin

[issue1159051] Handle corrupted gzip files with unexpected EOF

2013-03-19 Thread Matthias Klose
Changes by Matthias Klose : -- priority: release blocker -> normal ___ Python tracker <http://bugs.python.org/issue1159051> ___ ___ Python-bugs-list mai

[issue17477] update the bsddb module do build with db 5.x versions

2013-03-19 Thread Matthias Klose
Matthias Klose added the comment: checked the update with 4.6, 5.1 and 5.3 builds. -- ___ Python tracker <http://bugs.python.org/issue17477> ___ ___ Python-bug

[issue17477] update the bsddb module do build with db 5.x versions

2013-03-19 Thread Matthias Klose
Matthias Klose added the comment: > Is this a backport "as-is" of the external pybsddb3 5.3.0 code I maintain?. > If that is the case, could be some incompatibilities with current > bsddb module in stock 2.7. yes. Could you point me to these possible incompatibilities? Afa

[issue15235] allow newer berkeley db versions

2013-03-19 Thread Matthias Klose
Matthias Klose added the comment: fixed -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue15235> ___ ___ Pyth

[issue16754] Incorrect shared library extension on linux

2013-03-19 Thread Matthias Klose
Matthias Klose added the comment: the patch so.diff - introduces two new macros EXT_SUFFIX and SHLIB_SUFFIX, and uses these instead of the SO macro. - keeps the SO macro, and restores it to it's original value - Removes the SHLIB_EXT preprocessor define (only used in P

[issue16754] Incorrect shared library extension on linux

2013-03-20 Thread Matthias Klose
Matthias Klose added the comment: proposed PEP change. Or should the change itself be documented in the PEP? -- ___ Python tracker <http://bugs.python.org/issue16

[issue16754] Incorrect shared library extension on linux

2013-03-20 Thread Matthias Klose
Changes by Matthias Klose : Added file: http://bugs.python.org/file29514/pep.diff ___ Python tracker <http://bugs.python.org/issue16754> ___ ___ Python-bugs-list mailin

[issue17500] move PC/icons/source.xar to http://www.python.org/community/logos/

2013-03-20 Thread Matthias Klose
New submission from Matthias Klose: This is a proposal to move the PC/icons/source.xar from the core distribution to the python website. Afaics currently the derived file PC/icons/baselogo is only used, and http://www.python.org/community/logos/ has even other recommended svg files for the

[issue17500] move PC/icons/source.xar to http://www.python.org/community/logos/

2013-03-21 Thread Matthias Klose
Matthias Klose added the comment: ohh, I didn't see. however these are binaries only, and they still promise to open the sources, however the latest information on this page is for Ubuntu dapper drake (6.06), now almost seven year

[issue17500] move PC/icons/source.xar to http://www.python.org/community/logos/

2013-03-21 Thread Matthias Klose
Matthias Klose added the comment: besides the availability of the graphics program, would there be any objection to move the source.xar file to the python.org web site? -- ___ Python tracker <http://bugs.python.org/issue17

[issue16754] Incorrect shared library extension on linux

2013-03-21 Thread Matthias Klose
Matthias Klose added the comment: fixed, pep update is pending -- assignee: eric.araujo -> barry resolution: -> fixed stage: -> committed/rejected status: open -> pending ___ Python tracker <http://bugs.python

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-21 Thread Matthias Klose
New submission from Matthias Klose: The backport of #13150 to the 2.7 branch breaks the build on darwin. There is a special case for providing the _sysconfigdata module in _generate_posix_vars before get_platform is called (darwin only) and before the module is actually written. However

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-21 Thread Matthias Klose
Matthias Klose added the comment: untested work-around. we don't need the builddir to generate the _sysconfigdata.py. -- keywords: +patch Added file: http://bugs.python.org/file29537/workaround.diff ___ Python tracker <http://bugs.py

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-21 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +pitrou, twouters ___ Python tracker <http://bugs.python.org/issue17512> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-21 Thread Matthias Klose
Matthias Klose added the comment: here's the backport, tested on Linux only. sorry, can't test this on MacOSX before Sunday. -- Added file: http://bugs.python.org/file29543/backport.diff ___ Python tracker <http://bugs.python.o

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-23 Thread Matthias Klose
Matthias Klose added the comment: tested the backport on MacOSX, fixing the build. -- ___ Python tracker <http://bugs.python.org/issue17512> ___ ___ Python-bug

[issue17536] update browser list with additional browser names

2013-03-24 Thread Matthias Klose
New submission from Matthias Klose: Add some browser names supported on Debian systems: - www-browser, x-www-browser are browser names handled by the alternatives system, which should be preferred over specific browser names. Inserted with lower priority than the browsers for specific

[issue17536] update browser list with additional browser names

2013-03-24 Thread Matthias Klose
Matthias Klose added the comment: 2.7.diff is the backport for 2.7, adding additional names xdg-open, gvfs-open, and chromium names. -- Added file: http://bugs.python.org/file29566/2.7.diff ___ Python tracker <http://bugs.python.org/issue17

[issue17086] backport cross-build patches to the 2.7 branch

2013-03-24 Thread Matthias Klose
Matthias Klose added the comment: this is about setting PYTHONPATH for regenerating the plat directory. This doesn't break anything afaics and doesn't do any harm. -- ___ Python tracker <http://bugs.python.o

[issue17086] backport cross-build patches to the 2.7 branch

2013-03-24 Thread Matthias Klose
Matthias Klose added the comment: cross build patch is applied, closing the issue. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue17536] update browser list with additional browser names

2013-03-24 Thread Matthias Klose
Matthias Klose added the comment: > Technically this is a new feature and should only go into 3.4. I'm open to > discussion about this, but the discussion should have happened *before* the > commit. ok, will do so in the future. Howver it did look a bit simple ... >

[issue17537] sv.DictReader should fail if >1 column has the same name

2013-03-24 Thread Matthias Klose
New submission from Matthias Klose: forwarded from Debian http://bugs.debian.org/699463 The csv.DictReader object doesn't handle multiple columns with the same name very well - it simply over-writes the first column-with-same-name with the contents of the second column-with-same-name e.g.:

[issue3290] python-config --cflags includes irrelevant flags

2013-03-28 Thread Matthias Klose
Matthias Klose added the comment: I don't see the current behaviour as problematic. If you build python as a debug build, you get the -O0 included, if you do a normal build, you get the -Ox included. At least this is behaviour found in other '-config' programs too. So maybe a

[issue3290] python-config --cflags includes irrelevant flags

2013-03-28 Thread Matthias Klose
Matthias Klose added the comment: > However in my case I am embedding python as a scripting language > into another application. then why not filtering out these options on your own for this use case? -- ___ Python tracker <http://bugs.p

[issue17579] socket module in 2.7.4 raises error instead of gaierror in 2.7.3

2013-03-30 Thread Matthias Klose
New submission from Matthias Klose: forwarded from https://launchpad.net/bugs/+bug/1154599 this seems to be changed behavior in 2.7.4. is it intended? $ cat lookup.py #!/usr/bin/python import sys, socket names = ["slashdot.org", "foowhi.com"] if len(sys

[issue1159051] Handle corrupted gzip files with unexpected EOF

2013-03-30 Thread Matthias Klose
Matthias Klose added the comment: another test case failure with this patch: https://launchpad.net/ubuntu/+archive/test-rebuild-20130329/+build/4416983 reproducible with feedparser 5.1.3 from pypi, on x86 (but not x86_64). ERROR: test_gzip_struct_error (__main__.TestCompression

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

2013-03-30 Thread Matthias Klose
Matthias Klose added the comment: hard coding ncurses seems to be wrong, as in most cases, you do want ncursesw. -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue12

[issue16754] Incorrect shared library extension on linux

2013-04-04 Thread Matthias Klose
Matthias Klose added the comment: are you speculating, or is your comment based on some testing? MacOS had this value before, and apparently it did work before that change. -- ___ Python tracker <http://bugs.python.org/issue16

[issue15194] libffi-3.0.11 update

2013-04-08 Thread Matthias Klose
Matthias Klose added the comment: 3.0.13 is now in 2.7.4, 3.2.4, 3.3.1 and the trunk. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17477] update the bsddb module do build with db 5.x versions

2013-04-08 Thread Matthias Klose
Matthias Klose added the comment: was released with 2.7.4. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17536] update browser list with additional browser names

2013-04-09 Thread Matthias Klose
Matthias Klose added the comment: in http://mail.python.org/pipermail/python-dev/2013-April/125205.html Guido made the suggestion: """ But perhaps we could change the focus for 2.7 development a bit: instead of fixing bugs (or bickering about whether something is a bug fix or a

[issue17682] _io is missing in Setup.dist in 2.7.x

2013-04-09 Thread Matthias Klose
New submission from Matthias Klose: _io is missing in Setup.dist in 2.7.x. just adding it, copied the file list from the setup.py, leaving it commented out. -- components: Build messages: 186430 nosy: doko priority: normal severity: normal status: open title: _io is missing in

[issue17536] update browser list with additional browser names

2013-04-09 Thread Matthias Klose
Matthias Klose added the comment: consider that chrome is your only browser installed, then the module should work as well. -- ___ Python tracker <http://bugs.python.org/issue17

[issue17682] _io is missing in Setup.dist in 2.7.x

2013-04-09 Thread Matthias Klose
Changes by Matthias Klose : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17086] backport cross-build patches to the 2.7 branch

2013-04-10 Thread Matthias Klose
Matthias Klose added the comment: the call to add_gcc_paths() wasn't backported. -- ___ Python tracker <http://bugs.python.org/issue17086> ___ ___ Pytho

[issue17536] update browser list with additional browser names

2013-04-13 Thread Matthias Klose
Matthias Klose added the comment: now in 2.7 -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17727] document that some distributions change site.py defaults

2013-04-14 Thread Matthias Klose
Matthias Klose added the comment: the local patch adds as documentation on Debian/Ubuntu: """ For Debian and derivatives, this sys.path is augmented with directories for packages distributed within the distribution. Local addons go into /usr/local/lib/python/dist-packages, Debian

[issue17746] test_shutil.TestWhich.test_non_matching_mode fails when running as root

2013-04-16 Thread Matthias Klose
Matthias Klose added the comment: one way would be to skip this test when running as root. Would the check for the X bit work on Windows? @unittest.skipUnless(hasattr(os, 'getuid') and os.getuid() != 0, "test always succeeds as root") --

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: [Meta issue, opening separate issues for test cases] The default install always installs the testsuite together with all the python batteries. So make sure that you can run the testsuite can run from the installed location too. - some tests require the

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_shutil.TestWhich.test_non_matching_mode fails when running as root ___ Python tracker <http://bugs.python.org/issue17

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +jibel ___ Python tracker <http://bugs.python.org/issue17750> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17751] ctypes/test/test_macholib.py fails when run from the installed location

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: the ctypes tests unconditionally import macholib.dyld, which is not available in an installed testsuite on other platforms. So either don't install this test, or only run the import and test when on MacOS? -- components: Tests messages: 187067

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +ctypes/test/test_macholib.py fails when run from the installed location ___ Python tracker <http://bugs.python.org/issue17

[issue17752] many distutils tests fail when run from the installed location

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: many distutils tests fail when run from the installed location, either depending on the 'srcdir' macro, files not installed ('xxmodule.c'), or needing write permissions in the installed location. -- components: Tests message

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +many distutils tests fail when run from the installed location ___ Python tracker <http://bugs.python.org/issue17

[issue17753] test_zipfile: requires write access to test and email.test

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: test_zipfile requires write access to the installed location, when trying to byte-compile files. == ERROR: test_write_pyfile (test.test_zipfile.PyZipFileTests

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_zipfile: requires write access to test and email.test ___ Python tracker <http://bugs.python.org/issue17

[issue17754] test_ctypes assumes LANG=C LC_ALL=C

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: this test assumes LANG=C LC_ALL=C test.test_ctypes (unittest.loader.LoadTestsFailure) ... ERROR == ERROR: test.test_ctypes (unittest.loader.LoadTestsFailure

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_ctypes assumes LANG=C LC_ALL=C ___ Python tracker <http://bugs.python.org/issue17750> ___ ___ Python-bugs-list m

[issue17754] test_ctypes assumes LANG=C LC_ALL=C

2013-04-16 Thread Matthias Klose
Matthias Klose added the comment: hmm, looks more an issue in ctypes/util.py. _findLib_gcc should set the environment explicitly as already done in _findSoname_ldconfig. -- versions: +Python 2.7 ___ Python tracker <http://bugs.python.org/issue17

[issue17754] test_ctypes assumes LANG=C LC_ALL=C

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- components: +ctypes -Tests ___ Python tracker <http://bugs.python.org/issue17754> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17755] test_builtin assumes LANG=C

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: I'm not sure about this one ... but it fails with an utf8 locale which happended to be set as the default, run from the installed location. == FAIL: test_input_tty_non_

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_builtin assumes LANG=C ___ Python tracker <http://bugs.python.org/issue17750> ___ ___ Python-bugs-list mailin

[issue17756] test_syntax_error fails when run in the installed location

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: no idea yet about that one ... == FAIL: test_syntax_error (test.test_code_module.TestInteractiveConsole) -- Traceback (most

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_syntax_error fails when run in the installed location ___ Python tracker <http://bugs.python.org/issue17

[issue17757] test_executable_without_cwd fails when run in the installed location

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: this test already has a: @unittest.skipIf(sysconfig.is_python_build(), "need an installed Python. See #7774") but fails in the installed location. =

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_executable_without_cwd fails when run in the installed location ___ Python tracker <http://bugs.python.org/issue17

[issue17758] test_site fails when the user does not have a home directory

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: seen when running the testsuite as user nobody, with test_site fails when the user's home directory does not exist, and is not creatable (e.g. /nonexistent). FAILED (failures=3) test test_pydoc failed Re-running test 'test_site' in ve

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_site fails when the user does not have a home directory ___ Python tracker <http://bugs.python.org/issue17

[issue17759] test_urllibnet.test_bad_address() fails on Ubuntu 13.04

2013-04-16 Thread Matthias Klose
Matthias Klose added the comment: would be good to know if this is related to glibc-2.17, or not. There was a similiar issue ... -- ___ Python tracker <http://bugs.python.org/issue17

[issue17761] platform._parse_release_file doesn't close the /etc/lsb-release file, doesn't know about 'Ubuntu'

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: platform._parse_release_file doesn't close the /etc/lsb-release file, and is missing Ubuntu in _supported_dists. -- components: Library (Lib) messages: 187087 nosy: doko priority: normal severity: normal stage: patch review status: open

[issue17761] platform._parse_release_file doesn't close the /etc/lsb-release file, doesn't know about 'Ubuntu'

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- keywords: +patch Added file: http://bugs.python.org/file29884/pr17761.diff ___ Python tracker <http://bugs.python.org/issue17

[issue17761] platform._parse_release_file doesn't close the /etc/lsb-release file, doesn't know about 'Ubuntu'

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- keywords: +needs review -patch ___ Python tracker <http://bugs.python.org/issue17761> ___ ___ Python-bugs-list mailing list Unsub

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: http://www.freedesktop.org/software/systemd/man/os-release.html is a recent standard describing release information for an operating system. platform.linux_distribution() should know about it. - should that be the first file to be parsed? - names returned

[issue17763] test_pydoc fails with the installed testsuite

2013-04-16 Thread Matthias Klose
New submission from Matthias Klose: this fails on an Ubuntu installation, running the installed tests. confirmed by a coworker. Where does the 'invalid distro' come from? == FAIL: test_apropos_with_b

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_pydoc fails with the installed testsuite ___ Python tracker <http://bugs.python.org/issue17750> ___ ___ Pytho

[issue17763] test_pydoc fails with the installed testsuite

2013-04-16 Thread Matthias Klose
Matthias Klose added the comment: this can be avoided when running python with -S, the error comes from a package installed in site-packages. -- ___ Python tracker <http://bugs.python.org/issue17

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_subprocess test_executable_without_cwd fails when run with installed python ___ Python tracker <http://bugs.python.org/issue17

[issue17750] allow the testsuite to run in the installed location

2013-04-16 Thread Matthias Klose
Matthias Klose added the comment: it doesn't have to be root, just another user as for running the testsuite. -- ___ Python tracker <http://bugs.python.org/is

[issue17772] test_gdb doesn't detect a gdb built with python3.3 (or higher)

2013-04-17 Thread Matthias Klose
New submission from Matthias Klose: test_gdb skipped -- gdb not built with embedded python support $ gdb --version GNU gdb (GDB) 7.5.91.20130408 $ ldd /usr/bin/gdb|grep python libpython3.3m.so.1.0 => /usr/lib/libpython3.3m.so.1.0 -- messages: 187151 nosy: dmalcolm, d

[issue17773] test_pydoc fails with the installed testsuite (2.7)

2013-04-17 Thread Matthias Klose
New submission from Matthias Klose: these are failures not seen with 3.x, running with -S doesn't help. test_pydoc test test_pydoc failed -- multiple errors occurred; run in verbose mode for details 1 test failed: test_pydoc Re-running failed tests in verbose mode Re-running

[issue17750] allow the testsuite to run in the installed location

2013-04-17 Thread Matthias Klose
Changes by Matthias Klose : -- dependencies: +test_pydoc fails with the installed testsuite (2.7) ___ Python tracker <http://bugs.python.org/issue17750> ___ ___

[issue17774] unable to disable -r in run_tests.py

2013-04-17 Thread Matthias Klose
New submission from Matthias Klose: it is not possible to disable -r in run_tests.py. Other options like -u or -j can be overwritten, but not removing -r. -- components: Tests messages: 187160 nosy: doko priority: normal severity: normal stage: needs patch status: open title: unable to

[issue17772] test_gdb doesn't detect a gdb built with python3.3 (or higher)

2013-04-17 Thread Matthias Klose
Matthias Klose added the comment: yes, this from the FSF 7.6 branch -- ___ Python tracker <http://bugs.python.org/issue17772> ___ ___ Python-bugs-list mailin

[issue17780] the test suite should use a TEMPDIR in the build directory, not the source directory

2013-04-17 Thread Matthias Klose
New submission from Matthias Klose: the test suite should use a TEMPDIR in the build directory, not the source directory, e.g. the source directory might not be writeable. looks like regrtest._make_temp_dir_for_build() needs just to use abs_builddir instead of srcdir. -- components

[issue17781] optimize compilation options

2013-04-17 Thread Matthias Klose
Matthias Klose added the comment: most of that can be attributed to the pgo build, which is upstream for a long time. the second thing to do is to build with lto, and see what speedups you get in addition. and it certainly helps to build the interpreter statically (without --enable-shared

[issue17783] run the testsuite in batched mode

2013-04-17 Thread Matthias Klose
New submission from Matthias Klose: running all the tests in one batch sometimes can go wrong. there is of course the --single mode, but starting the testsuite for each single test seems to be a bit of overhead. So extend the --single API to something like --next= which runs the next tests

[issue17784] the test suite should honor an http_proxy for running the test suite

2013-04-17 Thread Matthias Klose
New submission from Matthias Klose: the test suite should honor an http_proxy for running the test suite, at least for all the tests using the urlfetch resource. maybe for some tests using the network resource too. this would allow running tests in somehow constrained environments

[issue17781] optimize compilation options

2013-04-18 Thread Matthias Klose
Matthias Klose added the comment: the proposed patch is wrong. when linking with -flto, you should pass all the relevant CFLAGS to the linker as well. Also pass -fuse-linker-plugin. and this should be an opt-in, not the default. Depending on the architecture and the compiler version, -flto is

[issue17819] removes need for CONFIG_SITE external configuration

2013-05-02 Thread Matthias Klose
Matthias Klose added the comment: An external config.site is not the only option, you can pass these values in the environment or on the configure command line too. These would not be the only two options, there are more where features of the running kernel are tested, or where a test uses

[issue1298835] Add a vendor-packages directory for system-supplied modules

2013-05-04 Thread Matthias Klose
Matthias Klose added the comment: there is more than one thing addressed with the 'dist-packages' choice of name. The primary reason is to have a directory where you only find python packages as distributed by the linux distribution, and where installers do not install to by default

[issue17754] test_ctypes assumes LANG=C LC_ALL=C

2013-05-15 Thread Matthias Klose
Matthias Klose added the comment: fixed in 2.7, 3.3 and trunk -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17990] 2.7 builds can fail due to unconditional inclusion of include paths

2013-05-15 Thread Matthias Klose
Matthias Klose added the comment: I don't see how this would break the cross builds, so please go ahead with this change. -- ___ Python tracker <http://bugs.python.org/is

[issue22634] importing _ctypes failed: undefined symbol: ffi_call_win32

2014-10-15 Thread Matthias Klose
Matthias Klose added the comment: could somebody attach a build log from such a system? and the libffi config.log? -- ___ Python tracker <http://bugs.python.org/issue22

[issue22634] importing _ctypes failed: undefined symbol: ffi_call_win32

2014-10-15 Thread Matthias Klose
Matthias Klose added the comment: > checking build system type... x86_64-unknown-linux-gnu > checking host system type... x86_64-unknown-linux-gnu and using -m32 explicitly. so you'll get what you deserve ;-) -- ___ Python tra

<    2   3   4   5   6   7   8   9   >