Home
last modified time | relevance | path

Searched refs:getargs (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/test/
Dtest_getargs2.py751 from _testcapi import getargs_positional_only_and_keywords as getargs unknown in PositionalOnlyAndKeywords_TestCase
755 self.assertEqual(self.getargs(1, 2, 3), (1, 2, 3))
759 self.assertEqual(self.getargs(1, 2, keyword=3), (1, 2, 3))
763 self.assertEqual(self.getargs(1, 2), (1, 2, -1))
764 self.assertEqual(self.getargs(1, keyword=3), (1, -1, 3))
767 self.assertEqual(self.getargs(1), (1, -1, -1))
771 self.getargs()
775 self.getargs(keyword=3)
780 self.getargs(1, 2, **{'': 666})
/third_party/libuv/src/unix/
Daix-common.c83 res = getargs(&pi, sizeof(pi), args, sizeof(args)); in uv_exepath()
/third_party/node/deps/uv/src/unix/
Daix-common.c83 res = getargs(&pi, sizeof(pi), args, sizeof(args)); in uv_exepath()
/third_party/curl/docs/cmdline-opts/
Dgen.pl930 sub getargs { subroutine
965 getargs($cmd, @files);
/third_party/python/Lib/
Dinspect.py1190 def getargs(co): function
1354 args, varargs, varkw = getargs(frame.f_code)
Dturtle.py3897 args, varargs, varkw = inspect.getargs(ob.__code__)
/third_party/python/
DMakefile.pre.in354 Python/getargs.o \
/third_party/python/Doc/whatsnew/
D2.6.rst2000 :func:`getmoduleinfo` and :func:`getargs`, now return named tuples.
/third_party/skia/third_party/externals/microhttpd/doc/
Dtexinfo.tex7361 \getargs{#1}% now \macname is the macname and \argl the arglist
7416 \def\getargs#1{\getargsxxx#1{}}
/third_party/python/Misc/
DHISTORY7415 for "parity" between PyArg_ParseTuple() and the Python/getargs.c static
20022 - Bug #891637, patch #1005466: fix inspect.getargs() crash on def foo((bar)).
29737 - Fixed a bug in the new format string error checking in getargs.c.
31896 getargs.c and operator.c.
31936 - C API addition: getargs.c now supports
32590 - Changed the error handling by [new]getargs() e.g. for "O&".
32738 - O!, O& O? formats for getargs allow more versatile type checking of
32761 - All the [new]getargs() formats that retrieve an integer value
34359 values according to a "format" string a la getargs()
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst8887 Fix pluralization in TypeError messages in getargs.c and typeobject.c: '1
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch2079 Python/getargs.o \