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
b0d5b5d3
Kaydet (Commit)
b0d5b5d3
authored
Kas 07, 2011
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adjust None handling to be a bit more clean. Thanks to Benjamin
for pointing it out.
üst
e2618f34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
posixmodule.c
Modules/posixmodule.c
+4
-4
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
b0d5b5d3
...
...
@@ -3543,7 +3543,7 @@ static PyObject *
posix_utime
(
PyObject
*
self
,
PyObject
*
args
)
{
#ifdef MS_WINDOWS
PyObject
*
arg
=
NULL
;
PyObject
*
arg
=
Py_None
;
PyObject
*
obwpath
;
wchar_t
*
wpath
=
NULL
;
PyObject
*
oapath
;
...
...
@@ -3589,7 +3589,7 @@ posix_utime(PyObject *self, PyObject *args)
Py_DECREF
(
oapath
);
}
if
(
!
arg
||
(
arg
==
Py_None
)
)
{
if
(
arg
==
Py_None
)
{
SYSTEMTIME
now
;
GetSystemTime
(
&
now
);
if
(
!
SystemTimeToFileTime
(
&
now
,
&
mtime
)
||
...
...
@@ -3633,13 +3633,13 @@ done:
time_t
atime
,
mtime
;
long
ausec
,
musec
;
int
res
;
PyObject
*
arg
=
NULL
;
PyObject
*
arg
=
Py_None
;
if
(
!
PyArg_ParseTuple
(
args
,
"O&|O:utime"
,
PyUnicode_FSConverter
,
&
opath
,
&
arg
))
return
NULL
;
path
=
PyBytes_AsString
(
opath
);
if
(
!
arg
||
(
arg
==
Py_None
)
)
{
if
(
arg
==
Py_None
)
{
/* optional time values not given */
Py_BEGIN_ALLOW_THREADS
res
=
utime
(
path
,
NULL
);
...
...
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