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
03d5c346
Kaydet (Commit)
03d5c346
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
026ac7cf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
14 deletions
+15
-14
__init__.py
Lib/logging/__init__.py
+3
-5
NEWS
Misc/NEWS
+12
-9
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
03d5c346
...
...
@@ -287,12 +287,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 @
03d5c346
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #7120: logging: Removed import of multiprocessing which is causing
crash in GAE.
- Issue #7140: The __dict__ of a module should not be cleared unless the module
is the only object holding a reference to it.
...
...
@@ -412,18 +415,18 @@ Library
- Add support to the `ihooks` module for relative imports.
- 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.
- Issue #7048: Force Decimal.logb to round its result when that result
is too large to fit in the current precision.
- Issue #6516: Added owner/group support when creating tar archives in
- Issue #6516: Added owner/group support when creating tar archives in
Distutils.
- Issue #7031: Add TestCase.assert(Not)IsInstance() methods.
...
...
@@ -1292,11 +1295,11 @@ Tools/Demos
Build
-----
- Add 2 new options to ``--with-universal-archs`` on MacOSX:
- Add 2 new options to ``--with-universal-archs`` on MacOSX:
``intel`` builds a distribution with ``i386`` and ``x86_64`` architectures,
while ``3-way`` builds a distribution with the ``ppc``, ``i386``
and ``x86_64`` architectures.
while ``3-way`` builds a distribution with the ``ppc``, ``i386``
and ``x86_64`` architectures.
- Issue #6802: Fix build issues on MacOSX 10.6
- Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.
...
...
@@ -1356,12 +1359,12 @@ Documentation
for Windows.
- Issue #6801 : symmetric_difference_update also accepts |.
Thanks to Carl Chenet.
Thanks to Carl Chenet.
C-API
-----
- Issue #6624: PyArg_ParseTuple with "s" format when parsing argument with
- Issue #6624: PyArg_ParseTuple with "s" format when parsing argument with
NULL: Bogus TypeError detail string.
- Issue #5954: Add a PyFrame_GetLineNumber() function to replace most uses of
...
...
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