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
812f6e1f
Kaydet (Commit)
812f6e1f
authored
Eki 20, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #28480: Merge multithreading fixes from 3.6
üst
25a19247
94332cba
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
test_asyncgen.py
Lib/test/test_asyncgen.py
+3
-1
test_logging.py
Lib/test/test_logging.py
+1
-1
NEWS
Misc/NEWS
+3
-0
socketmodule.c
Modules/socketmodule.c
+1
-0
No files found.
Lib/test/test_asyncgen.py
Dosyayı görüntüle @
812f6e1f
import
asyncio
import
inspect
import
inspect
import
sys
import
sys
import
types
import
types
...
@@ -6,6 +5,9 @@ import unittest
...
@@ -6,6 +5,9 @@ import unittest
from
unittest
import
mock
from
unittest
import
mock
from
test.support
import
import_module
asyncio
=
import_module
(
"asyncio"
)
class
AwaitException
(
Exception
):
class
AwaitException
(
Exception
):
pass
pass
...
...
Lib/test/test_logging.py
Dosyayı görüntüle @
812f6e1f
...
@@ -4304,7 +4304,7 @@ class MiscTestCase(unittest.TestCase):
...
@@ -4304,7 +4304,7 @@ class MiscTestCase(unittest.TestCase):
'logProcesses'
,
'currentframe'
,
'logProcesses'
,
'currentframe'
,
'PercentStyle'
,
'StrFormatStyle'
,
'StringTemplateStyle'
,
'PercentStyle'
,
'StrFormatStyle'
,
'StringTemplateStyle'
,
'Filterer'
,
'PlaceHolder'
,
'Manager'
,
'RootLogger'
,
'Filterer'
,
'PlaceHolder'
,
'Manager'
,
'RootLogger'
,
'root'
}
'root'
,
'threading'
}
support
.
check__all__
(
self
,
logging
,
blacklist
=
blacklist
)
support
.
check__all__
(
self
,
logging
,
blacklist
=
blacklist
)
...
...
Misc/NEWS
Dosyayı görüntüle @
812f6e1f
...
@@ -88,6 +88,9 @@ Core and Builtins
...
@@ -88,6 +88,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #28480: Fix error building socket module when multithreading is
disabled.
- Issue #28240: timeit: remove ``-c/--clock`` and ``-t/--time`` command line
- Issue #28240: timeit: remove ``-c/--clock`` and ``-t/--time`` command line
options which were deprecated since Python 3.3.
options which were deprecated since Python 3.3.
...
...
Modules/socketmodule.c
Dosyayı görüntüle @
812f6e1f
...
@@ -664,6 +664,7 @@ internal_setblocking(PySocketSockObject *s, int block)
...
@@ -664,6 +664,7 @@ internal_setblocking(PySocketSockObject *s, int block)
result
=
0
;
result
=
0
;
done:
done:
;
/* necessary for --without-threads flag */
Py_END_ALLOW_THREADS
Py_END_ALLOW_THREADS
if
(
result
)
{
if
(
result
)
{
...
...
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