Message179136
| Author |
xdegaye |
| Recipients |
amaury.forgeotdarc, giampaolo.rodola, josiahcarlson, stutzbach, xdegaye |
| Date |
2013年01月05日.19:36:30 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1357414591.08.0.960576786199.issue13103@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Same problem in 3.4.
$ ./python
Python 3.4.0a0 (default:e1bee8b09828, Jan 5 2013, 20:29:00)
[GCC 4.3.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import asyncore
>>> a = asyncore.dispatcher()
>>> del a.socket
>>> a.foo
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "./Lib/asyncore.py", line 410, in __getattr__
retattr = getattr(self.socket, attr)
...
File "./Lib/asyncore.py", line 410, in __getattr__
retattr = getattr(self.socket, attr)
RuntimeError: maximum recursion depth exceeded while calling a Python object
>>> |
|