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
b9845e72
Kaydet (Commit)
b9845e72
authored
Haz 12, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Get rid of f_restricted too. Doc the other 4 ints that were already removed
at the NeedForSpeed sprint.
üst
2585ad58
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
5 deletions
+13
-5
frameobject.h
Include/frameobject.h
+2
-2
NEWS
Misc/NEWS
+3
-0
frameobject.c
Objects/frameobject.c
+7
-2
ceval.c
Python/ceval.c
+1
-1
No files found.
Include/frameobject.h
Dosyayı görüntüle @
b9845e72
...
...
@@ -41,8 +41,6 @@ typedef struct _frame {
/* As of 2.3 f_lineno is only valid when tracing is active (i.e. when
f_trace is set) -- at other times use PyCode_Addr2Line instead. */
int
f_lineno
;
/* Current line number */
int
f_restricted
;
/* Flag set if restricted operations
in this scope */
int
f_iblock
;
/* index in f_blockstack */
PyTryBlock
f_blockstack
[
CO_MAXBLOCKS
];
/* for try and loop blocks */
PyObject
*
f_localsplus
[
1
];
/* locals+stack, dynamically sized */
...
...
@@ -54,6 +52,8 @@ typedef struct _frame {
PyAPI_DATA
(
PyTypeObject
)
PyFrame_Type
;
#define PyFrame_Check(op) ((op)->ob_type == &PyFrame_Type)
#define PyFrame_IsRestricted(f) \
((f)->f_builtins != (f)->f_tstate->interp->builtins)
PyAPI_FUNC
(
PyFrameObject
*
)
PyFrame_New
(
PyThreadState
*
,
PyCodeObject
*
,
PyObject
*
,
PyObject
*
);
...
...
Misc/NEWS
Dosyayı görüntüle @
b9845e72
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.5 beta 1?
Core and builtins
-----------------
- Removed 5 integers from C frame objects (PyFrameObject).
f_nlocals, f_ncells, f_nfreevars, f_stack_size, f_restricted.
- Bug #532646: object.__call__() will continue looking for the __call__
attribute on objects until one without one is found. This leads to recursion
when you take a class and set its __call__ attribute to an instance of the
...
...
Objects/frameobject.c
Dosyayı görüntüle @
b9845e72
...
...
@@ -20,7 +20,6 @@ static PyMemberDef frame_memberlist[] = {
{
"f_builtins"
,
T_OBJECT
,
OFF
(
f_builtins
),
RO
},
{
"f_globals"
,
T_OBJECT
,
OFF
(
f_globals
),
RO
},
{
"f_lasti"
,
T_INT
,
OFF
(
f_lasti
),
RO
},
{
"f_restricted"
,
T_INT
,
OFF
(
f_restricted
),
RO
},
{
"f_exc_type"
,
T_OBJECT
,
OFF
(
f_exc_type
)},
{
"f_exc_value"
,
T_OBJECT
,
OFF
(
f_exc_value
)},
{
"f_exc_traceback"
,
T_OBJECT
,
OFF
(
f_exc_traceback
)},
...
...
@@ -341,11 +340,18 @@ frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
return
0
;
}
static
PyObject
*
frame_getrestricted
(
PyFrameObject
*
f
,
void
*
closure
)
{
return
PyBool_FromLong
(
PyFrame_IsRestricted
(
f
));
}
static
PyGetSetDef
frame_getsetlist
[]
=
{
{
"f_locals"
,
(
getter
)
frame_getlocals
,
NULL
,
NULL
},
{
"f_lineno"
,
(
getter
)
frame_getlineno
,
(
setter
)
frame_setlineno
,
NULL
},
{
"f_trace"
,
(
getter
)
frame_gettrace
,
(
setter
)
frame_settrace
,
NULL
},
{
"f_restricted"
,(
getter
)
frame_getrestricted
,
NULL
,
NULL
},
{
0
}
};
...
...
@@ -664,7 +670,6 @@ PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals,
f
->
f_lasti
=
-
1
;
f
->
f_lineno
=
code
->
co_firstlineno
;
f
->
f_restricted
=
(
builtins
!=
tstate
->
interp
->
builtins
);
f
->
f_iblock
=
0
;
f
->
f_stacktop
=
f
->
f_valuestack
;
...
...
Python/ceval.c
Dosyayı görüntüle @
b9845e72
...
...
@@ -3354,7 +3354,7 @@ int
PyEval_GetRestricted
(
void
)
{
PyFrameObject
*
current_frame
=
PyEval_GetFrame
();
return
current_frame
==
NULL
?
0
:
current_frame
->
f_restricted
;
return
current_frame
==
NULL
?
0
:
PyFrame_IsRestricted
(
current_frame
)
;
}
int
...
...
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