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
0a066c07
Kaydet (Commit)
0a066c07
authored
Mar 27, 1992
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lint (added prototypes for all static fns)
üst
3132a5a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
29 deletions
+34
-29
ceval.c
Python/ceval.c
+34
-29
No files found.
Python/ceval.c
Dosyayı görüntüle @
0a066c07
...
...
@@ -42,39 +42,44 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#endif
/* Forward declarations */
/* XXX Need prototypes */
void
flushline
();
static
object
*
add
();
static
object
*
sub
();
static
object
*
mul
();
static
object
*
divide
();
static
object
*
rem
();
static
object
*
neg
();
static
object
*
pos
();
static
object
*
not
();
static
object
*
invert
();
static
object
*
lshift
();
static
object
*
rshift
();
static
object
*
and
();
static
object
*
xor
();
static
object
*
or
();
static
object
*
call_builtin
();
static
object
*
call_function
();
object
*
call_object
();
static
object
*
apply_subscript
();
static
object
*
loop_subscript
();
static
object
*
apply_slice
();
static
object
*
cmp_outcome
();
static
object
*
build_class
();
static
int
testbool
();
static
int
assign_subscript
PROTO
((
object
*
,
object
*
,
object
*
));
static
int
assign_slice
PROTO
((
object
*
,
object
*
,
object
*
,
object
*
));
static
int
import_from
PROTO
((
object
*
,
object
*
,
object
*
));
#ifdef LLTRACE
static
int
prtrace
PROTO
((
object
*
,
char
*
));
#endif
static
void
call_exc_trace
PROTO
((
object
**
,
object
**
,
frameobject
*
));
static
int
call_trace
PROTO
((
object
**
,
object
**
,
frameobject
*
,
char
*
,
object
*
));
static
int
testbool
PROTO
((
object
*
));
static
object
*
add
PROTO
((
object
*
,
object
*
));
static
object
*
sub
PROTO
((
object
*
,
object
*
));
static
object
*
mul
PROTO
((
object
*
,
object
*
));
static
object
*
divide
PROTO
((
object
*
,
object
*
));
static
object
*
rem
PROTO
((
object
*
,
object
*
));
static
object
*
neg
PROTO
((
object
*
));
static
object
*
pos
PROTO
((
object
*
));
static
object
*
not
PROTO
((
object
*
));
static
object
*
invert
PROTO
((
object
*
));
static
object
*
lshift
PROTO
((
object
*
,
object
*
));
static
object
*
rshift
PROTO
((
object
*
,
object
*
));
static
object
*
and
PROTO
((
object
*
,
object
*
));
static
object
*
xor
PROTO
((
object
*
,
object
*
));
static
object
*
or
PROTO
((
object
*
,
object
*
));
static
object
*
call_builtin
PROTO
((
object
*
,
object
*
));
static
object
*
call_function
PROTO
((
object
*
,
object
*
));
static
object
*
apply_subscript
PROTO
((
object
*
,
object
*
));
static
object
*
loop_subscript
PROTO
((
object
*
,
object
*
));
static
int
slice_index
PROTO
((
object
*
,
int
,
int
*
));
static
object
*
apply_slice
PROTO
((
object
*
,
object
*
,
object
*
));
static
int
assign_subscript
PROTO
((
object
*
,
object
*
,
object
*
));
static
int
assign_slice
PROTO
((
object
*
,
object
*
,
object
*
,
object
*
));
static
int
cmp_exception
PROTO
((
object
*
,
object
*
));
static
int
cmp_member
PROTO
((
object
*
,
object
*
));
static
object
*
cmp_outcome
PROTO
((
enum
cmp_op
,
object
*
,
object
*
));
static
int
import_from
PROTO
((
object
*
,
object
*
,
object
*
));
static
object
*
build_class
PROTO
((
object
*
,
object
*
));
/* Pointer to current frame, used to link new frames to */
static
frameobject
*
current_frame
;
...
...
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