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
f032f86e
Kaydet (Commit)
f032f86e
authored
Şub 09, 2003
tarafından
Just van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom
mark. Added unit test.
üst
cf117b0b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
test_builtin.py
Lib/test/test_builtin.py
+4
-0
tokenizer.c
Parser/tokenizer.c
+2
-2
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
f032f86e
...
...
@@ -190,6 +190,8 @@ class BuiltinTest(unittest.TestCase):
def
test_compile
(
self
):
compile
(
'print 1
\n
'
,
''
,
'exec'
)
bom
=
'
\xef\xbb\xbf
'
compile
(
bom
+
'print 1
\n
'
,
''
,
'exec'
)
self
.
assertRaises
(
TypeError
,
compile
)
self
.
assertRaises
(
ValueError
,
compile
,
'print 42
\n
'
,
'<string>'
,
'badmode'
)
self
.
assertRaises
(
ValueError
,
compile
,
'print 42
\n
'
,
'<string>'
,
'single'
,
0xff
)
...
...
@@ -305,6 +307,8 @@ class BuiltinTest(unittest.TestCase):
self
.
assertEqual
(
eval
(
unicode
(
'a'
),
globals
,
locals
),
1
)
self
.
assertEqual
(
eval
(
unicode
(
'b'
),
globals
,
locals
),
200
)
self
.
assertEqual
(
eval
(
unicode
(
'c'
),
globals
,
locals
),
300
)
bom
=
'
\xef\xbb\xbf
'
self
.
assertEqual
(
eval
(
bom
+
'a'
,
globals
,
locals
),
1
)
self
.
assertRaises
(
TypeError
,
eval
)
self
.
assertRaises
(
TypeError
,
eval
,
())
...
...
Parser/tokenizer.c
Dosyayı görüntüle @
f032f86e
...
...
@@ -506,14 +506,14 @@ decoding_feof(struct tok_state *tok)
/* Fetch a byte from TOK, using the string buffer. */
static
int
buf_getc
(
struct
tok_state
*
tok
)
{
return
*
tok
->
str
++
;
return
Py_CHARMASK
(
*
tok
->
str
++
)
;
}
/* Unfetch a byte from TOK, using the string buffer. */
static
void
buf_ungetc
(
int
c
,
struct
tok_state
*
tok
)
{
tok
->
str
--
;
assert
(
*
tok
->
str
==
c
);
/* tok->cur may point to read-only segment */
assert
(
Py_CHARMASK
(
*
tok
->
str
)
==
c
);
/* tok->cur may point to read-only segment */
}
/* Set the readline function for TOK to ENC. For the string-based
...
...
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