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
3d1f0955
Kaydet (Commit)
3d1f0955
authored
Ock 12, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
changes for ** (power) operator
üst
b17d5dea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
13 deletions
+17
-13
graminit.h
Include/graminit.h
+11
-10
opcode.h
Include/opcode.h
+2
-0
token.h
Include/token.h
+4
-3
No files found.
Include/graminit.h
Dosyayı görüntüle @
3d1f0955
...
...
@@ -43,13 +43,14 @@
#define arith_expr 298
#define term 299
#define factor 300
#define atom 301
#define lambdef 302
#define trailer 303
#define subscript 304
#define exprlist 305
#define testlist 306
#define dictmaker 307
#define classdef 308
#define arglist 309
#define argument 310
#define power 301
#define atom 302
#define lambdef 303
#define trailer 304
#define subscript 305
#define exprlist 306
#define testlist 307
#define dictmaker 308
#define classdef 309
#define arglist 310
#define argument 311
Include/opcode.h
Dosyayı görüntüle @
3d1f0955
...
...
@@ -43,6 +43,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define UNARY_INVERT 15
#define BINARY_POWER 19
#define BINARY_MULTIPLY 20
#define BINARY_DIVIDE 21
#define BINARY_MODULO 22
...
...
Include/token.h
Dosyayı görüntüle @
3d1f0955
...
...
@@ -66,10 +66,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define CIRCUMFLEX 33
#define LEFTSHIFT 34
#define RIGHTSHIFT 35
#define DOUBLESTAR 36
/* Don't forget to update the table _PyParser_TokenNames in tokenizer.c! */
#define OP 3
6
#define ERRORTOKEN 3
7
#define N_TOKENS 3
8
#define OP 3
7
#define ERRORTOKEN 3
8
#define N_TOKENS 3
9
/* Special definitions for cooperation with parser */
...
...
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