[issue3262] re.split doesn't split with zero-width regex

2008-07-07 Thread Filip Salomonsson

Changes by Filip Salomonsson [EMAIL PROTECTED]:


--
nosy: +filip

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3262
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3308] MinGW built extensions do not load (specified procedure cannot be found)

2008-07-07 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment:

It seems that mingw is unable to compile the simplest program containing
a call to localtime():

$ echo #include time.h
 int main() { localtime(NULL); }  t.c
$ gcc -mno-cygwin t.c -lmsvcr90

Then starting a.exe displays a modal box with the message: The
procedure entry point localtime could not be located in the dynamic link
library msvcr90.dll.

So the problem is not python-specific, and should be reported to Mingw.

However, I discovered that it works if you include time.h this way:

   #define __MSVCRT_VERSION__ 0x0700/* whatever above 0x0601 */
   #include time.h
   #define time_t __time64_t
   #define localtime _localtime64
   #define time _time64

--
nosy: +amaury.forgeotdarc

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3221] SystemError: Parent module 'foo' not loaded on import statement

2008-07-07 Thread Nick Coghlan

Nick Coghlan [EMAIL PROTECTED] added the comment:

Bumped priority - an existing module shouldn't crash in 2.6 just because
we started using __package__ as part of the import mechanism and that
module happens to already set an attribute by that name.

--
priority:  - release blocker

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3221
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2517] Error when printing an exception containing a Unicode string

2008-07-07 Thread Nick Coghlan

Nick Coghlan [EMAIL PROTECTED] added the comment:

Adding this to my personal to-do list for the next beta release.

--
assignee: georg.brandl - ncoghlan
priority: normal - critical

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2517
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3221] SystemError: Parent module 'foo' not loaded on import statement

2008-07-07 Thread Nick Coghlan

Nick Coghlan [EMAIL PROTECTED] added the comment:

Adding to my personal to-do list for next beta.

--
assignee: twouters - ncoghlan

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3221
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue643841] New class special method lookup change

2008-07-07 Thread Nick Coghlan

Nick Coghlan [EMAIL PROTECTED] added the comment:

The outcome of discussion of this issue on python-dev was that the
lookup methodology for the special methods needs to be better
documented, especially for those cases where the instance *must* be
bypassed in order to avoid metaclass confusion for special methods that
apply to both types and instances (see issue 2517 for such a problem
that currently afffects the lookup of __unicode__). However, we're not
prepared to add a standard delegation mixin to the standard library at
this stage (I may still add a cleaned up version of mine to the SVN
sandbox as an executable reference source for the relevant section of
the documentation though).

While I offered to write that new section of the docs during the
python-dev discussion, I'm not sure when I'll be able to get to it (My
Python time lately has mostly been spent investigating __hash__ fun and
games).

--
assignee: barry - 

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue643841
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue643841] New class special method lookup change

2008-07-07 Thread Nick Coghlan

Changes by Nick Coghlan [EMAIL PROTECTED]:


___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue643841
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3312] bugs in _sqlite module

2008-07-07 Thread STINNER Victor

New submission from STINNER Victor [EMAIL PROTECTED]:

(A) module_register_adapter() doesn't check microprotocols_add() 
result, whereas it can fails (eg. dict setitem error). 
Example: import _sqlite3; _sqlite3.register_adapter({}, None) = 
should raise a TypeError (unhashable type: 'dict').

(B) Connection.set_isolation_level() tries to create the 
string BEGIN +isolation_level and the store it as PyString in 
begin_statement. But if the result can not be converted to string, 
Python crashs. Example:

 import _sqlite3
 c=_sqlite3.Connection(a)
 c.isolation_level = u\xe9
Erreur de segmentation (core dumped)

Attached patch fix the two bugs.

--
components: Library (Lib)
files: _sqlite.patch
keywords: patch
messages: 69387
nosy: haypo
severity: normal
status: open
title: bugs in _sqlite module
versions: Python 2.6
Added file: http://bugs.python.org/file10841/_sqlite.patch

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3312
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3313] dlopen() error with no error message from dlerror()

2008-07-07 Thread STINNER Victor

New submission from STINNER Victor [EMAIL PROTECTED]:

Python dl_open() function (from dl module) calls dlopen() and check 
its result: if it's NULL, it's an error. This is correct if I read the 
man page. But with an invalid flag value (-1), dlopen() returns NULL 
but dlerror() also gives a NULL pointer. Example:

 import dl
 dl.open(/usr/lib/libm.so, -1)
Erreur de segmentation (core dumped)

Workaround: use a static error message if dlerror() returns NULL.

I wrote a patch for dl_open() but other functions (in ctypes module?) 
should also call dlerror().

--
components: Library (Lib)
files: dl_open.patch
keywords: patch
messages: 69388
nosy: haypo
severity: normal
status: open
title: dlopen() error with no error message from dlerror()
type: crash
versions: Python 2.6
Added file: http://bugs.python.org/file10842/dl_open.patch

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3313
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3315] abc.rst little error

2008-07-07 Thread Andrii V. Mishkovskyi

New submission from Andrii V. Mishkovskyi [EMAIL PROTECTED]:

'make html' with latest py3k sources produces this warning:
WARNING: /home/mishok/doc/python/abc-doc-bug/Doc/library/abc.rst:11:
term not in glossary: abstract base classes
I've applied little patch that fixes this.

--
assignee: georg.brandl
components: Documentation
files: abc.rst.diff
keywords: patch
messages: 69390
nosy: georg.brandl, mishok13
severity: normal
status: open
title: abc.rst little error
versions: Python 3.0
Added file: http://bugs.python.org/file10844/abc.rst.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3315
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3306] audioop.findmax() crashs with negative length

2008-07-07 Thread Facundo Batista

Facundo Batista [EMAIL PROTECTED] added the comment:

Commited in r64775. Thank you very much!!

--
nosy: +facundobatista
resolution:  - accepted
status: open - closed

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3306
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3314] urllib.parse doesn't import sys

2008-07-07 Thread Facundo Batista

Facundo Batista [EMAIL PROTECTED] added the comment:

Commited in r64781, thank you!!

--
nosy: +facundobatista
resolution:  - accepted
status: open - closed

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3314
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3308] MinGW built extensions do not load (specified procedure cannot be found)

2008-07-07 Thread Martin v. Löwis

Martin v. Löwis [EMAIL PROTECTED] added the comment:

 BTW
 did you notice msg69367 and the attached file that shows the problem in
 a trivial test case?

I didn't understand it, so I ignored it. What use of localtime, by whom,
what tools? The mentioning of localtime seems to come out of nowhere.
(later messages clarified these, apparently: if localtime is called in
an extension, then the extension won't load, otherwise, it will load)

 The gui depends program found the following issues:

That's likely the one that I was asking for.

 In any event the net result is that if a Python extension uses current
 MinGW and localtime() then it will compile and link correctly on Python
 2.3, 2.4, 2.5, 2.6b1  3.0b1.  However it won't run on 2.6b1 or 3.0b1
 due to some sort of mismatch between those versions of Python using new
 MSVC runtime and/or MinGW.

That sounds rather like a bug in MinGW. Can you ask on one of their
lists?

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3316] Proposal for fix_urllib

2008-07-07 Thread Nick Edds

New submission from Nick Edds [EMAIL PROTECTED]:

Here is my proposed fix_urllib. The transform function is massive
because there are a lot of cases, so maybe I should break it into
separate functions for each case, and it could maybe do with some more
documentation as well. I also use FromImport from fixer_util.py even
though it warns against doing so for dotted imports because it appears
to work. The temp.py file is a dummy python file that you can test it on
to get an idea of what it does. I think it's got all the desired
functionality, but I'm not an expert on the urllib changes so let me
know if I missed anything. I haven't written tests for it yet, but
assuming it looks reasonable, I can do that later today or tomorrow.

--
assignee: collinwinter
components: 2to3 (2.x to 3.0 conversion tool)
files: fix_urllib.diff
keywords: patch
messages: 69395
nosy: brett.cannon, collinwinter, nedds
severity: normal
status: open
title: Proposal for fix_urllib
Added file: http://bugs.python.org/file10845/fix_urllib.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3316
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1857] subprocess.Popen.poll/__del__ API breakage

2008-07-07 Thread Gregory P. Smith

Changes by Gregory P. Smith [EMAIL PROTECTED]:


--
assignee:  - gregory.p.smith
keywords: +patch
nosy: +gregory.p.smith

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1857
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1606] Doc: subprocess wait() may lead to dead lock

2008-07-07 Thread Gregory P. Smith

Gregory P. Smith [EMAIL PROTECTED] added the comment:

i'll come up with something for the documentation on this.

--
assignee:  - gregory.p.smith
nosy: +gregory.p.smith
resolution:  - accepted
type:  - behavior

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1606
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1068268] subprocess is not EINTR-safe

2008-07-07 Thread Gregory P. Smith

Gregory P. Smith [EMAIL PROTECTED] added the comment:

fyi - To fix issue #2113 I added handling of a select.error errno.EINTR
being raised during the select.select call in r64756.

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1068268
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3317] duplicate lines in zipfile.py

2008-07-07 Thread Amaury Forgeot d'Arc

New submission from Amaury Forgeot d'Arc [EMAIL PROTECTED]:

Since r64688, zipfile.py contains duplicated definitions. The attached
patch removes them.

Also, Twisted uses a zipfile item that have been renamed by this change:
zipfile.stringFileHeader (now magicFileHeader).
This makes some tests fail on the community buildbots. See the rightmost
column on
http://www.python.org/dev/buildbot/community/trunk/

I suggest to rename all magicXXX variables back to stringXXX.

--
assignee: loewis
components: Library (Lib)
messages: 69398
nosy: amaury.forgeotdarc, loewis
severity: normal
status: open
title: duplicate lines in zipfile.py
type: behavior
versions: Python 2.6

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3317
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3316] Proposal for fix_urllib

2008-07-07 Thread Nick Edds

Nick Edds [EMAIL PROTECTED] added the comment:

I broke up transform into the logical pieces of it, so I think now the
code is a little bit more clear.

Added file: http://bugs.python.org/file10846/fix_urllib.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3316
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3317] duplicate lines in zipfile.py

2008-07-07 Thread Martin v. Löwis

Martin v. Löwis [EMAIL PROTECTED] added the comment:

Alan, what do you think?

--
nosy: +alanmcintyre

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3317
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3256] Multiprocessing docs are not 3.0-ready

2008-07-07 Thread Andrii V. Mishkovskyi

Andrii V. Mishkovskyi [EMAIL PROTECTED] added the comment:

So, after 5 days of silence I present my current status on the patch.
This patch fixes Doc/includes/mp_*.py examples, except for the fact that
I couldn't make mp_distributing.py work, but I'm still working on this
issue.

--
keywords: +patch
Added file: http://bugs.python.org/file10847/examples.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3256
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3256] Multiprocessing docs are not 3.0-ready

2008-07-07 Thread Andrii V. Mishkovskyi

Andrii V. Mishkovskyi [EMAIL PROTECTED] added the comment:

And this patch is for Doc/library/multiprocessing.rst. Still, there are
lot of issues, and as you none of you (Jesse or Richard) answered my
email, I'll post them tomorrow here. Right now, the patch. :)

Added file: http://bugs.python.org/file10848/multiprocessing.rst.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3256
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3256] Multiprocessing docs are not 3.0-ready

2008-07-07 Thread Jesse Noller

Jesse Noller [EMAIL PROTECTED] added the comment:

Thanks - sorry I didn't reply to the mail yet, had to deal with some  
other stuff first, I should be freed up tonight

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3256
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3308] MinGW built extensions do not load (specified procedure cannot be found)

2008-07-07 Thread Roger Binns

Roger Binns [EMAIL PROTECTED] added the comment:

I will ask on the MinGW lists.  I am still curious as to how MinGW is
supposed to know which MSVC library will be used at compile time since
distutils doesn't tell it until link time.

As a seperate issue Python isn't too helpful when an extension doesn't
load :-)

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3318] Documentation: timeit: lower bound should read upper bound

2008-07-07 Thread unutbu

New submission from unutbu [EMAIL PROTECTED]:

Re: http://docs.python.org/lib/module-timeit.html
Where the documentation says In a typical case, the lowest value gives
a lower bound for how fast your machine can run the given code snippet,
it should read instead,
In a typical case, the lowest value gives an upper bound for how fast
your machine can run the given code snippet.

Clearly, if a machine can run a code snippet in x seconds with
background processes, then the fastest the machine can run the code
snippet (without background processes) should be = x seconds. Therefore
x is an upper bound rather than a lower bound.

--
assignee: georg.brandl
components: Documentation
messages: 69405
nosy: georg.brandl, unutbu
severity: normal
status: open
title: Documentation: timeit: lower bound should read upper bound
versions: Python 2.5

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3318
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3308] MinGW built extensions do not load (specified procedure cannot be found)

2008-07-07 Thread Roger Binns

Roger Binns [EMAIL PROTECTED] added the comment:

I guess you can close this now.  Unfortunately SourceForge goes out of
its way to not make an easy link for the MinGW mailing list but you can
see the messages on 8th July 2008:
 
http://sourceforge.net/mailarchive/forum.php?forum_name=mingw-usersviewmonth=200807viewday=8

Basically MinGW erroneously ships a .lib saying localtime is in
MSVCR90.DLL when it isn't.  That means there is no link failure but the
pyd will fail to load without information as to why.  Fixing the .lib
means that localtime is picked up from MSVCRT.DLL (ie no version in
name) and everything appears to work well.

The MinGW project also claims they only support MSVCRT.DLL and not any
of the numbered ones, so basically it is luck they work.  Noone pointed
out any compile time directives to direct versioning of MSVCRT.

I guess this is more fuel for the semi-regular flame war about free
software and free compilers on Windows, but not in this ticket!

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3262] re.split doesn't split with zero-width regex

2008-07-07 Thread Mike Coleman

Changes by Mike Coleman [EMAIL PROTECTED]:


--
nosy: +mkc

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3262
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3315] abc.rst little error

2008-07-07 Thread Benjamin Peterson

Benjamin Peterson [EMAIL PROTECTED] added the comment:

This is fixed on the trunk, and should be merged into Py3k shortly.

--
nosy: +benjamin.peterson
resolution:  - later
status: open - closed

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3315
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3262] re.split doesn't split with zero-width regex

2008-07-07 Thread Mike Coleman

Mike Coleman [EMAIL PROTECTED] added the comment:

I don't want to discourage you, but #852532, which is essentially the
same bug report, was closed--without explanation--as 'wont fix' in
April, after four-plus years.  I wish you good luck--this is an
important and irritating bug, in my opinion...

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3262
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3317] duplicate lines in zipfile.py

2008-07-07 Thread Alan McIntyre

Alan McIntyre [EMAIL PROTECTED] added the comment:

I don't see a patch attached, but the duplicated code does need
removing.  If you can attach a patch I'll try it out.

As much as I dislike the string names (magicXXX seemed much more
descriptive), I suppose they're publicly available and shouldn't be
renamed without a good reason.  (Unless not being in __all__ counts as
being something one shouldn't depend on as part of the API ;)

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3317
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2275] urllib2 header capitalization

2008-07-07 Thread Senthil

Senthil [EMAIL PROTECTED] added the comment:

Please have a look at this patch.
- Included a CaseInsensitiveDict Lookup for Headers interface.
- Headers will now be .title()-ed instead of .capitalized() ed.
- Included Tests for the changes made.

In the test_urllib2, I have not removed this line (yet).
The Request.headers dictionary is not a documented interface..
- I shall attach the patch to the documentation next. Will this suffice
to remove the declaration of not a documented interface?

Please provide your comments on the attached patch. If this is fine, I
shall do the same modifications for py3k and patch docs as well.

Thanks!

Added file: http://bugs.python.org/file10849/issue2275-py26.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2275
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2916] urlgrabber.grabber calls setdefaulttimeout

2008-07-07 Thread Senthil

Senthil [EMAIL PROTECTED] added the comment:

This bug is not related to Python Stdlib. There isn't a module by name
urlgrabber in Python Stdlib and the author is referring to
http://linux.duke.edu/projects/urlgrabber/help/urlgrabber.grabber.html

Author should move his suggestion to urlgrabber project.
We cannot do anything with socket.settimeout()

Please close this issue, Facundo.

Thanks,
Senthil

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2916
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1424152] urllib/urllib2: HTTPS over (Squid) Proxy fails

2008-07-07 Thread Senthil

Senthil [EMAIL PROTECTED] added the comment:

 Senthil, could you handle this?

Sure, I shall take this up, Facundo.

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1424152
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3045] Windows online help broken when spaces in TEMP environ

2008-07-07 Thread Senthil

Senthil [EMAIL PROTECTED] added the comment:

This is a really quick fix. Someone with tracker admin access can apply
the patches and close this.
[Applies to py26 and py3k]

--
keywords: +patch
versions: +Python 2.6, Python 3.0 -Python 2.5
Added file: http://bugs.python.org/file10850/issue3045-py26.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3045
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3045] Windows online help broken when spaces in TEMP environ

2008-07-07 Thread Senthil

Changes by Senthil [EMAIL PROTECTED]:


Added file: http://bugs.python.org/file10851/issue3045-py3k.diff

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3045
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3308] MinGW built extensions do not load (specified procedure cannot be found)

2008-07-07 Thread Martin v. Löwis

Changes by Martin v. Löwis [EMAIL PROTECTED]:


--
resolution:  - wont fix
status: open - closed
versions: +3rd party

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3088] test_multiprocessing hangs on OS X 10.5.3

2008-07-07 Thread Ismail Donmez

Ismail Donmez [EMAIL PROTECTED] added the comment:

I managed to hang on Ubuntu, here is the backtrace that I got with CTRL-C:

Process PoolWorker-5:1:
Traceback (most recent call last):
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
232, in _bootstrap
test_bsddb test_bsddb3 test_cProfile test_kqueue test_lib2to3
2 skips unexpected on linux2:
test_bsddb3 test_bsddb
Process PoolWorker-5:3:
Traceback (most recent call last):
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
232, in _bootstrap
self.run()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
88, in run
self._target(*self._args, **self._kwargs)
  File /home/cartman/Sources/py3k/Lib/multiprocessing/pool.py, line
57, in worker
self.run()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
88, in run
self._target(*self._args, **self._kwargs)
  File /home/cartman/Sources/py3k/Lib/multiprocessing/pool.py, line
57, in worker
task = get()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/queues.py, line
339, in get
task = get()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/queues.py, line
337, in get
return recv()
  File /home/cartman/Sources/py3k/Lib/pickle.py, line 1327, in loads
racquire()
KeyboardInterrupt
Process PoolWorker-5:2:
Traceback (most recent call last):
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
232, in _bootstrap
self.run()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
88, in run
self._target(*self._args, **self._kwargs)
  File /home/cartman/Sources/py3k/Lib/multiprocessing/pool.py, line
57, in worker
def loads(s, *, encoding=ASCII, errors=strict):
KeyboardInterrupt
Process PoolWorker-5:4:
Traceback (most recent call last):
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
232, in _bootstrap
self.run()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/process.py, line
88, in run
self._target(*self._args, **self._kwargs)
  File /home/cartman/Sources/py3k/Lib/multiprocessing/pool.py, line
57, in worker
task = get()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/queues.py, line
337, in get
racquire()
KeyboardInterrupt
task = get()
  File /home/cartman/Sources/py3k/Lib/multiprocessing/queues.py, line
337, in get
racquire()
KeyboardInterrupt
^CError in atexit._run_exitfuncs:
make: *** [testall] Segmentation fault

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue3088
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com