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
0938d98b
Kaydet (Commit)
0938d98b
authored
May 28, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.5
üst
2ec8f9bf
264be6f4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
24 deletions
+1
-24
dis.rst
Doc/library/dis.rst
+0
-4
opcode.h
Include/opcode.h
+0
-1
opcode.py
Lib/opcode.py
+0
-1
ceval.c
Python/ceval.c
+0
-15
compile.c
Python/compile.c
+0
-2
opcode_targets.h
Python/opcode_targets.h
+1
-1
No files found.
Doc/library/dis.rst
Dosyayı görüntüle @
0938d98b
...
...
@@ -848,10 +848,6 @@ the more significant byte last.
Pushes a try block from a try-except clause onto the block stack. *delta*
points to the finally block.
.. opcode:: STORE_MAP
Store a key and value pair in a dictionary. Pops the key and value while
leaving the dictionary on the stack.
.. opcode:: LOAD_FAST (var_num)
...
...
Include/opcode.h
Dosyayı görüntüle @
0938d98b
...
...
@@ -32,7 +32,6 @@ extern "C" {
#define GET_AITER 50
#define GET_ANEXT 51
#define BEFORE_ASYNC_WITH 52
#define STORE_MAP 54
#define INPLACE_ADD 55
#define INPLACE_SUBTRACT 56
#define INPLACE_MULTIPLY 57
...
...
Lib/opcode.py
Dosyayı görüntüle @
0938d98b
...
...
@@ -89,7 +89,6 @@ def_op('GET_AITER', 50)
def_op
(
'GET_ANEXT'
,
51
)
def_op
(
'BEFORE_ASYNC_WITH'
,
52
)
def_op
(
'STORE_MAP'
,
54
)
def_op
(
'INPLACE_ADD'
,
55
)
def_op
(
'INPLACE_SUBTRACT'
,
56
)
def_op
(
'INPLACE_MULTIPLY'
,
57
)
...
...
Python/ceval.c
Dosyayı görüntüle @
0938d98b
...
...
@@ -2680,21 +2680,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
DISPATCH
();
}
TARGET
(
STORE_MAP
)
{
PyObject
*
key
=
TOP
();
PyObject
*
value
=
SECOND
();
PyObject
*
map
=
THIRD
();
int
err
;
STACKADJ
(
-
2
);
assert
(
PyDict_CheckExact
(
map
));
err
=
PyDict_SetItem
(
map
,
key
,
value
);
Py_DECREF
(
value
);
Py_DECREF
(
key
);
if
(
err
!=
0
)
goto
error
;
DISPATCH
();
}
TARGET
(
MAP_ADD
)
{
PyObject
*
key
=
TOP
();
PyObject
*
value
=
SECOND
();
...
...
Python/compile.c
Dosyayı görüntüle @
0938d98b
...
...
@@ -903,8 +903,6 @@ PyCompile_OpcodeStackEffect(int opcode, int oparg)
return
-
1
;
case
STORE_SUBSCR
:
return
-
3
;
case
STORE_MAP
:
return
-
2
;
case
DELETE_SUBSCR
:
return
-
2
;
...
...
Python/opcode_targets.h
Dosyayı görüntüle @
0938d98b
...
...
@@ -53,7 +53,7 @@ static void *opcode_targets[256] = {
&&
TARGET_GET_ANEXT
,
&&
TARGET_BEFORE_ASYNC_WITH
,
&&
_unknown_opcode
,
&&
TARGET_STORE_MAP
,
&&
_unknown_opcode
,
&&
TARGET_INPLACE_ADD
,
&&
TARGET_INPLACE_SUBTRACT
,
&&
TARGET_INPLACE_MULTIPLY
,
...
...
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