summaryrefslogtreecommitdiff
path: root/Lib/test/test_getargs2.py
Commit message (Expand)AuthorAgeFilesLines
* Update various test modules to use unittest.main() for test discoveryBrett Cannon2013-06-121-20/+6
* Issue #17516: use comment syntax for comments, instead of multiline stringVictor Stinner2013-03-261-31/+29
* Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.Larry Hastings2012-05-051-0/+31
* Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords.Larry Hastings2012-03-201-1/+73
* Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.Eli Bendersky2011-07-291-0/+9
* Issue #10451: memoryview objects could allow to mutate a readable buffer.Antoine Pitrou2011-01-181-1/+3
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-9/+9
* Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, useVictor Stinner2010-06-251-0/+10
* Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytesVictor Stinner2010-06-241-1/+1
* Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z"Victor Stinner2010-06-131-1/+129
* Issue #8950: Make PyArg_Parse* with 'L' code raise for float inputs,Mark Dickinson2010-06-101-16/+1
* Issue #6697: Fix a crash if a keyword contains a surrogateVictor Stinner2010-05-191-0/+14
* Merged revisions 77218 via svnmerge fromMark Dickinson2010-01-011-11/+17
* Merged revisions 76930 via svnmerge fromMark Dickinson2009-12-201-1/+16
* Issue #7435: Remove duplicate int/long tests, and otherMark Dickinson2009-12-051-25/+0
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-71/+71
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Issue 2440: remove the guard around the handling of case 'n' in getargs.c's c...Trent Nelson2008-04-221-2/+2
* Issue 2440: revert r62269 and r62279. These changes were made in an effort t...Trent Nelson2008-04-111-5/+0
* Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), ext...Trent Nelson2008-04-101-0/+5
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-281-1/+50
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-2/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-13/+13
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+18
* Fix newly merged test for p3ykness.Thomas Wouters2006-04-211-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+18
* Fix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily)Thomas Wouters2006-04-151-6/+6
* Revert previous checkin on getargs 'L' code. Try to convert allMartin v. Löwis2005-03-031-10/+4
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-5/+3
* This test now uses the separate getargs_X functions from _testcapimodule.Thomas Heller2003-04-241-101/+109
* Whitespace normalization.Tim Peters2003-04-241-1/+1
* Delete the 'h' test -- 'h' is no longer unsigned so the machinery hereGuido van Rossum2003-04-181-16/+1
* SF # 595026: support for masks in getargs.c.Thomas Heller2003-04-171-0/+245