summaryrefslogtreecommitdiff
path: root/Lib/test/test_extcall.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-37540: vectorcall: keyword names must be strings (GH-14682)Jeroen Demeyer2019-08-161-1/+1
* Fix syntax warnings in tests introduced in bpo-15248. (GH-11932)Serhiy Storchaka2019-02-191-2/+3
* bpo-35634: Raise an error when first passed kwargs contains duplicated keys. ...Serhiy Storchaka2019-01-121-0/+46
* bpo-31071: Avoid masking original TypeError in call with * unpacking (#2957)Serhiy Storchaka2017-08-031-0/+16
* Issue #27358: Optimized merging var-keyword arguments and improved errorSerhiy Storchaka2016-10-021-0/+25
* Issue #28257: Improved error message when pass a non-iterable asSerhiy Storchaka2016-10-021-0/+10
* Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-121-8/+10
* Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-10/+8
* Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-121-0/+4
* Issue #4806: Avoid masking original TypeError in call with * unpackingMartin Panter2016-01-311-5/+44
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-0/+22
* give the names of missing positional or keyword-only arguments (closes #12356)Benjamin Peterson2011-06-241-59/+48
* greatly improve argument parsing error messages (closes #12265)Benjamin Peterson2011-06-051-10/+72
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| * Merged revisions 73623-73624 via svnmerge fromBenjamin Peterson2009-06-281-0/+18
* | only take into account positional arguments count in related error messagesBenjamin Peterson2010-06-251-2/+2
* | count keyword only arguments as part of the totalBenjamin Peterson2010-03-211-0/+6
* | Merged revisions 79205,79219,79228,79230,79232-79233,79235,79237 via svnmerge...Benjamin Peterson2010-03-211-5/+24
* | Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,...Benjamin Peterson2009-06-281-0/+18
|/
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-4/+4
* Get this test to pass (UserList/UserDict no longer exist and caused a skip).Neal Norwitz2008-03-181-23/+16
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-181-274/+262
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+1
* Move UserList to collections.Raymond Hettinger2008-02-121-2/+1
* Migrate remaining tests from UserDict.UserDict to collections.UserDict.Raymond Hettinger2008-02-061-1/+1
* Patch from Georg Brandl and me for #1493Christian Heimes2007-11-251-12/+2
* Raise statement normalization in Lib/test/.Collin Winter2007-08-291-2/+2
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-2/+1
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-0/+7
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-1/+1
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-251-1/+1
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-2/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-47/+47
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-20/+20
* adding passing test. testing for g(*Nothing()) where Nothing is a user-define...Samuele Pedroni2004-02-211-0/+25
* SF bug #733667: kwargs handled incorrectlyRaymond Hettinger2003-05-311-0/+11
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
* Quick and dirty fix for test_extcall failures trigged by Guido'sBarry Warsaw2001-08-241-2/+6
* Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask".Tim Peters2001-05-131-11/+4
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-051-4/+4
* Test cases for examples of ext call error handling.Jeremy Hylton2001-04-111-0/+35
* String method conversion.Eric S. Raymond2001-02-091-2/+1
* Patch #103344: Sort dicts from extcall for easier comparison with Jython.Tim Peters2001-01-211-5/+13
* a bold attempt to fix things broken by MAL's verify patch: importFredrik Lundh2001-01-171-2/+1
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-3/+4
* This patch makes sure that the function name always appears in the errorKa-Ping Yee2001-01-151-0/+30
* When a PyCFunction that takes only positional parameters is called withFred Drake2001-01-041-1/+11
* Fix for SF bug #117241Jeremy Hylton2000-10-301-0/+18