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
db67739d
Kaydet (Commit)
db67739d
authored
Tem 01, 2000
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Jack Jansen, Mac patch:
Include limits.h if we have it.
üst
f12d7a02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
arraymodule.c
Modules/arraymodule.c
+3
-0
getargs.c
Python/getargs.c
+3
-0
No files found.
Modules/arraymodule.c
Dosyayı görüntüle @
db67739d
...
@@ -22,6 +22,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
...
@@ -22,6 +22,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include <sys/types.h>
/* For size_t */
#include <sys/types.h>
/* For size_t */
#endif
/* DONT_HAVE_SYS_TYPES_H */
#endif
/* DONT_HAVE_SYS_TYPES_H */
#endif
/* !STDC_HEADERS */
#endif
/* !STDC_HEADERS */
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
/* HAVE_LIMITS_H */
struct
arrayobject
;
/* Forward */
struct
arrayobject
;
/* Forward */
...
...
Python/getargs.c
Dosyayı görüntüle @
db67739d
...
@@ -18,6 +18,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
...
@@ -18,6 +18,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include "Python.h"
#include "Python.h"
#include <ctype.h>
#include <ctype.h>
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
int
PyArg_Parse
Py_PROTO
((
PyObject
*
,
char
*
,
...));
int
PyArg_Parse
Py_PROTO
((
PyObject
*
,
char
*
,
...));
...
...
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