Message125351
| Author | pitrou |
|---|---|
| Recipients | benjamin.peterson, georg.brandl, gvanrossum, jmillikin, pitrou, rhettinger |
| Date | 2011-01-04.18:47:31 |
| SpamBayes Score | 3.603071e-09 |
| Marked as misclassified | No |
| Message-id | <1294166853.71.0.818172321515.issue5945@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Exceptions seem to be raised (for code that can be exercised in Python), but not very obvious ones:
>>> eval("x", {}, [])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1, in <module>
TypeError: list indices must be integers, not str
$ ./python -c "import os; os.execle('/bin/ls', 'ls', [])"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/antoine/py3k/__svn__/Lib/os.py", line 320, in execle
execve(file, args[:-1], env)
AttributeError: values |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2011-01-04 18:47:33 | pitrou | set | recipients: + pitrou, gvanrossum, georg.brandl, rhettinger, benjamin.peterson, jmillikin |
| 2011-01-04 18:47:33 | pitrou | set | messageid: <1294166853.71.0.818172321515.issue5945@psf.upfronthosting.co.za> |
| 2011-01-04 18:47:32 | pitrou | link | issue5945 messages |
| 2011-01-04 18:47:31 | pitrou | create | |