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
6d8841c0
Kaydet (Commit)
6d8841c0
authored
Agu 14, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added a bunch of XXX comments about things I'd like to see changed...
üst
0d2390c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
posixmodule.c
Modules/posixmodule.c
+8
-1
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
6d8841c0
...
...
@@ -67,6 +67,7 @@ corresponding Unix manual entries for more information on calls.";
#endif
/* HAVE_FCNTL_H */
/* Various compilers have only certain posix functions */
/* XXX Gosh I wish these were all moved into config.h */
#ifdef __WATCOMC__
/* Watcom compiler */
#define HAVE_GETCWD 1
#define HAVE_OPENDIR 1
...
...
@@ -479,6 +480,8 @@ posix_listdir(self, args)
PyObject
*
self
;
PyObject
*
args
;
{
/* XXX Should redo this putting the three versions of opendir
in separate files instead of having them all here... */
#if defined(MS_WIN32) && !defined(HAVE_OPENDIR)
char
*
name
;
...
...
@@ -832,6 +835,7 @@ posix_utime(self, args)
long
atime
,
mtime
;
int
res
;
/* XXX should define struct utimbuf instead, above */
#ifdef HAVE_UTIME_H
struct
utimbuf
buf
;
#define ATIME buf.actime
...
...
@@ -2222,7 +2226,8 @@ all_ins(d)
}
/* XXX The following should be more unified -- only difference left is
function name and module name. */
#if defined(_MSC_VER) || defined(__WATCOMC__)
void
...
...
@@ -2254,6 +2259,7 @@ initnt()
return
;
finally
:
/* XXX Shouldn't */
Py_FatalError
(
"can't initialize NT posixmodule"
);
}
#else
/* not a PC port */
...
...
@@ -2286,6 +2292,7 @@ initposix()
return
;
finally
:
/* XXX Shouldn't */
Py_FatalError
(
"can't initialize posix module"
);
}
#endif
/* !_MSC_VER */
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