Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
c70081cfc15f972543a8cd30f5c6d5b5850160b4
/
Lib
/
test
/
test_asyncio
11c1351
Merge 3.5 (issue #28990)
by Yury Selivanov
· 8 years ago
b1461aa
Issue #28990: Fix SSL hanging if connection is closed before handshake completed.
by Yury Selivanov
· 8 years ago
c2c8fe1
Issue #28843: Fix asyncio C Task to handle exceptions __traceback__.
by Yury Selivanov
· 8 years ago
5cb0c09
Merge 3.5 (issue #28652)
by Yury Selivanov
· 8 years ago
dab0584
Issue #28652: Partially rollback previous changes
by Yury Selivanov
· 8 years ago
21bb0e6
Merge 3.5 (issue #28704)
by Yury Selivanov
· 8 years ago
d7c1518
Issue #28704: Fix create_unix_server to support Path-like objects
by Yury Selivanov
· 8 years ago
27182bb
Merge 3.5 (issue #28703)
by Yury Selivanov
· 8 years ago
0ed20cd
Issue #28703: Fix asyncio.iscoroutinefunction to handle Mock objects.
by Yury Selivanov
· 8 years ago
996fc1f
correctly emulate error semantics of gen.throw in FutureIter_throw
by Benjamin Peterson
· 8 years ago
954c7dd
Merge 3.5 (issue #28652)
by Yury Selivanov
· 8 years ago
a1a8b7d
Issue #28652: Make loop methods reject socket kinds they do not support.
by Yury Selivanov
· 8 years ago
a054f40
Merge 3.5 (asyncio)
by Yury Selivanov
· 8 years ago
6cc495e
asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__
by Yury Selivanov
· 8 years ago
1994dd3
Merge 3.5 (issue #28613)
by Yury Selivanov
· 8 years ago
6ea2b8f
Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop()
by Yury Selivanov
· 8 years ago
6130c02
Merge 3.5 (issue #28634)
by Yury Selivanov
· 8 years ago
49d6b8c
Issue #28634: Fix asyncio.isfuture() to support mocks
by Yury Selivanov
· 8 years ago
69312fa
Merge 3.5 (issue #28613)
by Yury Selivanov
· 8 years ago
600a349
Issue #28613: Fix get_event_loop() to return the current loop
by Yury Selivanov
· 8 years ago
a6fbcd1
Merge 3.5 (issue #28600)
by Yury Selivanov
· 8 years ago
491a912
Issue #28600: Optimize loop.call_soon().
by Yury Selivanov
· 8 years ago
a0c1ba6
Issue #28544: Implement asyncio.Task in C.
by Yury Selivanov
· 8 years ago
01c521b
asyncio: Increase asyncio.Future test coverage; test both implementations.
by Yury Selivanov
· 8 years ago
e145efc
Merge 3.5 (issue #26923)
by Yury Selivanov
· 8 years ago
3d67615
Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done.
by Yury Selivanov
· 8 years ago
a4b884f
Issue #28492: Fix how StopIteration is raised in _asyncio.Future
by Yury Selivanov
· 8 years ago
4145c83
Issue #27972: Prohibit Tasks to await on themselves.
by Yury Selivanov
· 8 years ago
908d55d
Issue #28399: Remove UNIX socket from FS before binding.
by Yury Selivanov
· 8 years ago
36e7e97
asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connection
by Yury Selivanov
· 8 years ago
8dc3e43
Issue #28372: Fix asyncio to support formatting of non-python coroutines
by Yury Selivanov
· 8 years ago
0de3de6
Issue #28371: Deprecate passing asyncio.Handles to run_in_executor.
by Yury Selivanov
· 8 years ago
5b8d4f9
Issue #28369: Raise an error when transport's FD is used with add_reader
by Yury Selivanov
· 8 years ago
9eb6c67
Issue #28368: Refuse monitoring processes if the child watcher has no loop attached.
by Yury Selivanov
· 8 years ago
34b9d14
Issue #28283: Remove flaky test test_sock_connect_sock_write_race again
by Berker Peksag
· 8 years ago
e3c65a7
Misc asyncio improvements from upstream
by Guido van Rossum
· 8 years ago
63461bc
Issue #28283: Remove flaky test test_sock_connect_sock_write_race
by Berker Peksag
· 8 years ago
0256f42
test_asynico: fix test_sock_connect_sock_write_race()
by Victor Stinner
· 8 years ago
bdcc8f9
Issue #28176: Increase timeout for test_sock_connect_sock_write_race
by Berker Peksag
· 8 years ago
d6c6771
Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect.
by Yury Selivanov
· 8 years ago
4c5bf3b
Issue #26909: Fix slow pipes IO in asyncio.
by Yury Selivanov
· 8 years ago
45dccda
Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__.
by Yury Selivanov
· 8 years ago
5587d7c
Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio)
by Yury Selivanov
· 8 years ago
a1b0e7d
Issue #27906: Fix socket accept exhaustion during high TCP traffic.
by Yury Selivanov
· 8 years ago
a05a6ef
asyncio: Add set_protocol / get_protocol methods to Transports
by Yury Selivanov
· 8 years ago
e617521
Use raw string for regexp
by Guido van Rossum
· 8 years ago
7b3b3dc
Merge asyncio upstream.
by Guido van Rossum
· 8 years ago
0be894b
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Martin Panter
· 8 years ago
8b7918a
Don't select for read on character devices in _UnixWritePipeTransport.
by Guido van Rossum
· 8 years ago
09c22ad
Issue #27907: variable rename. (Ville Skyttä)
by Guido van Rossum
· 8 years ago
252e9ed
Issue #27392: Add loop.connect_accepted_socket().
by Yury Selivanov
· 8 years ago
63bf487
asyncio: Use socket specs for getaddrinfo() in sock_connect()
by Yury Selivanov
· 8 years ago
77bc04a
asyncio: Fix NameError in sslproto _fatal_error()
by Yury Selivanov
· 8 years ago
5fc7c4d
Issue #27136: Change test to use ::1 for better OS X Tiger compatibility
by Martin Panter
· 8 years ago
c92bf83
Issue #22970: asyncio: Fix inconsistency cancelling Condition.wait.
by Yury Selivanov
· 8 years ago
ca2e0a4
Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost.
by Yury Selivanov
· 8 years ago
c1cf296
asyncio: Remove asyncio.timeout() context manager.
by Yury Selivanov
· 8 years ago
f1c6fa9
Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo
by Yury Selivanov
· 8 years ago
a714616
asyncio: Fix getaddrinfo to accept service names (for port)
by Yury Selivanov
· 8 years ago
a8f895f
asyncio: Support host=b'' for getaddrinfo
by Yury Selivanov
· 8 years ago
46f5072
Issue #27076: Doc, comment and tests spelling fixes
by Martin Panter
· 8 years ago
eaaaee8
asyncio: Fix getaddrinfo to accept None/str/bytes for 'port' arg
by Yury Selivanov
· 8 years ago
7661db6
Issue #27041: asyncio: Add loop.create_future method
by Yury Selivanov
· 9 years ago
7ed7ce6
Issue #27040: Add loop.get_exception_handler method
by Yury Selivanov
· 9 years ago
f11352c
asyncio/tests: Ensure a gc_collect for __del__ testing
by Yury Selivanov
· 9 years ago
5dc0933
asyncio: Fix unix pipe transport 'repr' methods
by Yury Selivanov
· 9 years ago
04eb87e
asyncio: ease the cert failed regex
by Yury Selivanov
· 9 years ago
7657f6b
Issue #26848: Fix asyncio/subprocess.communicate() to handle empty input.
by Yury Selivanov
· 9 years ago
c1b5786
Fix test_asyncio.test_timeout_disable()
by Victor Stinner
· 9 years ago
6a7b3a7
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
by Serhiy Storchaka
· 9 years ago
2ba8ece
asyncio: allow None as wait timeout
by Victor Stinner
· 9 years ago
e076ffb
asyncio: Remove duplicate bind addresses in create_server.
by Yury Selivanov
· 9 years ago
1bd0307
asyncio: Prevent StopIteration from being thrown into a Future
by Yury Selivanov
· 9 years ago
dce63234
asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647)
by Yury Selivanov
· 9 years ago
0c6a344
asyncio, selectors: Update to the upstream version
by Yury Selivanov
· 9 years ago
94a619d
Issue #26325: Added test.support.check_no_resource_warning() to check that
by Serhiy Storchaka
· 9 years ago
0df5313
test_asyncio: fix test_timeout_time()
by Victor Stinner
· 9 years ago
a3a5833
Make the error message regex more lenient so that it matches both
by Gregory P. Smith
· 9 years ago
c7b05a4
Make the error message regex more lenient so that it matches both
by Gregory P. Smith
· 9 years ago
b4b8a0e
Merge 3.4 (Issue #26050)
by Yury Selivanov
· 9 years ago
d9d0e86
Issue #26050: Add asyncio.StreamReader.readuntil() method.
by Yury Selivanov
· 9 years ago
b86abb7
merge 3.4
by Andrew Svetlov
· 9 years ago
c07b16b
Sync with asyncio repo
by Andrew Svetlov
· 9 years ago
c4e27e2
Merge 3.4
by Yury Selivanov
· 9 years ago
ea4ce1c
asyncio/tests: Fix a ResourceWarning due to unclosed loop
by Yury Selivanov
· 9 years ago
152c408
Merge 3.4
by Yury Selivanov
· 9 years ago
3cd863c
asyncio/tests: Fix ResourceWarnings related to unclosed transports
by Yury Selivanov
· 9 years ago
bcf8afd
Merge 3.4
by Yury Selivanov
· 9 years ago
5f68ca6
asyncio/tests: Fix some ResourceWarnings
by Yury Selivanov
· 9 years ago
e277a3d
Merge 3.4
by Yury Selivanov
· 9 years ago
aa78adc
asyncio/tests: Fix deprecation warning
by Yury Selivanov
· 9 years ago
a3f82ba
Merge 3.4
by Yury Selivanov
· 9 years ago
ec45226
Normalize whitespace
by Yury Selivanov
· 9 years ago
631546c
Merge 3.4
by Yury Selivanov
· 9 years ago
d5c2a62
asyncio: Skip getaddrinfo if host is already resolved.
by Yury Selivanov
· 9 years ago
1a316e8
Sync asyncio with upstream git repo (conditional import in test_pep492.py).
by Guido van Rossum
· 9 years ago
d3ded40
Merge 3.4
by Yury Selivanov
· 9 years ago
0ac3a0c
asyncio: Make Tasks check if Futures are attached to the same event loop
by Yury Selivanov
· 9 years ago
7888e67
Merge 3.4
by Yury Selivanov
· 9 years ago
dddc781
asyncio: Sync with github
by Yury Selivanov
· 9 years ago
Next »