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
5e596769
Kaydet (Commit)
5e596769
authored
Eki 08, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18037: Do not escape '\u' and '\U' in raw strings.
üst
bcce1256
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
fix_unicode.py
Lib/lib2to3/fixes/fix_unicode.py
+1
-2
test_fixers.py
Lib/lib2to3/tests/test_fixers.py
+1
-1
No files found.
Lib/lib2to3/fixes/fix_unicode.py
Dosyayı görüntüle @
5e596769
...
...
@@ -28,8 +28,7 @@ class FixUnicode(fixer_base.BaseFix):
return
new
elif
node
.
type
==
token
.
STRING
:
val
=
node
.
value
if
(
not
self
.
unicode_literals
and
val
[
0
]
in
'rR
\'
"'
and
'
\\
'
in
val
):
if
not
self
.
unicode_literals
and
val
[
0
]
in
'
\'
"'
and
'
\\
'
in
val
:
val
=
r'\\'
.
join
([
v
.
replace
(
'
\\
u'
,
r'\\u'
)
.
replace
(
'
\\
U'
,
r'\\U'
)
for
v
in
val
.
split
(
r'\\'
)
...
...
Lib/lib2to3/tests/test_fixers.py
Dosyayı görüntüle @
5e596769
...
...
@@ -2830,7 +2830,7 @@ class Test_unicode(FixerTestCase):
self
.
check
(
b
,
a
)
b
=
r"""r'\\\u20ac\U0001d121\\u20ac'"""
a
=
r"""r'\\\
\u20ac\
\U0001d121\\u20ac'"""
a
=
r"""r'\\\
u20ac
\U0001d121\\u20ac'"""
self
.
check
(
b
,
a
)
def
test_bytes_literal_escape_u
(
self
):
...
...
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