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
59c90c6c
Kaydet (Commit)
59c90c6c
authored
Nis 12, 2011
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.2
üst
5809403e
62f8bcb0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
test_syntax.py
Lib/test/test_syntax.py
+4
-0
NEWS
Misc/NEWS
+3
-0
ast.c
Python/ast.c
+1
-0
No files found.
Lib/test/test_syntax.py
Dosyayı görüntüle @
59c90c6c
...
...
@@ -67,6 +67,10 @@ SyntaxError: can't assign to literal
Traceback (most recent call last):
SyntaxError: can't assign to literal
>>> b"" = 1
Traceback (most recent call last):
SyntaxError: can't assign to literal
>>> `1` = 1
Traceback (most recent call last):
SyntaxError: invalid syntax
...
...
Misc/NEWS
Dosyayı görüntüle @
59c90c6c
...
...
@@ -716,6 +716,9 @@ Core and Builtins
-
Add
sys
.
flags
attribute
for
the
new
-
q
command
-
line
option
.
-
Issue
#
11506
:
Trying
to
assign
to
a
bytes
literal
should
result
in
a
SyntaxError
.
Library
-------
...
...
Python/ast.c
Dosyayı görüntüle @
59c90c6c
...
...
@@ -483,6 +483,7 @@ set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n)
case
Set_kind
:
case
Num_kind
:
case
Str_kind
:
case
Bytes_kind
:
expr_name
=
"literal"
;
break
;
case
Ellipsis_kind
:
...
...
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