[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-08 Thread Trent Nelson

Trent Nelson [EMAIL PROTECTED] added the comment:

Ahh, more FreeBSD threading woes.  If no-one beats me to it, I'll be 
able to start taking a look at this when our FreeBSD 7 server is up in 
a week or so.

--
assignee:  - Trent.Nelson
nosy: +Trent.Nelson

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



[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-08 Thread Guilherme Polo

Guilherme Polo [EMAIL PROTECTED] added the comment:

Hi Trent,

FreeBSD 7 uses libthr as default, which would possibly eliminate this
problem.

--
nosy: +gpolo

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



[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-08 Thread Amaury Forgeot d'Arc

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

I think that this problem is not FreeBSD specific:
- import test.autotest runs the whole test suite as a side-effect of
an import statement.
- in the test suite test_capi spawns threads, which also import.
- a lock ensues...

See for example test_threaded_import.py::

if imp.lock_held():
# This triggers on, e.g., from test import autotest.
raise TestSkipped(can't run when import lock is held)

I the test_capi case, I think that the two imports in TestThreadState
should be moved outside the function.

Also, the backtrace file shows two other threads locked in a import
socket statement. I suspect problems in test_urllib2.py or
test_urllib2net.py...

--
nosy: +amaury.forgeotdarc

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



[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-08 Thread Taavi Repän

Taavi Repän [EMAIL PROTECTED] added the comment:

I don't that the problem is in tests. For example
  import pygtk
  import gtk
hangs also. I don't have backtrace for PyGtk hang yet, but it hangs in
ucond state too (like test_capi).

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



[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-08 Thread Amaury Forgeot d'Arc

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

In any case, I reproduce the problem on Windows too.

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



[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-08 Thread Amaury Forgeot d'Arc

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

Committed r62229. Please file a separate issue for the gtk module, it's
really another thing.

--
resolution:  - fixed
status: open - closed

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



[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-06 Thread Taavi Repän

Changes by Taavi Repän [EMAIL PROTECTED]:


--
components: None
nosy: trepan
severity: normal
status: open
title: Python hangs on FreeBSD7 in test_capi
type: behavior
versions: Python 2.5

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



[issue2564] Python hangs on FreeBSD7 in test_capi

2008-04-06 Thread Taavi Repän

New submission from Taavi Repän [EMAIL PROTECTED]:

When doing import.test_autotest, test_capi hangs.
It seems that threads 1,2,3 are trying to acquire import lock, which is
owned by thread 4, which is trying to lock some other lock.

Python 2.5.2 (r252:60911, Apr  6 2008, 17:28:23) 
[GCC 4.2.1 20070719  [FreeBSD]] on freebsd7

Added file: http://bugs.python.org/file9964/backtrace

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