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
07f54515
Kaydet (Commit)
07f54515
authored
Ara 11, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove dictmaker rule; it's unused
üst
be0f4f3d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
Grammar
Grammar/Grammar
+0
-1
graminit.h
Include/graminit.h
+13
-14
NEWS
Misc/NEWS
+2
-0
graminit.c
Python/graminit.c
+0
-0
No files found.
Grammar/Grammar
Dosyayı görüntüle @
07f54515
...
@@ -114,7 +114,6 @@ subscript: '.' '.' '.' | test | [test] ':' [test] [sliceop]
...
@@ -114,7 +114,6 @@ subscript: '.' '.' '.' | test | [test] ':' [test] [sliceop]
sliceop: ':' [test]
sliceop: ':' [test]
exprlist: expr (',' expr)* [',']
exprlist: expr (',' expr)* [',']
testlist: test (',' test)* [',']
testlist: test (',' test)* [',']
dictmaker: test ':' test (',' test ':' test)* [',']
dictorsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) |
dictorsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) |
(test (comp_for | (',' test)* [','])) )
(test (comp_for | (',' test)* [','])) )
...
...
Include/graminit.h
Dosyayı görüntüle @
07f54515
...
@@ -72,17 +72,16 @@
...
@@ -72,17 +72,16 @@
#define sliceop 325
#define sliceop 325
#define exprlist 326
#define exprlist 326
#define testlist 327
#define testlist 327
#define dictmaker 328
#define dictorsetmaker 328
#define dictorsetmaker 329
#define classdef 329
#define classdef 330
#define arglist 330
#define arglist 331
#define argument 331
#define argument 332
#define list_iter 332
#define list_iter 333
#define list_for 333
#define list_for 334
#define list_if 334
#define list_if 335
#define comp_iter 335
#define comp_iter 336
#define comp_for 336
#define comp_for 337
#define comp_if 337
#define comp_if 338
#define testlist1 338
#define testlist1 339
#define encoding_decl 339
#define encoding_decl 340
#define yield_expr 340
#define yield_expr 341
Misc/NEWS
Dosyayı görüntüle @
07f54515
...
@@ -9,6 +9,8 @@ What's New in Python 2.7.2?
...
@@ -9,6 +9,8 @@ What's New in Python 2.7.2?
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #10674: Remove unused 'dictmaker' rule from grammar.
- Issue #10596: Fix float.__mod__ to have the same behaviour as
- Issue #10596: Fix float.__mod__ to have the same behaviour as
float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be
float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be
0.0, not -0.0.
0.0, not -0.0.
...
...
Python/graminit.c
Dosyayı görüntüle @
07f54515
This diff is collapsed.
Click to expand it.
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