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
6fd47e2c
Kaydet (Commit)
6fd47e2c
authored
Ock 23, 2009
tarafından
Jesse Noller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
merge 68874 to py3kwq!
üst
21cbf5f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
NEWS
Misc/NEWS
+4
-0
setup.py
setup.py
+6
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
6fd47e2c
...
@@ -139,6 +139,10 @@ Core and Builtins
...
@@ -139,6 +139,10 @@ Core and Builtins
Library
Library
-------
-------
- Issue #3807: _multiprocessing build fails when configure is passed
--without-threads argument. When this occurs, _multiprocessing will
be disabled, and not compiled.
- Issue #5008: When a file is opened in append mode with the new IO library,
- Issue #5008: When a file is opened in append mode with the new IO library,
do an explicit seek to the end of file (so that e.g. tell() returns the
do an explicit seek to the end of file (so that e.g. tell() returns the
file size rather than 0). This is consistent with the behaviour of the
file size rather than 0). This is consistent with the behaviour of the
...
...
setup.py
Dosyayı görüntüle @
6fd47e2c
...
@@ -1063,9 +1063,12 @@ class PyBuildExt(build_ext):
...
@@ -1063,9 +1063,12 @@ class PyBuildExt(build_ext):
if
macros
.
get
(
'HAVE_SEM_OPEN'
,
False
):
if
macros
.
get
(
'HAVE_SEM_OPEN'
,
False
):
multiprocessing_srcs
.
append
(
'_multiprocessing/semaphore.c'
)
multiprocessing_srcs
.
append
(
'_multiprocessing/semaphore.c'
)
exts
.
append
(
Extension
(
'_multiprocessing'
,
multiprocessing_srcs
,
if
sysconfig
.
get_config_var
(
'WITH_THREAD'
):
define_macros
=
list
(
macros
.
items
()),
exts
.
append
(
Extension
(
'_multiprocessing'
,
multiprocessing_srcs
,
include_dirs
=
[
"Modules/_multiprocessing"
]))
define_macros
=
list
(
macros
.
items
()),
include_dirs
=
[
"Modules/_multiprocessing"
]))
else
:
missing
.
append
(
'_multiprocessing'
)
# End multiprocessing
# End multiprocessing
# Platform-specific libraries
# Platform-specific libraries
...
...
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