Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d23962ae
Commit
d23962ae
authored
Dec 13, 2013
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asyncio: remove references to the Tulip project, rename Tulip to asyncio.
Patch written by Vajrasky Kok.
parent
c1a18696
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
Doc/library/asyncio-sync.rst
Doc/library/asyncio-sync.rst
+1
-1
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+5
-0
Lib/asyncio/queues.py
Lib/asyncio/queues.py
+1
-1
Lib/asyncio/test_utils.py
Lib/asyncio/test_utils.py
+1
-1
No files found.
Doc/library/asyncio-sync.rst
View file @
d23962ae
...
...
@@ -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
View file @
d23962ae
...
...
@@ -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
View file @
d23962ae
...
...
@@ -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
View file @
d23962ae
...
...
@@ -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