Titus Brown added the comment:
Fix verified, thanks!
--
___
Python tracker
<http://bugs.python.org/issue7408>
___
___
Python-bugs-list mailing list
Unsubscribe:
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 b
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.assertEq
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
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/
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.dif