This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2012年05月25日 16:21 by tsou, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg161588 - (view) | Author: Thanos Tsouanas (tsou) | Date: 2012年05月25日 16:21 | |
# This correctly raises a type error, but the explanation # that comes with it is bad: def foo(x, y, z=28): return foo(x, z=8) # TypeError: foo() takes at least 2 arguments (2 given) |
|||
| msg162085 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2012年06月01日 17:59 | |
I think this was fixed in 3.3, and maybe backported. Could you test with the latest releases? |
|||
| msg162092 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2012年06月01日 18:08 | |
It is fixed. It was not backported. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:30 | admin | set | github: 59123 |
| 2012年08月01日 01:36:25 | jcea | set | nosy:
+ jcea |
| 2012年06月01日 18:08:58 | r.david.murray | set | status: open -> closed nosy: + r.david.murray messages: + msg162092 resolution: duplicate stage: resolved |
| 2012年06月01日 17:59:35 | eric.araujo | set | nosy:
+ eric.araujo, benjamin.peterson title: Incorrect explanation of TypeError exception -> Incorrect TypeError message for wrong function arguments messages: + msg162085 versions: + Python 3.3 |
| 2012年05月25日 16:21:04 | tsou | create | |