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
bdde0116
Kaydet (Commit)
bdde0116
authored
May 11, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove support for u"..." literals.
üst
0ac30f82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
ast.c
Python/ast.c
+1
-10
No files found.
Python/ast.c
Dosyayı görüntüle @
bdde0116
...
...
@@ -3139,13 +3139,8 @@ parsestr(const node *n, const char *encoding, int *bytesmode)
int
quote
=
Py_CHARMASK
(
*
s
);
int
rawmode
=
0
;
int
need_encoding
;
int
unicode
=
0
;
if
(
isalpha
(
quote
)
||
quote
==
'_'
)
{
if
(
quote
==
'u'
||
quote
==
'U'
)
{
quote
=
*++
s
;
unicode
=
1
;
}
if
(
quote
==
'b'
||
quote
==
'B'
)
{
quote
=
*++
s
;
*
bytesmode
=
1
;
...
...
@@ -3159,10 +3154,6 @@ parsestr(const node *n, const char *encoding, int *bytesmode)
PyErr_BadInternalCall
();
return
NULL
;
}
if
(
unicode
&&
*
bytesmode
)
{
ast_error
(
n
,
"string cannot be both bytes and unicode"
);
return
NULL
;
}
s
++
;
len
=
strlen
(
s
);
if
(
len
>
INT_MAX
)
{
...
...
@@ -3212,7 +3203,7 @@ parsestr(const node *n, const char *encoding, int *bytesmode)
}
}
return
PyString_DecodeEscape
(
s
,
len
,
NULL
,
unicode
,
return
PyString_DecodeEscape
(
s
,
len
,
NULL
,
1
,
need_encoding
?
encoding
:
NULL
);
}
...
...
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