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
1325ee09
Kaydet (Commit)
1325ee09
authored
Kas 20, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge from 3.6
üst
6e3f34b6
c3630612
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
NEWS
Misc/NEWS
+2
-0
posixmodule.c
Modules/posixmodule.c
+7
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
1325ee09
...
...
@@ -622,6 +622,8 @@ Core and Builtins
Library
-------
- Issue #28732: Fix crash in os.spawnv() with no elements in args
- Issue #28485: Always raise ValueError for negative
compileall.compile_dir(workers=...) parameter, even when multithreading is
unavailable.
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
1325ee09
...
...
@@ -3347,8 +3347,7 @@ os_link_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
#ifdef MS_WINDOWS
Py_BEGIN_ALLOW_THREADS
if
(
src
->
wide
)
result
=
CreateHardLinkW
(
dst
->
wide
,
src
->
wide
,
NULL
);
result
=
CreateHardLinkW
(
dst
->
wide
,
src
->
wide
,
NULL
);
Py_END_ALLOW_THREADS
if
(
!
result
)
...
...
@@ -4111,7 +4110,9 @@ os_system_impl(PyObject *module, Py_UNICODE *command)
{
long
result
;
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
result
=
_wsystem
(
command
);
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
return
result
;
}
...
...
@@ -6889,7 +6890,9 @@ os_waitpid_impl(PyObject *module, intptr_t pid, int options)
do
{
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
res
=
_cwait
(
&
status
,
pid
,
options
);
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
}
while
(
res
<
0
&&
errno
==
EINTR
&&
!
(
async_err
=
PyErr_CheckSignals
()));
if
(
res
<
0
)
...
...
@@ -8256,6 +8259,7 @@ os_pipe_impl(PyObject *module)
attr
.
bInheritHandle
=
FALSE
;
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
ok
=
CreatePipe
(
&
read
,
&
write
,
&
attr
,
0
);
if
(
ok
)
{
fds
[
0
]
=
_open_osfhandle
((
intptr_t
)
read
,
_O_RDONLY
);
...
...
@@ -8266,6 +8270,7 @@ os_pipe_impl(PyObject *module)
ok
=
0
;
}
}
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
if
(
!
ok
)
...
...
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