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
ff7e83d6
Kaydet (Commit)
ff7e83d6
authored
Agu 27, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch by Mark Hammond to avoid certain header files on Windows/CE.
üst
7f1de832
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
getbuildinfo.c
Modules/getbuildinfo.c
+2
-0
selectmodule.c
Modules/selectmodule.c
+2
-0
fileobject.c
Objects/fileobject.c
+10
-1
No files found.
Modules/getbuildinfo.c
Dosyayı görüntüle @
ff7e83d6
...
@@ -4,7 +4,9 @@
...
@@ -4,7 +4,9 @@
#include "macbuildno.h"
#include "macbuildno.h"
#endif
#endif
#ifndef DONT_HAVE_STDIO_H
#include <stdio.h>
#include <stdio.h>
#endif
#ifndef DATE
#ifndef DATE
#ifdef __DATE__
#ifdef __DATE__
...
...
Modules/selectmodule.c
Dosyayı görüntüle @
ff7e83d6
...
@@ -48,7 +48,9 @@ PERFORMANCE OF THIS SOFTWARE.
...
@@ -48,7 +48,9 @@ PERFORMANCE OF THIS SOFTWARE.
extern
void
bzero
();
extern
void
bzero
();
#endif
#endif
#ifndef DONT_HAVE_SYS_TYPES_H
#include <sys/types.h>
#include <sys/types.h>
#endif
#if defined(PYOS_OS2)
#if defined(PYOS_OS2)
#include <sys/time.h>
#include <sys/time.h>
...
...
Objects/fileobject.c
Dosyayı görüntüle @
ff7e83d6
...
@@ -34,7 +34,9 @@ PERFORMANCE OF THIS SOFTWARE.
...
@@ -34,7 +34,9 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
#include "Python.h"
#include "structmember.h"
#include "structmember.h"
#ifndef DONT_HAVE_SYS_TYPES_H
#include <sys/types.h>
#include <sys/types.h>
#endif
/* DONT_HAVE_SYS_TYPES_H */
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#include <unistd.h>
...
@@ -62,7 +64,9 @@ PERFORMANCE OF THIS SOFTWARE.
...
@@ -62,7 +64,9 @@ PERFORMANCE OF THIS SOFTWARE.
#define BUF(v) PyString_AS_STRING((PyStringObject *)v)
#define BUF(v) PyString_AS_STRING((PyStringObject *)v)
#ifndef DONT_HAVE_ERRNO_H
#include <errno.h>
#include <errno.h>
#endif
typedef
struct
{
typedef
struct
{
PyObject_HEAD
PyObject_HEAD
...
@@ -441,11 +445,16 @@ file_isatty(f, args)
...
@@ -441,11 +445,16 @@ file_isatty(f, args)
#ifndef DONT_HAVE_FSTAT
#ifndef DONT_HAVE_FSTAT
#define HAVE_FSTAT
#define HAVE_FSTAT
#ifndef DONT_HAVE_SYS_TYPES_H
#include <sys/types.h>
#include <sys/types.h>
#
include <sys/stat.h>
#
endif
#ifndef DONT_HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#endif
#endif
/* DONT_HAVE_FSTAT */
#if BUFSIZ < 8192
#if BUFSIZ < 8192
#define SMALLCHUNK 8192
#define SMALLCHUNK 8192
#else
#else
...
...
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