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
504373c5
Unverified
Kaydet (Commit)
504373c5
authored
Tem 11, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Tem 11, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)
üst
b91a3a0d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
1 deletion
+37
-1
test_capi.py
Lib/test/test_capi.py
+32
-0
2018-07-09-11-39-54.bpo-23927.pDFkxb.rst
...EWS.d/next/C API/2018-07-09-11-39-54.bpo-23927.pDFkxb.rst
+2
-0
getargs.c
Python/getargs.c
+3
-1
No files found.
Lib/test/test_capi.py
Dosyayı görüntüle @
504373c5
...
...
@@ -6,6 +6,7 @@ import os
import
pickle
import
random
import
re
import
string
import
subprocess
import
sys
import
sysconfig
...
...
@@ -489,6 +490,37 @@ class SkipitemTest(unittest.TestCase):
c
,
i
,
when_skipped
,
when_not_skipped
))
self
.
assertIs
(
when_skipped
,
when_not_skipped
,
message
)
def
test_skipitem_with_suffix
(
self
):
parse
=
_testcapi
.
parse_tuple_and_keywords
empty_tuple
=
()
tuple_1
=
(
0
,)
dict_b
=
{
'b'
:
1
}
keywords
=
[
"a"
,
"b"
]
supported
=
(
's#'
,
's*'
,
'z#'
,
'z*'
,
'u#'
,
'Z#'
,
'y#'
,
'y*'
,
'w#'
,
'w*'
)
for
c
in
string
.
ascii_letters
:
for
c2
in
'#*'
:
f
=
c
+
c2
with
self
.
subTest
(
format
=
f
):
optional_format
=
"|"
+
f
+
"i"
if
f
in
supported
:
parse
(
empty_tuple
,
dict_b
,
optional_format
,
keywords
)
else
:
with
self
.
assertRaisesRegex
(
SystemError
,
'impossible<bad format char>'
):
parse
(
empty_tuple
,
dict_b
,
optional_format
,
keywords
)
for
c
in
map
(
chr
,
range
(
32
,
128
)):
f
=
'e'
+
c
optional_format
=
"|"
+
f
+
"i"
with
self
.
subTest
(
format
=
f
):
if
c
in
'st'
:
parse
(
empty_tuple
,
dict_b
,
optional_format
,
keywords
)
else
:
with
self
.
assertRaisesRegex
(
SystemError
,
'impossible<bad format char>'
):
parse
(
empty_tuple
,
dict_b
,
optional_format
,
keywords
)
def
test_parse_tuple_and_keywords
(
self
):
# Test handling errors in the parse_tuple_and_keywords helper itself
self
.
assertRaises
(
TypeError
,
_testcapi
.
parse_tuple_and_keywords
,
...
...
Misc/NEWS.d/next/C API/2018-07-09-11-39-54.bpo-23927.pDFkxb.rst
0 → 100644
Dosyayı görüntüle @
504373c5
Fixed :exc:`SystemError` in :c:func:`PyArg_ParseTupleAndKeywords` when the
``w*`` format unit is used for optional parameter.
Python/getargs.c
Dosyayı görüntüle @
504373c5
...
...
@@ -2333,7 +2333,9 @@ skipitem(const char **p_format, va_list *p_va, int flags)
(
void
)
va_arg
(
*
p_va
,
int
*
);
}
format
++
;
}
else
if
((
c
==
's'
||
c
==
'z'
||
c
==
'y'
)
&&
*
format
==
'*'
)
{
}
else
if
((
c
==
's'
||
c
==
'z'
||
c
==
'y'
||
c
==
'w'
)
&&
*
format
==
'*'
)
{
format
++
;
}
break
;
...
...
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