[issue21968] 'abort' object is not callable

2014-07-15 Thread Apple Grew
Apple Grew added the comment: Oops. I totally missed this. Thanks for pointing this out. I would have never found this. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21968

[issue21968] 'abort' object is not callable

2014-07-12 Thread Apple Grew
New submission from Apple Grew: I am sometimes getting the following error from imaplib. Traceback (most recent call last): File client.py, line 105, in get_new_mail_uids result, data = retryableCall(lambda : mail.uid('search', None, UNSEEN), retries, delay) # search and return uids

[issue21968] 'abort' object is not callable

2014-07-12 Thread Apple Grew
Apple Grew added the comment: That is the problem. I don't assign anything to that. I in fact grepped my code for the word abort but could find none, except in the following code block. def retryableCall(f, retries, delay): while True: try: return f() except

[issue21968] 'abort' object is not callable

2014-07-12 Thread Apple Grew
Apple Grew added the comment: Yes, I actually doing - print '', self.abort, from _init_, and other methods I am invoking. However, that seems to print nothing! I don't know why. My codes which is using impalib is able to print stuffs. -- ___ Python

[issue15739] Python crashes with Bus error: 10

2012-08-20 Thread Apple Grew
New submission from Apple Grew: Python crashes when I try to access (by sending http request from borwser) my Django application. OS: Mac OSX Lion Python version: 2.7.1 (This was pre-bundled with OS and not a MacPort). There isn't a simple test case but I do have an open source app which

[issue15739] Python crashes with Bus error: 10

2012-08-20 Thread Apple Grew
Apple Grew added the comment: Well I tried with Python2.6 (MacPort) now. It too crashes with Bus error. I guess this has something to do with OSX ports. Please investigate. Whatever it maybe, but the process must not crash like that. -- ___ Python

[issue15739] Python crashes with Bus error: 10

2012-08-20 Thread Apple Grew
Apple Grew added the comment: If you believe this is impossible then possibly there could be a memory overflow issue which triggers this error in OSX builds. In other builds it may not cause that problem or don't share the same faulty code. -- assignee: - ronaldoussoren components

[issue15739] Python crashes with Bus error: 10

2012-08-20 Thread Apple Grew
Apple Grew added the comment: Thanks. I tested with 2.7.3 (macport) and it indeed works. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15739