Message60932
| Author |
ronaldoussoren |
| Recipients |
| Date |
2006年07月13日.12:04:55 |
| SpamBayes Score |
| Marked as misclassified |
| Message-id |
| In-reply-to |
| Content |
Logged In: YES
user_id=580910
It's probably looking for a file named <stdin> because the co_filename
attribute for code that's executed from the interactive prompt has that value:
>>> import sys
>>> f = sys._getframe(0)
>>> f.f_code.co_filename
'<stdin>'
I agree that looking for that file is rather pointless and a bug. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2008年01月20日 09:58:45 | admin | link | issue1514420 messages |
| 2008年01月20日 09:58:45 | admin | create |
|