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
2748bc73
Kaydet (Commit)
2748bc73
authored
Ara 13, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio: remove references to the Tulip project, rename Tulip to asyncio.
Patch written by Vajrasky Kok.
üst
441adb8c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
asyncio-sync.rst
Doc/library/asyncio-sync.rst
+1
-1
3.4.rst
Doc/whatsnew/3.4.rst
+5
-0
queues.py
Lib/asyncio/queues.py
+1
-1
test_utils.py
Lib/asyncio/test_utils.py
+1
-1
No files found.
Doc/library/asyncio-sync.rst
Dosyayı görüntüle @
2748bc73
...
...
@@ -237,7 +237,7 @@ Queues
when the queue reaches *maxsize*, until an item is removed by :meth:`get`.
Unlike the standard library :mod:`queue`, you can reliably know this Queue's
size with :meth:`qsize`, since your single-threaded
Tulip
application won't
size with :meth:`qsize`, since your single-threaded
asyncio
application won't
be interrupted between calling :meth:`qsize` and doing an operation on the
Queue.
...
...
Doc/whatsnew/3.4.rst
Dosyayı görüntüle @
2748bc73
...
...
@@ -1068,3 +1068,8 @@ that may require changes to your code.
working directory will also now have an absolute path, including when using
``-m`` with the interpreter (this does not influence when the path to a file
is specified on the command-line).
* (C API) :c:func:`PyThread_set_key_value` now always set the value. In Python
3.3, the function did nothing if the key already exists (if the current
value is a non-NULL pointer).
Lib/asyncio/queues.py
Dosyayı görüntüle @
2748bc73
...
...
@@ -26,7 +26,7 @@ class Queue:
queue reaches maxsize, until an item is removed by get().
Unlike the standard library Queue, you can reliably know this Queue's size
with qsize(), since your single-threaded
Tulip
application won't be
with qsize(), since your single-threaded
asyncio
application won't be
interrupted between calling qsize() and doing an operation on the Queue.
"""
...
...
Lib/asyncio/test_utils.py
Dosyayı görüntüle @
2748bc73
...
...
@@ -88,7 +88,7 @@ def run_test_server(*, host='127.0.0.1', port=0, use_ssl=False):
def
finish_request
(
self
,
request
,
client_address
):
# The relative location of our test directory (which
# contains the ssl key and certificate files) differs
# between the stdlib and stand-alone
Tulip/
asyncio.
# between the stdlib and stand-alone asyncio.
# Prefer our own if we can find it.
here
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..'
,
'tests'
)
if
not
os
.
path
.
isdir
(
here
):
...
...
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