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
22dcfcce
Kaydet (Commit)
22dcfcce
authored
Tem 18, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove support for byte literals; a new feature
üst
7a502de6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
4 deletions
+1
-4
ast.py
Lib/ast.py
+1
-1
test_ast.py
Lib/test/test_ast.py
+0
-1
NEWS
Misc/NEWS
+0
-2
No files found.
Lib/ast.py
Dosyayı görüntüle @
22dcfcce
...
...
@@ -50,7 +50,7 @@ def literal_eval(node_or_string):
if
isinstance
(
node_or_string
,
Expression
):
node_or_string
=
node_or_string
.
body
def
_convert
(
node
):
if
isinstance
(
node
,
(
Str
,
Bytes
)
):
if
isinstance
(
node
,
Str
):
return
node
.
s
elif
isinstance
(
node
,
Num
):
return
node
.
n
...
...
Lib/test/test_ast.py
Dosyayı görüntüle @
22dcfcce
...
...
@@ -271,7 +271,6 @@ class ASTHelpers_Test(unittest.TestCase):
self
.
assertEqual
(
ast
.
literal_eval
(
'[1, 2, 3]'
),
[
1
,
2
,
3
])
self
.
assertEqual
(
ast
.
literal_eval
(
'{"foo": 42}'
),
{
"foo"
:
42
})
self
.
assertEqual
(
ast
.
literal_eval
(
'(True, False, None)'
),
(
True
,
False
,
None
))
self
.
assertEqual
(
ast
.
literal_eval
(
'b"hi"'
),
b
"hi"
)
self
.
assertRaises
(
ValueError
,
ast
.
literal_eval
,
'foo()'
)
def
test_literal_eval_issue4907
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
22dcfcce
...
...
@@ -83,8 +83,6 @@ Library
- Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee.
- ``ast.literal_eval()`` now allows byte literals.
- Issue #9137: Fix issue in MutableMapping.update, which incorrectly
treated keyword arguments called 'self' or 'other' specially.
...
...
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