[issue15201] C argument errors and Python arguments error are different

2012-09-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: This is won't fix at least for now. The way arguments to C functions are parsed prevents them from ever really being the same. Specific improvements can be considered. -- nosy: +benjamin.peterson resolution: -> wont fix status: open -> closed

[issue15201] C argument errors and Python arguments error are different

2012-09-29 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- versions: +Python 3.4 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue15201] C argument errors and Python arguments error are different

2012-06-27 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue15201] C argument errors and Python arguments error are different

2012-06-27 Thread Ramchandra Apte
New submission from Ramchandra Apte : C argument errors and Python arguments error are different. For example: all(4,4,4) Traceback (most recent call last): File "", line 1, in TypeError: all() takes exactly one argument (3 given) def func(a):pass a(4,4) Traceback (most recent call last): Fi