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
96d4aa3f
Kaydet (Commit)
96d4aa3f
authored
Eki 16, 2009
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7120: logging: Removed import of multiprocessing which is causing crash in GAE.
üst
42e30556
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
__init__.py
Lib/logging/__init__.py
+3
-5
NEWS
Misc/NEWS
+6
-3
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
96d4aa3f
...
...
@@ -284,12 +284,10 @@ class LogRecord:
self
.
threadName
=
None
if
not
logMultiprocessing
:
self
.
processName
=
None
elif
'multiprocessing'
not
in
sys
.
modules
:
self
.
processName
=
'MainProcess'
else
:
try
:
from
multiprocessing
import
current_process
self
.
processName
=
current_process
()
.
name
except
ImportError
:
self
.
processName
=
None
self
.
processName
=
sys
.
modules
[
'multiprocessing'
]
.
current_process
()
.
name
if
logProcesses
and
hasattr
(
os
,
'getpid'
):
self
.
process
=
os
.
getpid
()
else
:
...
...
Misc/NEWS
Dosyayı görüntüle @
96d4aa3f
...
...
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
- Issue #7120: logging: Removed import of multiprocessing which is causing
crash in GAE.
- Issue #1754094: Improve the stack depth calculation in the compiler.
There should be no other effect than a small decrease in memory use.
Patch by Christopher Tur Lesniewski-Laas.
...
...
@@ -94,11 +97,11 @@ C-API
Library
-------
- Issue #6894: Fixed the issue urllib2 doesn't respect "no_proxy" environment
- Issue #6894: Fixed the issue urllib2 doesn't respect "no_proxy" environment
- Issue #7086: Added TCP support to SysLogHandler, and tidied up some
anachronisms in the code which were a relic of 1.5.2 compatibility.
- Issue #7082: When falling back to the MIME 'name' parameter, the
correct place to look for it is the Content-Type header.
...
...
@@ -1116,7 +1119,7 @@ Core and Builtins
Library
-------
- Issue #6516: Added owner/group support when creating tar archives in
- Issue #6516: Added owner/group support when creating tar archives in
Distutils.
- Issue #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils.
...
...
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