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
2e1d433e
Kaydet (Commit)
2e1d433e
authored
Ara 24, 1993
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added getmaxint() so sys can initialize sys.maxint.
Added Makefile.in.
üst
92fa23fd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
9 deletions
+17
-9
Makefile.in
Objects/Makefile.in
+11
-9
intobject.c
Objects/intobject.c
+6
-0
No files found.
Objects/Makefile.in
Dosyayı görüntüle @
2e1d433e
...
...
@@ -9,18 +9,20 @@ VPATH= @srcdir@
CC
=
@CC@
RANLIB
=
@RANLIB@
DEFS
=
@DEFS@
# === Other things that are customizable but not by configure ===
TOP
=
..
INCLDIR
=
$(TOP)
/Py
OPT
=
-g
CFLAGS
=
$(OPT)
-I
$(INCLDIR)
$(DEFS)
AR
=
ar
MKDEP
=
mkdep
SHELL
=
/bin/sh
INCLDIR
=
$(srcdir)
/../Py
OPT
=
-g
CFLAGS
=
$(OPT)
-I
$(INCLDIR)
# === Fixed definitions ===
...
...
@@ -47,16 +49,16 @@ all: $(LIB)
$(LIB)
:
$(OBJS)
$(AR)
cr
$(LIB)
$(OBJS)
$(RANLIB)
$(LIB)
clean
:
-
rm
-f
$(OBJS)
-
rm
-f
core
*
~
[
@,#]
*
*
.old
*
.orig
*
.rej
-
rm
-f
*
.o core
*
~
[
@,#]
*
*
.old
*
.orig
*
.rej
clobber
:
clean
-
rm
-f
$(LIB)
tags TAGS
-
rm
-f
*
.a
tags TAGS
Makefile
:
Makefile.in
..
/config.status
(
cd
..
;
$(SHELL)
config.status
)
Makefile
:
Makefile.in
$(TOP)
/config.status
CONFIG_FILES
=
Makefile
$(SHELL)
$(TOP)
/config.status
depend
:
$(SRCS)
$(MKDEP)
$(CFLAGS)
$(SRCS)
$(PGENSRCS)
...
...
Objects/intobject.c
Dosyayı görüntüle @
2e1d433e
...
...
@@ -47,6 +47,12 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define LONG_BIT (CHAR_BIT * sizeof(long))
#endif
long
getmaxint
()
{
return
LONG_MAX
;
/* To initialize sys.maxint */
}
/* Standard Booleans */
intobject
FalseObject
=
{
...
...
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