summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_extcall.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix for SF bug #117241Jeremy Hylton2000-10-301-0/+18
| | | | | | | | | When a method is called with no regular arguments and * args, defer the first arg is subclass check until after the * args have been expanded. N.B. The CALL_FUNCTION implementation is getting really hairy; should review it to see if it can be simplified.
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-6/+6
|
* Break a cycle created in the saboteur() function.Vladimir Marangozov2000-07-151-2/+5
|
* Don't be so strict in checking AttributeError -- the error messageGuido van Rossum2000-04-101-2/+2
| | | | recently changed.
* Two fixes for extended call syntax:Jeremy Hylton2000-03-301-0/+44
| | | | | | | If a non-tuple sequence is passed as the *arg, convert it to a tuple before checking its length. If named keyword arguments are used in combination with **kwargs, make a copy of kwargs before inserting the new keys.
* fix previous checkinJeremy Hylton2000-03-281-1/+1
|
* add test cases for Greg Ewing's extended call syntax patchJeremy Hylton2000-03-281-0/+99