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
7815c5e9
Kaydet (Commit)
7815c5e9
authored
Haz 11, 2007
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Check unicode identifier directly instead of converting
it to an 8bit string first.
üst
4dbd01b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
test_descr.py
Lib/test/test_descr.py
+7
-0
typeobject.c
Objects/typeobject.c
+4
-4
No files found.
Lib/test/test_descr.py
Dosyayı görüntüle @
7815c5e9
...
...
@@ -1083,6 +1083,13 @@ def slots():
pass
else
:
raise
TestFailed
,
"['foo
\\
0bar'] slots not caught"
try
:
class
C
(
object
):
__slots__
=
[
"foo
\u1234
bar"
]
except
TypeError
:
pass
else
:
raise
TestFailed
,
"['foo
\\
u1234bar'] slots not caught"
try
:
class
C
(
object
):
__slots__
=
[
"1"
]
...
...
Objects/typeobject.c
Dosyayı görüntüle @
7815c5e9
...
...
@@ -1561,7 +1561,7 @@ static PyGetSetDef subtype_getsets_weakref_only[] = {
static
int
valid_identifier
(
PyObject
*
s
)
{
unsigned
char
*
p
;
Py_UNICODE
*
p
;
Py_ssize_t
i
,
n
;
if
(
!
PyUnicode_Check
(
s
))
{
...
...
@@ -1570,14 +1570,14 @@ valid_identifier(PyObject *s)
s
->
ob_type
->
tp_name
);
return
0
;
}
p
=
(
unsigned
char
*
)
PyUnicode_AsString
(
s
);
n
=
strlen
((
char
*
)
p
)
/*XXX PyString_GET_SIZE(s)*/
;
p
=
PyUnicode_AS_UNICODE
(
s
);
n
=
PyUnicode_GET_SIZE
(
s
)
;
/* We must reject an empty name. As a hack, we bump the
length to 1 so that the loop will balk on the trailing \0. */
if
(
n
==
0
)
n
=
1
;
for
(
i
=
0
;
i
<
n
;
i
++
,
p
++
)
{
if
(
!
(
i
==
0
?
isalpha
(
*
p
)
:
isalnum
(
*
p
))
&&
*
p
!=
'_'
)
{
if
(
i
>
255
||
(
!
(
i
==
0
?
isalpha
(
*
p
)
:
isalnum
(
*
p
))
&&
*
p
!=
'_'
)
)
{
PyErr_SetString
(
PyExc_TypeError
,
"__slots__ must be identifiers"
);
return
0
;
...
...
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