Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
4caef5c7
Kaydet (Commit)
4caef5c7
authored
Ara 22, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|'
üst
1c397852
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
_testcapimodule.c
Modules/_testcapimodule.c
+27
-0
getargs.c
Python/getargs.c
+1
-1
No files found.
Modules/_testcapimodule.c
Dosyayı görüntüle @
4caef5c7
...
...
@@ -518,6 +518,32 @@ test_u_code(PyObject *self)
return
Py_None
;
}
static
PyObject
*
test_empty_argparse
(
PyObject
*
self
)
{
/* Test that formats can begin with '|'. See issue #4720. */
PyObject
*
tuple
,
*
dict
=
NULL
;
static
char
*
kwlist
[]
=
{
NULL
};
int
result
;
tuple
=
PyTuple_New
(
0
);
if
(
!
tuple
)
return
NULL
;
if
((
result
=
PyArg_ParseTuple
(
tuple
,
"|:test_empty_argparse"
))
<
0
)
goto
done
;
dict
=
PyDict_New
();
if
(
!
dict
)
goto
done
;
result
=
PyArg_ParseTupleAndKeywords
(
tuple
,
dict
,
"|:test_empty_argparse"
,
kwlist
);
done:
Py_DECREF
(
tuple
);
Py_XDECREF
(
dict
);
if
(
result
<
0
)
return
NULL
;
else
{
Py_RETURN_NONE
;
}
}
static
PyObject
*
codec_incrementalencoder
(
PyObject
*
self
,
PyObject
*
args
)
{
...
...
@@ -780,6 +806,7 @@ static PyMethodDef TestMethods[] = {
{
"test_long_api"
,
(
PyCFunction
)
test_long_api
,
METH_NOARGS
},
{
"test_long_numbits"
,
(
PyCFunction
)
test_long_numbits
,
METH_NOARGS
},
{
"test_k_code"
,
(
PyCFunction
)
test_k_code
,
METH_NOARGS
},
{
"test_empty_argparse"
,
(
PyCFunction
)
test_empty_argparse
,
METH_NOARGS
},
{
"test_null_strings"
,
(
PyCFunction
)
test_null_strings
,
METH_NOARGS
},
{
"test_string_from_format"
,
(
PyCFunction
)
test_string_from_format
,
METH_NOARGS
},
{
"test_with_docstring"
,
(
PyCFunction
)
test_with_docstring
,
METH_NOARGS
,
...
...
Python/getargs.c
Dosyayı görüntüle @
4caef5c7
...
...
@@ -1601,7 +1601,7 @@ vgetargskeywords(PyObject *args, PyObject *keywords, const char *format,
}
}
if
(
!
IS_END_OF_FORMAT
(
*
format
))
{
if
(
!
IS_END_OF_FORMAT
(
*
format
)
&&
*
format
!=
'|'
)
{
PyErr_Format
(
PyExc_RuntimeError
,
"more argument specifiers than keyword list entries "
"(remaining format:'%s')"
,
format
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment