[issue1648] add new function, sys.gettrace
New submission from Titus Brown: Currently there is no way to retrieve the current trace function; this patch adds 'gettrace' to the sys module. This behavior is very useful for helping to control code coverage analysis tools. -- components: Library (Lib) files: gettrace.diff messages: 58725 nosy: brett.cannon, titus severity: minor status: open title: add new function, sys.gettrace type: behavior versions: Python 2.6 Added file: http://bugs.python.org/file8982/gettrace.diff __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1648> __ gettrace.diff Description: Binary data ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue1648] add new function, sys.gettrace
Titus Brown added the comment: Added getprofile + tests, docs, as per reasonable request ;) Added file: http://bugs.python.org/file8991/gettrace+getprofile.diff __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1648> __ gettrace+getprofile.diff Description: Binary data ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue1257] atexit errors should result in nonzero exit code
Titus Brown added the comment: Please see GHOP patches by [EMAIL PROTECTED], http://code.google.com/p/google-highly-open-participation-psf/issues/detail?id=215 I've attached the Python 2.6 patch here. -- nosy: +titus Added file: http://bugs.python.org/file9104/ghop-215-py2.6-ctb.diff __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1257> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue7408] test_distutils fails on Mac OS X 10.5
New submission from Titus Brown : Here's the error: test_distutils test test_distutils failed -- Traceback (most recent call last): File "/private/tmp/tmp8UfLPT/python27/Lib/distutils/tests/test_sdist.py", line 342, in test_make_distribution_owner_group self.assertEquals(member.gid, os.getgid()) AssertionError: 0 != 20 It has been a problem for over a week, at least. -- assignee: tarek components: Distutils messages: 95809 nosy: tarek, titus severity: normal status: open title: test_distutils fails on Mac OS X 10.5 type: behavior versions: Python 2.7 ___ Python tracker <http://bugs.python.org/issue7408> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue7408] test_distutils fails on Mac OS X 10.5
Titus Brown added the comment: I can generate the error on my iMac but not my laptop, which are equivalent versions/upgrades of Mac OS X AFAIK. The /tmp directory in both has drwxrwxrwt, and the subdirectories within which I'm doing the builds are drwxr-xr-x, so it doesn't seem to be only dir permissions... Both accounts are user accounts with +wheel permissions. Tarek, after commenting out those lines (starting at line 309 of my test_sdist.py), I still get the same error on my iMac. -- ___ Python tracker <http://bugs.python.org/issue7408> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue7408] test_distutils fails on Mac OS X 10.5
Titus Brown added the comment: Fix verified, thanks! -- ___ Python tracker <http://bugs.python.org/issue7408> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com