[Python-Dev] Summary of Python tracker Issues
ACTIVITY SUMMARY (07/18/08 - 07/25/08) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue number. Do NOT respond to this message. 1951 open (+29) / 13318 closed (+11) / 15269 total (+40) Open issues with patches: 615 Average duration of open issues: 710 days. Median duration of open issues: 1621 days. Open Issues Breakdown open 1937 (+28) pending14 ( +1) Issues Created Or Reopened (44) ___ function annotation for builtin and C function 07/21/08 http://bugs.python.org/issue3208reopened amaury.forgeotdarc `./configure --enable-framework --enable-universalsdk` fails bec 07/21/08 CLOSED http://bugs.python.org/issue3381reopened georg.brandl patch test_urllib2_localnet fails on MacOS X 10.4.11 (Intel) 07/18/08 http://bugs.python.org/issue3407created MrJean1 urllib incomplete and urllib2 does not exist 07/18/08 CLOSED http://bugs.python.org/issue3408created vizcayno ElementPath.Path.findall problem with unicode input 07/18/08 http://bugs.python.org/issue3409created qual patch platform.version() don't work as expected in Vista in portuguese 07/18/08 http://bugs.python.org/issue3410created portella str.format() on negative floats 07/18/08 CLOSED http://bugs.python.org/issue3411created hagen Fraction and Decimal in the Tutorial 07/18/08 http://bugs.python.org/issue3412created segfaulthunter typo in Mac/Makefile.in breaks installing IDLE 07/19/08 CLOSED http://bugs.python.org/issue3413created erickt frameworkinstall doesn't create Python.app, which breaks python 07/19/08 CLOSED http://bugs.python.org/issue3414created erickt Interpreter error when running a script under debugger control 07/19/08 CLOSED http://bugs.python.org/issue3415created nirai Wrong inherit in PickleHTMLBuilder 07/19/08 CLOSED http://bugs.python.org/issue3416created is make the fix_dict fixer smarter 07/19/08 http://bugs.python.org/issue3417created benjamin.peterson patch heavy resource usage with string functions 07/19/08 CLOSED http://bugs.python.org/issue3418created mgogoulos multiprocessing module is racy 07/19/08 http://bugs.python.org/issue3419created cartman 2to3 fails to run on Mac OS X 10.4 PPC 3.0b2 07/20/08 http://bugs.python.org/issue3420created barry-scott Test failure in test_math::testSum 07/20/08 http://bugs.python.org/issue3421created georg.brandl sphinx.doc.autodoc: Hook for changing argspec07/20/08 http://bugs.python.org/issue3422created pv patch DeprecationWarning message applies to wrong context with exec() 07/22/08 http://bugs.python.org/issue3423created ghazel imghdr test order makes it slow
[Python-Dev] Status of mingw and Python 2.6 ?
I gave it a try with cygwin-hosted mingw just to see
if that would work as an alternative to VS2008/VC9 to
figure out some linkage problems.
I tried:
python setup.py build_ext --compiler mingw32
and got a version string issue noted below which
rejects the version string printed from the loader
ld as an inappropriate form.
I seem to recall that mingw was expected to work with 2.6.
Is it?
Thanks - Jim
running build_ext
Traceback (most recent call last):
File "finsim/setup.py", line 96, in
package_dir = {'finsim': 'finsim'},
File "c:\Python26\lib\distutils\core.py", line 152, in setup
dist.run_commands()
File "c:\Python26\lib\distutils\dist.py", line 972, in run_commands
self.run_command(cmd)
File "c:\Python26\lib\distutils\dist.py", line 992, in run_command
cmd_obj.run()
File "c:\Python26\lib\distutils\command\build_ext.py", line 309, in run
force=self.force)
File "c:\Python26\lib\distutils\ccompiler.py", line 1175, in new_compiler
return klass (None, dry_run, force)
File "c:\Python26\lib\distutils\cygwinccompiler.py", line 306, in
__init__
CygwinCCompiler.__init__ (self, verbose, dry_run, force)
File "c:\Python26\lib\distutils\cygwinccompiler.py", line 107, in
__init__
get_versions()
File "c:\Python26\lib\distutils\cygwinccompiler.py", line 430, in
get_versions
ld_version = StrictVersion(result.group(1))
File "c:\Python26\lib\distutils\version.py", line 40, in __init__
self.parse(vstring)
File "c:\Python26\lib\distutils\version.py", line 107, in parse
raise ValueError, "invalid version number '%s'" % vstring
ValueError: invalid version number '2.18.50.20080523'
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe:
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Matrix product
Sebastien Loisel wrote: What are the odds of this thing going in? I don't know. Guido has said nothing about it so far this time round, and his is the only opinion that matters in the end. I may write a PEP about this. However, since yesterday I've realised that there's a rather serious problem with part of my proposal. The problem is that being able to multiply matrices isn't much use without also being able to add them and multiply them by numbers, which obviously can't work with the built-in sequence types, since they already have other meanings for + and *. However, I still think that adding an @ operator for numpy to use is a good idea. So I'm now suggesting that the operator be added, with the intended meaning of matrix multiplication, but that no implementation of it be provided in core Python. There is a precedent for this -- the ellipsis notation was added purely for use by Numeric and its successors, and nothing in core Python attaches any meaning to it. How do the PEPs work? Someone writes a PEP. People talk about it. Eventually, Guido either accepts it or rejects it (although in some cases it is an infinitely long time before that happens:-). -- Greg ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
