[issue1757057] IDLE + BeautifulSoup = Error

2010-09-17 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can we close this given This is caused by a bug in BeautifulSoup which was fixed in version 3.0.5. from msg84412? -- nosy: +BreamoreBoy resolution: - invalid status: open - pending ___ Python

[issue1757057] IDLE + BeautifulSoup = Error

2009-03-29 Thread Tal Einat
Tal Einat talei...@users.sourceforge.net added the comment: To recreate use BeautifulSoup 3.0.4 and run the following: from BeautifulSoup import BeautifulSoup soup = BeautifulSoup(htmlaa/html) x = soup.find('html').contents[0] x u'aa' print x Traceback (most recent call last): File

[issue1757057] IDLE + BeautifulSoup = Error

2009-03-29 Thread Tal Einat
Tal Einat talei...@users.sourceforge.net added the comment: Sending a code object back to the parent process and having it deal with the situation sounds very unpleasant indeed! I think a completely different type of solution may be possible. In general, I can't think of any reason for IDLE to

[issue1757057] IDLE + BeautifulSoup = Error

2009-03-28 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: I can't seem to reproduce this here. I've tried both python 2.4.5 and 2.5.2 using beautifulsoup 3.0.7. I also used the sample html attached in that email as well part of the code that is supposed to cause the problem, and I can also run pickle