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
7ef53ef9
Kaydet (Commit)
7ef53ef9
authored
Kas 07, 2011
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Forgot to apply the futimesat change.
üst
ca0fbc02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
posixmodule.c
Modules/posixmodule.c
+3
-4
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
7ef53ef9
...
...
@@ -9686,8 +9686,7 @@ posix_fstatat(PyObject *self, PyObject *args)
#ifdef HAVE_FUTIMESAT
PyDoc_STRVAR(posix_futimesat__doc__,
"futimesat(dirfd, path, (atime, mtime))
\n
\
futimesat(dirfd, path, None)
\n\n
\
"futimesat(dirfd, path[, (atime, mtime)])\n\
Like utime() but if path is relative, it is taken as relative to dirfd.\n\
If path is relative and dirfd is the special value AT_FDCWD, then path\n\
is interpreted relative to the current working directory.");
...
...
@@ -9698,11 +9697,11 @@ posix_futimesat(PyObject *self, PyObject *args)
PyObject *opath;
char *path;
int res, dirfd;
PyObject
*
arg
;
PyObject* arg
= Py_None
;
time_t atime, mtime;
long ausec, musec;
if
(
!
PyArg_ParseTuple
(
args
,
"iO&O:futimesat"
,
if (!PyArg_ParseTuple(args, "iO&
|
O:futimesat",
&dirfd, PyUnicode_FSConverter, &opath, &arg))
return NULL;
path = PyBytes_AsString(opath);
...
...
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